:root {
    --verde-arcanum: #899e86;
    --rosu-arcanum: #e93636;
    --gri-arcanum: #272727;
}

@font-face {
    font-family: 'Academico';
    src: url('../fonts/academico/AcademicoRegular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Academico';
    src: url('../fonts/academico/AcademicoBold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Academico';
    src: url('../fonts/academico/AcademicoItalic.otf') format('opentype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Academico';
    src: url('../fonts/academico/AcademicoBoldItalic.otf') format('opentype');
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: 'Badrock';
    src: url('../fonts/badrock-font/badrock.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: IBM Plex Sans;
    color: white;
    background: #171717;
    overflow-x: hidden;
}

/* HEADER */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 4000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    position: relative;
}

.logo {
    width: 200px;
}

#menu-toggle {
    display: none;
}

.hamburger-menu {
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    transition: opacity 0.2s;
    margin-right: 10px;
    position: relative;
    z-index: 5001;
}

.hamburger-menu:hover {
    opacity: 60%;
}

.hamburger-menu img {
    width: 100%;
    height: auto;
}

.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.96);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease;
    z-index: 12000;
}

.nav > a {
    position: relative;
    z-index: 5001;
}

#menu-toggle:checked ~ .mobile-menu {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.close-menu {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.5rem;
    color: white;
    cursor: pointer;
    background: none;
    border: none;
}

.mobile-menu .logo {
    width: 260px;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.mobile-menu-links a{
    color: white;
    text-decoration: none;
    font-size: 1.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 400;
}

.mobile-menu-links a:hover {
    opacity: 0.6;
}

.social-media-mobile-menu {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 60px;
}

.social-media-mobile-menu img {
    width: 35px;
    height: 35px;
    opacity: 0.85;
    transition: opacity 0.2s;
}

.social-media-mobile-menu img:hover {
    opacity: 1;
}


/* HERO */

.cover-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    background: #0e1317;
}

.cover-hero-img {
    position: absolute;
    inset: 0;
    background: url('../imagini-site/arcanum-cover-extins.jpg') 47% 40% / 130% no-repeat;
    z-index: 1;
}

.cover-hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(14, 19, 23, 0) 40%,
        rgba(14, 19, 23, 1) 100%
    );
    z-index: 2;
}

.cover-hero-text {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 5% 6%;
}

.cover-hero-text-inner {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 3rem 8rem;
    position: relative;
}

.cover-hero-text-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    -webkit-mask: linear-gradient(to right, transparent, black 20%, black 80%, transparent),
                  linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
    -webkit-mask-composite: source-in;
    mask: linear-gradient(to right, transparent, black 20%, black 80%, transparent),
          linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
    mask-composite: intersect;
    z-index: -1;
}

.cover-hero-subtitle {
    font-family: IBM Plex Sans;
    font-size: clamp(1rem, 2vw, 1.2rem);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #ccc;
    margin-bottom: 0.5rem;
}

.cover-hero-titlu {
    font-family: Badrock, serif;
    font-size: clamp(4rem, 9vw, 10rem);
    font-weight: normal;
    color: white;
    line-height: 1;
    letter-spacing: 0.04em;
    opacity: 0.85;
}

.cover-hero-arrow {
    position: absolute;
    bottom: 8%;
    font-size: 3rem;
    color: white;
    opacity: 0.6;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
    animation: bounce 2s infinite;
    text-decoration: none;
}

.cover-hero-arrow:hover {
    opacity: 1;
    transform: translateY(4px);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

.hero-video, .live-performance {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Make the entire hero clickable and show native pointer */
.hero-video.hero-clickable {
    cursor: pointer;
}

/* Hide the launch button visually while keeping anchor available */
.lansare-buton-bilete { display: none !important; }

/* Aura + label shown around pointer (keeps native pointer visible) */
.hero-cursor {
    position: fixed;
    left: 0;
    top: 0;
    width: 1px;
    height: 1px;
    pointer-events: none;
    z-index: 1200;
    transform: translate3d(-9999px, -9999px, 0);
    transition: opacity 120ms ease; /* remove transform transition to avoid lag */
    will-change: transform;
    backface-visibility: hidden;
    opacity: 0;
}
.hero-cursor.visible { opacity: 1; }
.hero-cursor .aura {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(0,0,0,0.98), rgba(0,0,0,0.85) 30%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0) 100%);
    filter: blur(18px);
}
.hero-cursor .label {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 14px);
    transform: translateX(-50%);
    background: rgba(0,0,0,0.75);
    color: #fff;
    font-family: IBM Plex Sans;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 6px 10px;
    border-radius: 6px;
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: 0.6px;
}
.hero-cursor.over-link .aura { transform: translate(-50%, -50%) scale(0.88); }

@media (max-width: 768px) {
    .hero-cursor { display: none; }
}

section video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

section .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.2), rgba(0, 0, 0, 0.2));
    z-index: 2;
}

.hero-text, 
.live-performance-text {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;     
    text-align: center;
    padding-bottom: 80px;
}

.titlu-hero, 
.titlu-live-performance {
    font-weight: normal;
    font-size: clamp(5rem, 7rem, 8rem); 
    margin-bottom: 1.8rem;
    line-height: 0.8;
    font-family: Badrock;
    letter-spacing: 0.07em;
    color: rgb(233, 233, 233);
}

.hero-butoane-wrapper {
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.buton-hero,
.buton-live-performance {
    padding: 12px 24px;
    margin-top: 10px;
    text-decoration: none;
    border: 2px solid rgb(233, 233, 233);
    border-radius: 999px;
    background: transparent;
    color: rgb(233, 233, 233);
    font-size: 1.5rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s, transform 0.3s;
}

/* Make the launch button visible above the overlay and centered */
.lansare-buton-bilete {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.buton-hero:hover,
.buton-live-performance:hover {
    background: white;
    color: #131514;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
  .hero-video, .live-performance {
    height: 85vh;
  }

  .titlu-hero, .titlu-live-performance {
    font-size: clamp(2.6rem, 10vw, 4rem);
    letter-spacing: 0.04em;
    margin-bottom: 2rem;
  }

  .hero-butoane-wrapper {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .buton-hero, .buton-live-performance {
    font-size: 0.85rem;
    padding: 12px 28px;
    letter-spacing: 0.2em;
  }
}


/* ARCANUM BAZAR HERO */

.arcanum-hero {
    position: relative;
    width: 100%;
    height: 120vh;
    min-height: 750px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.arcanum-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 220px;
    background: linear-gradient(
        to bottom,
        #0d1210 0%,
        transparent 100%
    );
    z-index: 1;
    pointer-events: none;
}

.arcanum-inner {
    display: grid;
    grid-template-columns: max-content max-content max-content;
    align-items: center;
    gap: 3.5rem;
    margin-left: 4rem;
    position: relative;
    z-index: 2;
}

.arcanum-left {
    display: flex;
    align-items: center;
    justify-content: center;
}

.arcanum-titlu-vertical {
    font-family: 'Academico', sans-serif;
    font-size: clamp(2.8rem, 5.5vw, 6.5rem);
    color: var(--verde-arcanum);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.9;
}

.arcanum-center {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.arcanum-grafica {
    width: clamp(370px, 50vw, 650px);
    height: auto;
    display: block;
}

.arcanum-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.8rem;
}

.arcanum-social-link img {
    width: 48px;
    height: 48px;
    opacity: 0.75;
    transition: opacity 0.2s, transform 0.2s;
    filter: brightness(0) saturate(100%) invert(67%) sepia(12%) saturate(400%) hue-rotate(80deg) brightness(95%);
}

.arcanum-social-link:hover img {
    opacity: 1;
    transform: scale(1.15);
}

.arcanum-listen-btn {
    margin-top: 0.6rem;
    padding: 12px 24px;
    border: 2px solid var(--verde-arcanum);
    border-radius: 999px;
    color: var(--verde-arcanum);
    font-family: IBM Plex Sans;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
    white-space: nowrap;
}

.arcanum-listen-btn:hover {
    background: var(--verde-arcanum);
    color: #171717;
}

@media (max-width: 768px) {
    .arcanum-inner {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        gap: 0;
        padding: 3rem 0 2rem;
        margin-left: 0;
        justify-items: center;
    }

    .arcanum-hero {
        height: auto;
        min-height: unset;
    }

    .arcanum-titlu-vertical {
        writing-mode: horizontal-tb;
        transform: none;
        font-size: 1.8rem;
        text-align: center;
    }

    /* On mobile, social icons go BELOW the graphic in a horizontal row */
    .arcanum-right {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.2rem;
        padding: 1.5rem 2rem 2rem;
    }

    .arcanum-social-link img {
        width: 36px;
        height: 36px;
    }

    .arcanum-listen-btn {
        width: 100%;
        text-align: center;
        font-size: 0.85rem;
        padding: 12px 24px;
    }

    .arcanum-grafica {
        width: clamp(260px, 85vw, 420px);
    }
}


/* MERCH */

/* 1) Container + Section Head */
.merch {
  padding: 4rem 0;
  background: transparent;
}

.section-head {
    text-align: left;
    margin-left: 2.5rem;
    margin-bottom: 1.5rem;
}

.section-head h2 {
    font-family: IBM Plex Sans;
    font-size: clamp(1.8rem, 3vw, 3.5rem);
    text-transform: uppercase;
    font-weight: 400;
}

/* 2) Container scollabil */
.merch-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    overflow: visible;
    padding-left: 2rem;
    padding-right: 2rem;
}

.merch-wrapper::before,
.merch-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 60px;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.merch-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #171717, transparent);
}

.merch-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #171717, transparent);
}

.merch-container {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
}

.merch-container.dragging {
    cursor: grabbing !important;
    scroll-behavior: auto;
}

/* 3) Merch cards */
.card {
    position: relative;
    min-width: 320px;
    height: 400px;
    overflow: hidden;
    cursor: pointer;
    scroll-snap-align: start;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 20px rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.foto-merch {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.4s, transform 0.4s;
}

.overlay-merch {
    position: absolute;
    color: white;
    text-align: center;
    opacity: 0;
    transition: opacity 0.4s;
    display: flex;
    inset: 0;
    align-items: center;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
}
.card:hover .overlay-merch,
.card.touched .overlay-merch {
    opacity: 1;
}

.overlay-merch h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.overlay-merch p {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.overlay-merch .buton-adauga-in-cos {
    border-color: white;
    border-style: solid;
    padding: .5rem .7rem;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s
}
.overlay-merch .buton-adauga-in-cos:hover {
    background-color: white;
    color: #131514;
}

.card:hover .foto-merch,
.card.touched .foto-merch {
    filter: brightness(.7);
    transform: scale(1.05);
}

.scroll-btn {
    position: absolute;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: white;
    z-index: 10;
    cursor: pointer;
    padding: 0.4rem .7rem;
    font-size: 1.7rem;
    padding-bottom: .5rem;
    transition: all 0.3s;
}

.scroll-btn.left {
    left: 0.5%;
}

.scroll-btn.right {
    right: 0.5%;
}

.scroll-btn:hover {
    background: rgb(0, 0, 0);
    box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.5);
}

/* BUY/STREAM ALBUM */

.arcanum-bg-zone {
    position: relative;
    background:
        linear-gradient(
            to bottom,
            #0e1317 0%,
            rgba(14, 19, 23, 0) 8%
        ),
        linear-gradient(
            rgba(7, 11, 9, 0.8),
            rgba(12, 14, 13, 0.7)
        ),
        url('../imagini-site/wallpaper-telefon.png') center top / cover no-repeat;
    background-color: #0d1210;
}

.arcanum-bg-zone::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent, #171717);
    pointer-events: none;
}

.descantec {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5rem 1.5rem 7rem;
    background: transparent;
}

.descantec::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 260px;
    background: linear-gradient(to bottom, transparent 0%, #0d1210 100%);
    pointer-events: none;
    z-index: 2;
}

.latest-album-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2.5rem;
}

.latest-album-head .album-supertitle {
    font-family: IBM Plex Sans;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: #aaa;
    margin-bottom: 0.6rem;
}

.latest-album-head h2 {
    font-family: Badrock, serif;
    font-size: clamp(4rem, 7vw, 10rem);
    font-weight: normal;
    letter-spacing: 5px;
    opacity: 0.9;
}

.latest-album-head h2::before { content: '\2018'; }
.latest-album-head h2::after  { content: '\2019'; }

.album-out-now-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 0.5rem;
    font-family: IBM Plex Sans;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.album-out-now {
    color: #aaa;
    font-size: 1rem;
}

.album-separator {
    color: #aaa;
    font-size: 1rem;
}

.buton-cumpara-album {
    text-decoration: none;
    border: 1.5px solid white;
    border-radius: 999px;
    background: transparent;
    color: white;
    font-family: IBM Plex Sans;
    font-size: 1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 4px 14px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    display: inline-block;
}

.buton-cumpara-album:hover {
    background-color: white;
    color: #131514;
}

.descantec-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 680px;
    gap: 2rem;
}

.descantec-cover {
    width: 100%;
    max-width: 380px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    border: 2px solid rgba(255, 255, 255, 0.9);
}

.descantec-presa {
    display: none;
}

@media (max-width: 900px) {
    .descantec {
        padding: 3rem 1rem 3rem;
    }
}

@media (max-width: 600px) {
    .latest-album-head h2 {
        font-size: 2.4rem;
    }
}

/* Gradient de tranzitie sus - sectiunea DOR video */

.hero-top-fade {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 220px;
    background: linear-gradient(
        to bottom,
        #0d1210 0%,
        transparent 100%
    );
    z-index: 4;
    pointer-events: none;
}

.hero-bottom-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 220px;
    background: linear-gradient(
        to top,
        #0d1210 0%,
        transparent 100%
    );
    z-index: 4;
    pointer-events: none;
}

/* DOR - VIDEO SECTION */
.video-section {
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4rem 1.5rem 5rem;
    gap: 2rem;
}

.video-frame-wrapper {
    position: relative;
    width: 100%;
    max-width: 1080px;
}

.video-frame-svg {
    position: absolute;
    inset: -22px;
    width: calc(100% + 44px);
    height: calc(100% + 44px);
    pointer-events: none;
    z-index: 2;
}

.video-embed-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.video-embed-container iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

@media (max-width: 600px) {
    .video-frame-svg {
        inset: -14px;
        width: calc(100% + 28px);
        height: calc(100% + 28px);
    }
    .video-info-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }
}


/* COVER */
section:last-child {
    position: relative;
    min-height: 0;
    overflow: hidden;
    margin-top: 10px;
    height: auto;
}

section .overlay-cover {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0, 0, 0, 0.5) 80%, rgba(0, 0, 0, 0.8) 100%),
                linear-gradient(90deg, rgba(0,0,0,0.2), rgba(0, 0, 0, 0));
    z-index: 2;
    width: 100%;
    height: 100%;
}

.poza-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    overflow: hidden;
    margin-top: 30px;
    z-index: 1;
}

.banner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.banner::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 220px;
    background: linear-gradient(
        to top,
        #090c0b 0%,
        rgba(13, 18, 16, 0) 90%
    );
    z-index: 3;
    pointer-events: none;
}

.book-text {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    text-align: center;
}

.book-button {
    display: inline-block;
    padding: 0px 20px;
    border: none;
    color: white;
    font-family: IBM Plex Sans;
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    letter-spacing: 3px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.3s, color 0.3s, transform 0.3s;
}

.book-button:hover {
    background: white;
    color: #131514;
    transform: translateY(-3px);
    cursor: pointer;
}

/* FOOTER */

footer {
    position: relative;
    z-index: 5;
    text-align: center;
    margin-top: 0;
    padding-top: 70px;
    background: transparent;
}

footer::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 220px;
    background: linear-gradient(
        to bottom,
        #090c0b 0%,
        rgba(13, 18, 16, 0) 100%
    );
    z-index: 1;
    pointer-events: none;
}

footer > * {
    position: relative;
    z-index: 2;
}

footer .footer-logo {
    margin-bottom: 25px;
    height: 85px;
}

footer .social {
    text-align: center;
    margin-bottom: 10px;
}

.social a {
    text-decoration: none;
}

.social img {
    width: 30px;
    height: 30px;
    margin-left: 15px;
    margin-right: 15px;
    display: inline-block;
    transition: opacity 0.3s;
}

.social img:hover {
    opacity: 60%;
}

footer ul {
    margin-top: 0;
    padding: 0;
    list-style: none;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0;
    text-align: center;
}

footer ul li {
    display: inline-block;
    padding: 0 15px;
}

footer ul li a {
    text-decoration: none;
    color: white;
    transition: opacity 0.3s;
}

footer ul li a:hover {
    opacity: 60%;
}

footer .copyright {
    margin-top: 15px;
    text-align: center;
    font-size: 13px;
    margin-bottom: 30px;
    color: #ccc;
}

/* ============================================
   MOBILE — max 600px (Sleep Token inspired)
   ============================================ */

@media (max-width: 600px) {

    /* NAV */
    .nav {
        padding: calc(env(safe-area-inset-top, 0px) + 1.2rem) 1.15rem 0.6rem;
    }
    .logo {
        width: 128px;
    }
    .hamburger-menu {
        width: 34px;
        height: 34px;
        margin-right: 0;
    }
    .close-menu {
        top: calc(env(safe-area-inset-top, 0px) + 1.1rem);
        right: 1.1rem;
        font-size: 2.8rem;
    }
    .mobile-menu .logo {
        width: 280px;
    }
    .mobile-menu-links {
        gap: 2.8rem;
    }
    .mobile-menu-links a {
        font-size: 1.75rem;
        letter-spacing: 0.16em;
    }
    .social-media-mobile-menu {
        gap: 30px;
        margin-top: 70px;
    }
    .social-media-mobile-menu img {
        width: 40px;
        height: 40px;
    }

    /* COVER HERO */
    .cover-hero {
        height: 100svh;
        min-height: 640px;
    }
    .cover-hero::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        height: 170px;
        z-index: 2;
        background: linear-gradient(to bottom, rgba(5, 8, 10, 0.72) 0%, rgba(5, 8, 10, 0) 100%);
        pointer-events: none;
    }
    .cover-hero-img {
        background-image: url('../imagini-site/arcanum-cover-extins-in-jos.jpg');
        background-position: center 40%;
        background-size: cover;
    }
    .cover-hero-gradient {
        background: linear-gradient(
            to bottom,
            rgba(14, 19, 23, 0) 42%,
            rgba(14, 19, 23, 0.7) 70%,
            rgba(14, 19, 23, 1) 100%
        );
    }
    .cover-hero-text {
        justify-content: flex-end;
        padding-top: 0;
        padding-bottom: 18%;
        align-items: center;
    }
    .cover-hero-text-inner {
        padding: 1.2rem 1rem;
        width: 100%;
        max-width: 340px;
        align-items: center;
    }
    .cover-hero-text-inner::before {
        display: none;
    }
    .cover-hero-subtitle {
        font-size: 0.95rem;
        letter-spacing: 0.23em;
        white-space: normal;
        color: #ccd1cc;
        line-height: 1.25;
        margin-bottom: 0.95rem;
        text-transform: uppercase;
    }
    .cover-hero-titlu {
        font-size: clamp(3.1rem, 12.4vw, 4.8rem);
        letter-spacing: 0.015em;
        opacity: 1;
        text-shadow: 0 2px 30px rgba(0,0,0,0.6);
    }
    .cover-hero-arrow {
        bottom: 5.8%;
        font-size: 2.5rem;
        opacity: 0.7;
    }

    /* ALBUM SECTION */
    .descantec {
        padding: 3.2rem 1rem 4.4rem;
    }
    .latest-album-head h2 {
        font-size: clamp(2.8rem, 13vw, 4.5rem);
        letter-spacing: 3px;
    }
    .album-out-now-row {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 0.5rem;
    }
    .buton-cumpara-album {
        font-size: 0.84rem;
        letter-spacing: 0.14em;
        padding: 6px 12px;
    }
    .descantec-cover {
        max-width: min(84vw, 320px);
    }

    /* VIDEO SECTION */
    .hero-video, .live-performance {
        height: 70vh;
    }
    .titlu-hero, .titlu-live-performance {
        font-size: clamp(2.7rem, 10.6vw, 3.7rem);
        letter-spacing: -0.01em;
        padding: 0 1.2rem;
        margin-bottom: 1.8rem;
    }
    .hero-top-fade,
    .hero-bottom-fade {
        height: 120px;
    }
    .hero-top-fade {
        background: linear-gradient(
            to bottom,
            rgba(13, 18, 16, 0.5) 0%,
            transparent 100%
        );
    }
    .hero-bottom-fade {
        background: linear-gradient(
            to top,
            rgba(13, 18, 16, 0.45) 0%,
            transparent 100%
        );
    }
    .hero-butoane-wrapper {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    .buton-hero, .buton-live-performance {
        font-size: 0.82rem;
        padding: 11px 26px;
        letter-spacing: 0.14em;
    }

    /* ARCANUM HERO */
    .arcanum-hero {
        height: auto;
        min-height: unset;
        padding: 2rem 0 2.7rem;
    }
    .arcanum-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1.2rem;
        margin: 0;
        padding: 0 0.8rem;
        width: 100%;
    }
    .arcanum-center {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .arcanum-grafica {
        width: min(92vw, 380px);
        max-width: 100%;
    }
    .arcanum-right {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.9rem;
        padding: 0;
        flex-shrink: 1;
    }
    .arcanum-social-link img {
        width: 32px;
        height: 32px;
    }
    .arcanum-listen-btn {
        width: 100%;
        max-width: 240px;
        font-size: 0.72rem;
        padding: 9px 12px;
        letter-spacing: 0.12em;
        text-align: center;
        margin-top: 0.3rem;
    }
    .arcanum-hero::before {
        height: 100px;
    }

    /* MERCH */
    .section-head {
        text-align: center;
        margin-left: 0;
        padding: 0 1rem;
    }
    .section-head h2 {
        font-size: 1.5rem;
        letter-spacing: 0.12em;
    }
    .merch-wrapper {
        padding: 0 0.5rem;
    }
    .merch-wrapper::before,
    .merch-wrapper::after {
        display: none;
    }
    .merch-container {
        gap: 0.8rem;
        padding-bottom: 0.8rem;
        scroll-padding: 0 0.5rem;
    }
    .card {
        min-width: min(72vw, 270px);
        height: 300px;
    }
    .scroll-btn {
        display: none !important;
    }
    .overlay-merch {
        opacity: 0;
        background: rgba(0, 0, 0, 0.65);
    }
    .overlay-merch h3 {
        font-size: 1rem;
    }

    /* VIDEO EMBED */
    .video-section {
        padding: 2.5rem 0.8rem 3rem;
    }
    .video-frame-svg {
        inset: -10px;
        width: calc(100% + 20px);
        height: calc(100% + 20px);
    }

    /* BOOK */
    .book-text {
        top: 83%;
    }
    .book-button {
        font-size: 1.3rem;
        padding: 0 12px;
        letter-spacing: 2px;
    }
    .poza-cover {
        display: none;
    }
    .banner {
        min-height: 380px;
        background: url('/imagini-site/DoraGaitanovici111.jpg') center top / cover no-repeat;
    }

    /* FOOTER */
    footer {
        padding-top: 50px;
    }
    footer .footer-logo {
        height: 72px;
        margin-bottom: 18px;
    }
    .social img {
        width: 30px;
        height: 30px;
        margin: 0 11px;
    }
    footer ul li {
        display: block;
        padding: 4px 0;
    }
    footer ul {
        font-size: 15px;
        line-height: 1.75;
    }
    footer .copyright {
        margin-top: 12px;
        margin-bottom: 24px;
    }
}
