@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600&family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@400;500;600&family=Playfair+Display:wght@500;600;700&display=swap");

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    overflow-x: hidden;
    font-family: 'Cormorant Garamond', serif;
    color: #fff;
    background: url("/assets/bg.png") center 22% / cover fixed no-repeat;
    padding-bottom: 120px;
}

.snap-section {
    width: 100%;
    scroll-margin-top: 90px;
}

.full-screen {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 104px;
    box-sizing: border-box;
}

.section {
    max-width: 1520px;
    margin: auto;
    padding: 24px 34px 0;
    box-sizing: border-box;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 64px;
}

.section-header::before,
.section-header::after {
    content: "";
    width: 100px;
    height: 1px;
    background: rgba(255,255,255,0.25);
}

.section-header h2 {
    font-weight: 400;
    font-size: 26px;
    letter-spacing: 2px;
}

.about-text {
    max-width: 650px;
    margin: 40px auto 0 auto;
    text-align: center;
    line-height: 1.8;
}

.site-footer {
    margin-top: 180px;
    padding: 140px 0 200px;
    text-align: center;
}

.footer-line {
    width: 140px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.35), transparent);
    margin: 0 auto 40px;
}

.footer-meta {
    font-size: 11px;
    letter-spacing: 1.5px;
    opacity: 0.35;
}

/* ===== GLOBAL FLOATING MENU ===== */

.main-menu a:nth-child(1) {
    --link-accent-rgb: 244, 210, 150; /* Home */
}

.main-menu a:nth-child(2) {
    --link-accent-rgb: 151, 165, 255; /* Sets */
}

.main-menu a:nth-child(3) {
    --link-accent-rgb: 181, 223, 216; /* DJs */
}

.main-menu a:nth-child(4) {
    --link-accent-rgb: 214, 167, 255; /* About */
}

.main-menu a:nth-child(5) {
    --link-accent-rgb: 255, 138, 138; /* Radio */
}

.main-menu {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;

    width: auto;
    max-width: calc(100% - 32px);
    padding: 9px 18px;
    box-sizing: border-box;

    background: rgba(7, 10, 18, 0.015);
    border: 1px solid rgba(255,255,255,0.018);
    border-radius: 999px;

    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);

    box-shadow: none;

    transition:
        background 0.32s ease,
        border-color 0.32s ease,
        box-shadow 0.32s ease,
        backdrop-filter 0.32s ease,
        -webkit-backdrop-filter 0.32s ease,
        transform 0.28s ease,
        opacity 0.28s ease;
}

.main-menu a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 2px 7px;
    color: rgba(255,255,255,0.38);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.65px;
    text-transform: uppercase;
    white-space: nowrap;
    text-shadow: none;
    transition:
        color 0.24s ease,
        text-shadow 0.24s ease,
        opacity 0.24s ease,
        transform 0.24s ease;
}

body:not(.menu-scrolled) .main-menu {
    background: rgba(7, 10, 18, 0.012);
    border-color: rgba(255,255,255,0.015);
    backdrop-filter: blur(0.5px);
    -webkit-backdrop-filter: blur(0.5px);
}

body:not(.menu-scrolled) .main-menu a {
    color: rgba(255,255,255,0.18);
}

.main-menu a:hover {
    color: rgba(255,255,255,0.9);
    transform: translateY(-1px);
}

.main-menu a.active {
    color: #fff;
    text-shadow:
        0 0 7px rgba(255,255,255,0.14),
        0 0 18px rgba(var(--link-accent-rgb), 0.18),
        0 0 26px rgba(var(--link-accent-rgb), 0.16);
}

body:not(.menu-scrolled) .main-menu a.active {
    color: rgba(255,255,255,0.92);
    text-shadow:
        0 0 8px rgba(255,255,255,0.1),
        0 0 14px rgba(var(--link-accent-rgb), 0.12);
}

.main-menu a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 1px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        rgba(255,255,255,0),
        rgba(var(--link-accent-rgb), 0.82),
        rgba(255,255,255,0)
    );
    box-shadow: 0 0 10px rgba(var(--link-accent-rgb), 0.22);
    opacity: 0;
    transition: width 0.24s ease, opacity 0.24s ease;
}

.main-menu a:hover::after,
.main-menu a.active::after {
    width: 72%;
    opacity: 1;
}

body.menu-scrolled .main-menu {
    background: linear-gradient(180deg, rgba(11, 14, 24, 0.24), rgba(8, 10, 18, 0.18));
    border-color: rgba(255,255,255,0.05);
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
    box-shadow:
        0 10px 34px rgba(0,0,0,0.2),
        inset 0 0 0 1px rgba(255,255,255,0.02);
}

body.menu-scrolled .main-menu a {
    color: rgba(255,255,255,0.62);
    text-shadow: none;
}

@media (max-width: 768px) {
    body {
        padding-bottom: 112px;
    }

    .snap-section {
        scroll-margin-top: 84px;
    }

    .full-screen {
        padding-top: 88px;
    }

    .section {
        padding: 18px 18px 0;
    }

    .section-header {
        gap: 18px;
        margin-bottom: 48px;
    }

    .section-header::before,
    .section-header::after {
        width: 52px;
    }

    .section-header h2 {
        font-size: 22px;
        letter-spacing: 1.5px;
    }

    .main-menu {
        top: 14px;
        gap: 18px;
        padding: 8px 15px;
        max-width: calc(100% - 20px);
    }

    .main-menu a {
        padding: 5px 1px 6px;
        font-size: 11px;
        letter-spacing: 1.12px;
    }
}

@media (max-width: 480px) {
    body {
        padding-bottom: 104px;
    }

    .snap-section {
        scroll-margin-top: 76px;
    }

    .full-screen {
        padding-top: 80px;
    }

    .main-menu {
        gap: 12px;
        padding: 8px 12px;
        max-width: calc(100% - 16px);
    }

    .main-menu a {
        padding: 4px 1px 6px;
        font-size: 10px;
        letter-spacing: 0.9px;
    }
}
