/* =========================================
   NATALIE BOOKINGS
   Global Styles
========================================= */

:root {
    --orange: #f47b20;
    --orange-dark: #d95e0b;
    --black: #111111;
    --dark: #181818;
    --white: #ffffff;
    --cream: #fff8f2;
    --gray: #6b6b6b;
    --light-gray: #eeeeee;

    --max-width: 1180px;
    --radius: 18px;
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}


/* =========================================
   RESET
========================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        Inter,
        Arial,
        Helvetica,
        sans-serif;

    background: var(--white);
    color: var(--black);
    line-height: 1.6;
}

img {
    display: block;
    width: 100%;
    height: auto;
}

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

button,
input,
textarea,
select {
    font: inherit;
}


/* =========================================
   CONTAINER
========================================= */

.container {
    width: min(
        92%,
        var(--max-width)
    );

    margin-inline: auto;
}


/* =========================================
   HEADER
========================================= */

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

    z-index: 1000;

    background: rgba(255, 255, 255, 0.94);

    backdrop-filter: blur(14px);

    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-container {
    min-height: 76px;

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

.brand {
    display: flex;
    align-items: center;
    gap: 10px;

    font-weight: 700;
}

.brand-mark {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    background: var(--orange);
    color: var(--white);

    border-radius: 12px;

    font-size: 14px;
}

.brand-text {
    display: flex;
    flex-direction: column;

    line-height: 1.05;

    font-size: 15px;
}

.brand-text strong {
    color: var(--orange);
}

.primary-navigation {
    display: flex;
    align-items: center;
    gap: 28px;
}

.primary-navigation a {
    font-size: 14px;
    font-weight: 600;
}

.primary-navigation a:hover {
    color: var(--orange);
}

.nav-button {
    padding: 11px 18px;

    background: var(--black);
    color: var(--white);

    border-radius: 100px;
}

.menu-toggle {
    display: none;

    border: 0;
    background: transparent;

    font-size: 28px;
    cursor: pointer;
}


/* =========================================
   HERO
========================================= */

.hero {
    min-height: 100vh;

    position: relative;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.82),
            rgba(0, 0, 0, 0.35)
        ),
        url("images/hero.jpg")
        center / cover no-repeat;

    color: var(--white);
}

.hero-content {
    position: relative;
    z-index: 2;

    padding-top: 80px;

    max-width: 850px;
}

.eyebrow {
    color: var(--orange);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 0.18em;

    margin-bottom: 18px;
}

.hero h1 {
    max-width: 800px;

    font-size: clamp(
        3rem,
        8vw,
        7rem
    );

    line-height: 0.95;

    letter-spacing: -0.06em;
}

.hero h1 span {
    color: var(--orange);
}

.hero-description {
    max-width: 600px;

    margin-top: 28px;

    font-size: 18px;

    color: rgba(255, 255, 255, 0.82);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;

    margin-top: 34px;
}

.button {
    display: inline-flex;

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

    min-height: 52px;

    padding: 0 24px;

    border-radius: 100px;

    font-weight: 700;

    border: 1px solid transparent;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: var(--orange);
    color: var(--white);
}

.button-primary:hover {
    background: var(--orange-dark);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.1);

    color: var(--white);

    border-color:
        rgba(255, 255, 255, 0.4);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;

    gap: 18px;

    margin-top: 40px;

    font-size: 13px;

    color: rgba(255, 255, 255, 0.7);
}


/* =========================================
   SECTIONS
========================================= */

.section {
    padding: 110px 0;
}

.section-heading {
    max-width: 650px;

    margin-bottom: 55px;
}

.section h2 {
    font-size: clamp(
        2.3rem,
        5vw,
        4.5rem
    );

    line-height: 1;

    letter-spacing: -0.04em;
}

.section-heading p:last-child {
    margin-top: 18px;

    color: var(--gray);
}


/* =========================================
   EXPERIENCES
========================================= */

.experiences {
    background: var(--cream);
}

.experience-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 24px;
}

.experience-card {
    overflow: hidden;

    background: var(--white);

    border-radius: var(--radius);

    box-shadow: var(--shadow);
}

.card-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.4s ease;
}

.experience-card:hover img {
    transform: scale(1.05);
}

.card-content {
    padding: 30px;
}

.card-number {
    color: var(--orange);

    font-weight: 800;

    font-size: 12px;
}

.card-content h3 {
    margin: 12px 0;

    font-size: 26px;
}

.card-content p {
    color: var(--gray);

    margin-bottom: 22px;
}

.card-link {
    color: var(--orange);

    font-weight: 800;
}


/* =========================================
   ABOUT
========================================= */

.about {
    background: var(--white);
}

.about-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;
}

.about-copy {
    color: var(--gray);

    font-size: 18px;
}

.about-copy p + p {
    margin-top: 20px;
}

.management-note {
    color: var(--black);
}


/* =========================================
   MEMBERSHIP
========================================= */

.membership {
    background: var(--black);

    color: var(--white);
}

.membership-container {
    min-height: 500px;

    display: flex;
    align-items: center;
}

.membership-content {
    max-width: 700px;
}

.membership-content > p:not(.eyebrow) {
    margin: 25px 0;

    color: rgba(255, 255, 255, 0.7);

    font-size: 18px;
}

.benefits {
    list-style: none;

    display: grid;

    gap: 12px;

    margin-bottom: 32px;
}

.benefits li {
    display: flex;
    gap: 10px;
}

.benefits span {
    color: var(--orange);
    font-weight: 800;
}


/* =========================================
   BOOKING
========================================= */

.booking {
    background: var(--cream);
}

.booking-grid {
    display: grid;

    grid-template-columns:
        0.8fr 1.2fr;

    gap: 80px;
}

.booking-intro > p:not(.eyebrow) {
    color: var(--gray);

    margin-top: 25px;

    font-size: 18px;
}

.contact-box {
    margin-top: 40px;

    padding: 25px;

    background: var(--white);

    border-radius: var(--radius);

    box-shadow: var(--shadow);
}

.contact-box p + p {
    margin-top: 15px;
}

.contact-box strong {
    display: block;

    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: 0.1em;

    color: var(--gray);
}

.contact-box a {
    color: var(--orange);

    font-weight: 700;
}


/* =========================================
   FORM
========================================= */

.booking-form {
    background: var(--white);

    padding: 35px;

    border-radius: var(--radius);

    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;

    margin-bottom: 8px;

    font-size: 13px;

    font-weight: 700;
}

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

    padding: 14px 15px;

    border: 1px solid var(--light-gray);

    border-radius: 10px;

    outline: none;

    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--orange);

    box-shadow:
        0 0 0 3px
        rgba(244, 123, 32, 0.12);
}

.form-row {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 15px;
}

.checkbox {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    margin-bottom: 20px;

    font-size: 13px;

    color: var(--gray);
}

.checkbox input {
    margin-top: 4px;
}

.button-full {
    width: 100%;

    border: 0;
}

.form-status {
    margin-top: 15px;

    font-size: 13px;

    font-weight: 700;
}


/* =========================================
   CONTACT
========================================= */

.contact {
    text-align: center;

    background: var(--orange);

    color: var(--white);
}

.contact .eyebrow {
    color: var(--white);
}

.contact-container {
    max-width: 800px;
}

.contact-container > p:not(.eyebrow) {
    margin: 20px auto 30px;

    max-width: 600px;

    color: rgba(255, 255, 255, 0.85);
}

.contact-actions {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 14px;
}

.contact .button-primary {
    background: var(--black);
}

.contact .button-secondary {
    border-color: rgba(255, 255, 255, 0.7);
}


/* =========================================
   FOOTER
========================================= */

.site-footer {
    background: var(--dark);

    color: var(--white);

    padding-top: 70px;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        2fr 1fr 1.5fr;

    gap: 50px;

    padding-bottom: 60px;
}

.footer-brand {
    font-size: 22px;

    font-weight: 800;
}

.footer-grid p {
    max-width: 400px;

    margin-top: 15px;

    color: rgba(255, 255, 255, 0.55);
}

.footer-grid h3 {
    margin-bottom: 15px;

    color: var(--orange);
}

.footer-grid a:not(.footer-brand) {
    display: block;

    margin: 8px 0;

    color: rgba(255, 255, 255, 0.7);

    font-size: 14px;
}

.footer-grid a:hover {
    color: var(--orange);
}

.footer-bottom {
    border-top:
        1px solid rgba(255, 255, 255, 0.08);

    padding: 22px 0;
}

.footer-bottom .container {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    color: rgba(255, 255, 255, 0.45);

    font-size: 12px;
}


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

@media (max-width: 850px) {

    .menu-toggle {
        display: block;
    }

    .primary-navigation {
        position: absolute;

        top: 76px;
        left: 0;

        width: 100%;

        padding: 25px;

        display: none;

        flex-direction: column;
        align-items: stretch;

        background: var(--white);

        box-shadow: var(--shadow);
    }

    .primary-navigation.active {
        display: flex;
    }

    .primary-navigation a {
        padding: 8px 0;
    }

    .nav-button {
        text-align: center;
    }

    .experience-grid {
        grid-template-columns: 1fr;
    }

    .about-grid,
    .booking-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}


@media (max-width: 600px) {

    .section {
        padding: 80px 0;
    }

    .hero h1 {
        font-size: 3.3rem;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-trust {
        flex-direction: column;
        gap: 8px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .booking-form {
        padding: 22px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom .container {
        flex-direction: column;
    }
  }
