/* =========================================
   JUST GROOVE
   Main Stylesheet
   ========================================= */


/* ---------- RESET ---------- */

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

html {
    scroll-behavior: smooth;
}

body {
    background: #0a0a0a;
    color: #f5f5f5;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}


/* ---------- NAVIGATION ---------- */

.site-header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 90px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 5%;

    z-index: 1000;

    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    mix-blend-mode: screen;
}

.logo img {
    display: block;
    width: 170px;
    height: auto;
}

.desktop-nav {
    display: flex;
    gap: 40px;
}

.desktop-nav a {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: opacity 0.25s ease;
}

.desktop-nav a:hover {
    opacity: 0.55;
}

.menu-button {
    display: none;

    background: none;
    border: none;

    color: #ffffff;

    font-size: 0.75rem;
    letter-spacing: 0.15em;

    cursor: pointer;
}


/* ---------- HERO ---------- */

.hero {
    min-height: 100svh;

    display: flex;
    align-items: center;

    position: relative;

    padding: 130px 5% 70px;

    border-bottom: 1px solid #292929;
    overflow: hidden;
    isolation: isolate;
}

.hero-symbol {
    position: absolute;
    right: 6%;
    top: 50%;
    width: clamp(250px, 36vw, 520px);
    transform: translateY(-50%);
    opacity: 0.12;
    mix-blend-mode: screen;
    pointer-events: none;
}

.hero-symbol img {
    display: block;
    width: 100%;
    height: auto;
}

.hero-content {
    width: 100%;
    position: relative;
    z-index: 1;
}

.eyebrow {
    margin-bottom: 20px;

    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;

    color: #a8a8a8;
}

.hero-brand {
    width: fit-content;
    max-width: 100%;
    margin-bottom: 35px;
}

.hero h1 {
    font-size: clamp(5rem, 14vw, 13rem);

    line-height: 0.78;

    letter-spacing: -0.07em;

    font-weight: 900;

    margin-bottom: 14px;
}

.hero-tagline {
    color: #ed503f;
    font-size: clamp(1.35rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.15;
    text-align: center;
}

.hero-tagline strong {
    font-weight: 700;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.4rem);

    margin-bottom: 35px;

    color: #c6c6c6;
}

.button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 55px;

    padding: 0 28px;

    border: 1px solid #f5f5f5;

    font-size: 0.72rem;

    text-transform: uppercase;
    letter-spacing: 0.16em;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}

.button:hover {
    background: #f5f5f5;
    color: #0a0a0a;
}

.scroll-indicator {
    position: absolute;

    right: 5%;
    bottom: 40px;

    font-size: 0.65rem;

    letter-spacing: 0.2em;

    color: #777777;
}


/* ---------- GENERAL SECTIONS ---------- */

.section {
    display: grid;

    grid-template-columns: 1fr 3fr;

    gap: 60px;

    padding: 130px 5%;

    border-bottom: 1px solid #292929;
}

.section-label {
    font-size: 0.7rem;

    text-transform: uppercase;

    letter-spacing: 0.18em;

    color: #777777;
}

.section-content {
    max-width: 1000px;
    min-width: 0;
}

.section h2 {
    font-size: clamp(2.7rem, 6vw, 6rem);

    line-height: 0.95;

    letter-spacing: -0.045em;

    margin-bottom: 50px;
}

.section-content > p {
    max-width: 700px;

    margin-bottom: 20px;

    font-size: 1.05rem;

    color: #bdbdbd;
}


/* ---------- ABOUT ---------- */

.about {
    background: #0a0a0a;
}


/* ---------- EVENTS ---------- */

.availability-panel {
    max-width: 720px;
    margin-bottom: 55px;
}

.availability-panel h3,
.booking-heading {
    margin-bottom: 18px;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    letter-spacing: -0.02em;
}

.availability-note {
    margin-bottom: 20px;
    color: #bdbdbd;
    font-size: 0.95rem;
}

.availability-calendar {
    border: 1px solid #444444;
    background: #ffffff;
}

.availability-calendar iframe {
    display: block;
    width: 100%;
    height: 500px;
    border: 0;
}

.availability-fallback {
    margin-top: 20px;
}

.availability-fallback a {
    text-decoration: underline;
    text-underline-offset: 3px;
}


/* ---------- EXPERIENCE ---------- */

.stats {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 20px;

    margin-bottom: 80px;
}

.stat {
    display: flex;

    flex-direction: column;

    padding: 35px 0;

    border-top: 1px solid #333333;
}

.stat strong {
    font-size: clamp(3.5rem, 8vw, 7rem);

    line-height: 1;

    letter-spacing: -0.06em;
}

.stat span {
    margin-top: 15px;

    font-size: 0.7rem;

    text-transform: uppercase;

    letter-spacing: 0.16em;

    color: #888888;
}

.client-showcase {
    padding: 32px 0;
    border-top: 1px solid #333333;
    border-bottom: 1px solid #333333;
}

.client-showcase h3 {
    margin-bottom: 40px;
    font-size: 0.7rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #888888;
}

.client-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.client-logos li {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 1 calc((100% - 80px) / 3);
    min-width: 0;
    height: 120px;
    padding: 12px;
}

.client-logos img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 180px;
    max-height: 95px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

@media (max-width: 600px) {
    .client-showcase h3 {
        margin-bottom: 28px;
    }

    .client-logos {
        gap: 24px;
    }

    .client-logos li {
        flex-basis: calc((100% - 24px) / 2);
        height: 90px;
    }
}


/* ---------- CONTACT ---------- */

.contact {
    min-height: 80vh;

    align-items: start;

    background: #111111;
}

#contact,
#events,
#booking-form {
    scroll-margin-top: 110px;
}

.contact .button {
    margin-top: 20px;
}


/* ---------- FOOTER ---------- */

footer {
    padding: 80px 5% 35px;

    background: #050505;
}

.footer-logo {
    margin-bottom: 60px;
    mix-blend-mode: screen;
}

.footer-logo img {
    display: block;
    width: min(600px, 100%);
    height: auto;
}

.footer-links {
    display: flex;

    gap: 30px;

    margin-bottom: 60px;
}

.footer-links a {
    font-size: 0.75rem;

    text-transform: uppercase;

    letter-spacing: 0.15em;
}

.copyright {
    font-size: 0.65rem;

    text-transform: uppercase;

    letter-spacing: 0.12em;

    color: #666666;
}
/* ---------- BOOKING FORM ---------- */

.booking-intro {
    margin-bottom: 25px;
}

.booking-form {
    max-width: 900px;
    margin-top: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 35px;
    min-width: 0;
}

.form-group label {
    margin-bottom: 10px;

    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;

    color: #888888;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 15px 0;

    border: none;
    border-bottom: 1px solid #444444;
    border-radius: 0;

    background: transparent;
    color: #f5f5f5;

    font-family: inherit;
    font-size: 1rem;

    outline: none;

    transition: border-color 0.2s ease;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-bottom-color: #f5f5f5;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666666;
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    color: #111111;
}

.form-submit {
    margin-top: 15px;
    cursor: pointer;
    background: transparent;
    color: #f5f5f5;
}

.form-status {
    min-height: 24px;
    margin-top: 20px;

    font-size: 0.85rem;
}

/* =========================================
   TABLET
   ========================================= */

@media (max-width: 900px) {

    .desktop-nav {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .section {
        grid-template-columns: 1fr;

        gap: 45px;

        padding-top: 100px;
        padding-bottom: 100px;
    }

}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 600px) {

    .site-header {
        height: 72px;

        padding-left: 20px;
        padding-right: 20px;
    }

    .logo img {
        width: 135px;
    }

    .hero-symbol {
        width: 300px;
        right: -75px;
        top: 42%;
        opacity: 0.08;
    }

    .footer-logo img {
        width: 85%;
    }

    .hero {
        padding:
            110px
            20px
            50px;
    }

    .hero h1 {
        font-size: clamp(3.8rem, 22vw, 7rem);

        margin-bottom: 14px;
    }

    .scroll-indicator {
        display: none;
    }

    .section {
        padding:
            80px
            20px;
    }

    .section h2 {
        margin-bottom: 35px;
    }

    .availability-calendar {
        margin-inline: -20px;
        border-inline: 0;
    }

    .stats {
        grid-template-columns: 1fr;

        gap: 0;

        margin-bottom: 50px;
    }

    footer {
        padding:
            70px
            20px
            30px;
    }

    .footer-links {
        flex-direction: column;

        gap: 18px;
    }
    .form-row {
    grid-template-columns: 1fr;
    gap: 0;
}

.booking-form {
    margin-top: 35px;
}

}
/* ---------- MOBILE NAVIGATION ---------- */

.mobile-nav {
    position: fixed;

    top: 72px;
    left: 0;

    width: 100%;
    height: calc(100svh - 72px);

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 30px 20px;

    background: #0a0a0a;

    z-index: 999;

    opacity: 0;
    visibility: hidden;

    transform: translateY(-10px);

    transition:
        opacity 0.3s ease,
        transform 0.3s ease,
        visibility 0.3s;
}

.mobile-nav.open {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.mobile-nav a {
    padding: 18px 0;

    border-bottom: 1px solid #292929;

    font-size: clamp(2rem, 10vw, 3.5rem);

    font-weight: 700;

    letter-spacing: -0.04em;
    overflow-wrap: anywhere;
}

body.menu-open {
    overflow: hidden;
}


/* Don't allow mobile menu on desktop */

@media (min-width: 901px) {

    .mobile-nav {
        display: none;
    }

}

.form-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.form-status {
    line-height: 1.5;
}
.form-consent {
    margin-top: 16px;
    max-width: 700px;

    font-size: 0.75rem;
    line-height: 1.5;

    color: #777777;
}

.form-consent a {
    text-decoration: underline;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 4px;
}