* {
    box-sizing: border-box;
}
html,
body {
    height: 100%;
    width: 100%;
    margin: 0;
    font-family: "Sora", sans-serif;
    scroll-behavior: smooth;
}

/* Static effect */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 10px 10px;
    pointer-events: none;
    z-index: 1000;
    opacity: 0.1;
}

.oswald {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.sora {
    font-family: "Sora", sans-serif;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
}

.fade-in.visible {
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.producer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Language dropdown */
.language-dropdown {
    position: relative;
}

.language-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.language-dropdown-menu {
    position: absolute;
    right: 0;
    top: 100%;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 50;
}

.language-dropdown:hover .language-dropdown-menu {
    opacity: 1;
    visibility: visible;
    border-radius: 0.5rem;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: #030303;
    transition: background-color 0.2s;
}

.language-option:hover {
    background-color: #dfdfdf;
    border-radius: 0.5rem;
}

.flag-icon {
    width: 24px;
    height: 16px;
    margin-right: 0.75rem;
}

/* Modern Mobile Language Dropdown */
.mobile-language-dropdown {
    margin-top: 2rem;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.mobile-language-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.mobile-language-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-language-btn i {
    transition: transform 0.3s ease;
}

.mobile-language-btn.active i {
    transform: rotate(180deg);
}

.mobile-language-options {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0 0 0.5rem 0.5rem;
}

.mobile-language-options.active {
    max-height: 300px;
}

.mobile-language-option {
    display: flex;
    align-items: center;
    padding: 1rem;
    color: white;
    text-decoration: none;
    transition: all 0.2s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-language-option:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #38bdf8;
}

.hero-image {
    position: relative;
    height: 100vh;
}

/* Staticna (fiksna) hero pozadina - slika se ne mice dok content scrolla preko nje.
   Koristi position: fixed na pseudo-elementu (radi i na iOS-u, za razliku od background-attachment). */
.hero-image::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.78)),
        url("/images/bw-studio-compressed.jpg");
    background-size: cover;
    background-position: center;
}

/* Inspirational text section */
.insp-text {
    background-color: transparent;
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.insp-text p {
    font-size: 2.5rem;
    font-weight: bold;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.3;
}

/* Recording section - redesigned to blend better */
.recording-section {
    background-color: #111;
    color: white;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.recording-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("/images/studio.jpg");
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 0;
}

.recording-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.recording-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 50px;
    text-align: center;
    color: white;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.recording-content {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 25px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border-left: 3px solid #38bdf8;
}

.recording-list {
    margin-top: 20px;
    padding-left: 20px;
}

.recording-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.recording-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1;
    color: #38bdf8;
}

/* Mobile menu adjustments */
.mobile-nav {
    height: 96px;
}

.mobile-menu {
    top: 96px;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease;
}

.mobile-menu.open {
    max-height: 600px;
    opacity: 1;
}

.producer-image-m {
    width: 100%;
    height: 50vh;
    object-fit: cover;
    object-position: top;
}

.producer-image-j {
    width: 100%;
    height: 50vh;
    object-fit: cover;
    object-position: center;
}

/* Producer cards in row */
.producers-grid {
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    gap: 30px;
}

@media (max-width: 1024px) {
    .producers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .producers-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Dashboard dinamicke sekcije (releases / artists / news / team)
   Mobile-first: bazni stilovi za male ekrane, media query za vece.
   ========================================================================== */

.dash-section {
    background-color: transparent;
    color: #fff;
    padding: 64px 16px;
}

.dash-section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.dash-heading {
    font-family: "Oswald", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 28px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
}

.dash-heading .dash-link {
    font-family: "Sora", sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: none;
    color: #9ca3af;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.dash-heading .dash-link:hover {
    color: #fff;
}

@media (min-width: 768px) {
    .dash-section {
        padding: 90px 32px;
    }
    .dash-heading {
        font-size: 2.6rem;
    }
}

/* Horizontalni scrollable red ----------------------------------------------- */
.scroll-row {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 14px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
}

.scroll-row > * {
    flex: 0 0 auto;
    scroll-snap-align: start;
}

.scroll-row::-webkit-scrollbar {
    height: 6px;
}

.scroll-row::-webkit-scrollbar-track {
    background: #111;
}

.scroll-row::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 3px;
}

.scroll-row::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Release (album cover) kartica --------------------------------------------- */
.release-card {
    width: 160px;
    text-decoration: none;
    color: #fff;
}

.release-card .release-cover {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 10px;
    background: #111;
}

.release-card .release-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.release-card:hover .release-cover img {
    transform: scale(1.06);
}

.release-card .release-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.release-card:hover .release-overlay {
    opacity: 1;
}

.release-card .release-title {
    font-family: "Oswald", sans-serif;
    font-size: 1rem;
    margin-top: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Artist (portret) kartica -------------------------------------------------- */
.artist-card {
    position: relative;
    width: 200px;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    background: #111;
}

.artist-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.artist-card:hover img {
    transform: scale(1.07);
}

.artist-card .artist-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    font-size: 3rem;
}

.artist-card .artist-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.25) 45%,
        rgba(0, 0, 0, 0) 75%
    );
}

.artist-card .artist-nick {
    font-family: "Oswald", sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.1;
}

.artist-card .artist-name {
    font-size: 0.8rem;
    color: #cbd5e1;
    margin-top: 2px;
}

/* "Vidi vise" box na kraju reda --------------------------------------------- */
.more-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 140px;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    color: #cbd5e1;
    text-decoration: none;
    font-family: "Oswald", sans-serif;
    letter-spacing: 1px;
    transition: all 0.25s ease;
}

.more-box.more-box--tall {
    height: 280px;
}

.more-box.more-box--square {
    aspect-ratio: 1 / 1;
    width: 160px;
    height: auto;
}

.more-box:hover {
    border-color: #fff;
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
}

.more-box i {
    font-size: 1.4rem;
}

@media (min-width: 768px) {
    .release-card {
        width: 200px;
    }
    .more-box.more-box--square {
        width: 200px;
    }
    .artist-card {
        width: 240px;
        height: 340px;
    }
    .more-box.more-box--tall {
        height: 340px;
        width: 180px;
    }
}

/* News (zadnja vijest) ------------------------------------------------------- */
.news-feature {
    display: flex;
    flex-direction: column;
    background: #0d0d0d;
    border: 1px solid #1c1c1c;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.news-feature:hover {
    border-color: #3a3a3a;
    transform: translateY(-4px);
}

.news-feature .news-media {
    position: relative;
    width: 100%;
    height: 220px;
    background: #161616;
}

.news-feature .news-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-feature .news-media-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 3rem;
}

.news-feature .news-body {
    padding: 28px;
}

.news-feature .news-date {
    font-size: 0.8rem;
    color: #9ca3af;
    margin-bottom: 10px;
}

.news-feature .news-title {
    font-family: "Oswald", sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
}

.news-feature .news-excerpt {
    color: #cbd5e1;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .news-feature {
        flex-direction: row;
    }
    .news-feature .news-media {
        width: 45%;
        height: auto;
        min-height: 300px;
    }
    .news-feature .news-body {
        width: 55%;
        padding: 40px;
    }
    .news-feature .news-title {
        font-size: 2rem;
    }
}

/* Team (vertical scroll lista clanova) -------------------------------------- */
.team-scroll {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.team-member {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: #0d0d0d;
    border: 1px solid #1c1c1c;
    border-radius: 14px;
    padding: 20px;
    transition: border-color 0.25s ease;
}

.team-member:hover {
    border-color: #3a3a3a;
}

/* Cijela kartica klikabilna -> profil clana. Overlay link prekriva karticu;
   interaktivni gumbi (team-actions) dizu se iznad njega preko z-indexa. */
.team-member-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: 14px;
}

.team-member:hover .team-member-name {
    text-decoration: underline;
}

.team-member-photo {
    width: 100%;
    height: 240px;
    border-radius: 10px;
    object-fit: cover;
    object-position: top;
    background: #161616;
}

.team-member-photo-placeholder {
    width: 100%;
    height: 240px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 3rem;
    background: #161616;
}

.team-member-name {
    font-family: "Oswald", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.team-member-nick {
    color: #9ca3af;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.team-member-bio {
    color: #cbd5e1;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.team-actions {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.team-btn {
    font-family: "Oswald", sans-serif;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
    padding: 8px 16px;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid #fff;
}

.team-btn--solid {
    background: #fff;
    color: #000;
}

.team-btn--solid:hover {
    background: #cbd5e1;
}

.team-btn--ghost {
    background: transparent;
    color: #fff;
}

.team-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .team-member {
        flex-direction: row;
        align-items: flex-start;
    }
    .team-member-photo,
    .team-member-photo-placeholder {
        width: 200px;
        height: 200px;
        flex: 0 0 200px;
    }
}

/* Studios sekcija na home — velika slika + hover overlay s nazivom */
.studio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.studio-card {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    background: #111;
}

.studio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.studio-card:hover img {
    transform: scale(1.06);
}

.studio-card .studio-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    font-size: 4rem;
}

.studio-card .studio-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 28px;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.2) 45%,
        rgba(0, 0, 0, 0) 80%
    );
    opacity: 0.85;
    transition: opacity 0.3s ease, background 0.3s ease;
}

.studio-card:hover .studio-overlay {
    opacity: 1;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.45) 50%,
        rgba(0, 0, 0, 0.1) 90%
    );
}

.studio-card .studio-name {
    font-family: "Oswald", sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

@media (min-width: 768px) {
    .studio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
    .studio-card .studio-name {
        font-size: 2.2rem;
    }
}

@media (min-width: 1200px) {
    .studio-card .studio-name {
        font-size: 2.6rem;
    }
}

