/* ============================================
   FLOODWOOD LAKE RESORT — Brand Styles
   Palette: Midnight Blue (#0a1628) + Mint (#7dd3c0)
   Fonts: Playfair Display + Inter
============================================ */

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

:root {
    --color-midnight: #0a1628;
    --color-midnight-light: #132238;
    --color-midnight-mid: #1a3052;
    --color-mint: #7dd3c0;
    --color-mint-light: #a8e6d8;
    --color-mint-dark: #5bbfa8;
    --color-white: #ffffff;
    --color-off-white: #f4f7f9;
    --color-gray-100: #e8edf2;
    --color-gray-200: #c5d0da;
    --color-gray-400: #8fa3b5;
    --color-gray-600: #5a7185;
    --color-gray-800: #2d4a5c;
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-gray-800);
    background: var(--color-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ============================================
   NAVIGATION
============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.0);
    backdrop-filter: blur(0px);
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.nav.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(125, 211, 192, 0.15);
}

.nav__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.nav__logo-icon {
    color: var(--color-mint);
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav__link {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--color-mint);
    transition: var(--transition);
}

.nav__link:hover {
    color: var(--color-white);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link--cta {
    background: var(--color-mint);
    color: var(--color-midnight);
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: none;
    transition: var(--transition);
}

.nav__link--cta::after {
    display: none;
}

.nav__link--cta:hover {
    background: var(--color-mint-light);
    transform: translateY(-1px);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav__toggle-bar {
    width: 24px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================
   HERO
============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 22, 40, 0.55) 0%,
        rgba(10, 22, 40, 0.7) 50%,
        rgba(10, 22, 40, 0.85) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 820px;
    padding: 0 var(--space-md);
    padding-top: 80px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-mint);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: var(--space-lg);
    padding: 8px 18px;
    border: 1px solid rgba(125, 211, 192, 0.3);
    border-radius: 50px;
    background: rgba(10, 22, 40, 0.4);
    backdrop-filter: blur(10px);
}

.hero__headline {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.15;
    margin-bottom: var(--space-md);
    letter-spacing: -0.01em;
}

.hero__headline-accent {
    color: var(--color-mint);
    font-style: italic;
}

.hero__subhead {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto var(--space-lg);
    font-weight: 300;
}

.hero__actions {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
}

.hero__stats {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__stat {
    text-align: center;
}

.hero__stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-mint);
    line-height: 1.2;
}

.hero__stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.hero__stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
    align-self: stretch;
}

.hero__scroll {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    color: rgba(255, 255, 255, 0.4);
    animation: float 2s ease-in-out infinite;
}

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

/* ============================================
   BUTTONS
============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.02em;
}

.btn--primary {
    background: var(--color-mint);
    color: var(--color-midnight);
}

.btn--primary:hover {
    background: var(--color-mint-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(125, 211, 192, 0.3);
}

.btn--ghost {
    background: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn--ghost:hover {
    border-color: var(--color-mint);
    color: var(--color-mint);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* ============================================
   SECTION LABELS & TITLES
============================================ */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-mint-dark);
    margin-bottom: var(--space-sm);
}

.section-label--light {
    color: var(--color-mint);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 600;
    color: var(--color-midnight);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.section-title--light {
    color: var(--color-white);
}

.section-header {
    margin-bottom: var(--space-xl);
}

.section-header--center {
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-gray-600);
    max-width: 560px;
    margin: var(--space-sm) auto 0;
    line-height: 1.7;
}

/* ============================================
   ABOUT
============================================ */
.about {
    padding: var(--space-3xl) 0;
    background: var(--color-white);
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.about__images {
    position: relative;
    height: 600px;
}

.about__img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 80%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(10, 22, 40, 0.2);
}

.about__img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 6px solid var(--color-white);
    box-shadow: 0 15px 40px rgba(10, 22, 40, 0.15);
}

.about__img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__img-accent {
    position: absolute;
    top: 50%;
    left: 55%;
    width: 80px;
    height: 80px;
    background: var(--color-mint);
    border-radius: var(--radius-md);
    transform: rotate(45deg);
    opacity: 0.3;
    z-index: -1;
}

.about__content {
    padding: var(--space-md) 0;
}

.about__text {
    font-size: 1.05rem;
    color: var(--color-gray-600);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.about__features {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.about__feature {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.about__feature svg {
    color: var(--color-mint-dark);
    flex-shrink: 0;
    margin-top: 2px;
}

.about__feature strong {
    display: block;
    color: var(--color-midnight);
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.about__feature span {
    font-size: 0.875rem;
    color: var(--color-gray-600);
    line-height: 1.5;
}

/* ============================================
   DINING
============================================ */
.dining {
    padding: var(--space-3xl) 0;
    background: var(--color-off-white);
}

.dining__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.dining__card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(10, 22, 40, 0.06);
    transition: var(--transition);
}

.dining__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(10, 22, 40, 0.12);
}

.dining__card-img {
    height: 240px;
    overflow: hidden;
}

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

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

.dining__card-body {
    padding: var(--space-md);
}

.dining__card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-midnight);
    margin-bottom: 8px;
}

.dining__card-body p {
    font-size: 0.925rem;
    color: var(--color-gray-600);
    line-height: 1.7;
}

.dining__cta {
    text-align: center;
}

/* ============================================
   BAR
============================================ */
.bar {
    position: relative;
    padding: var(--space-3xl) 0;
    overflow: hidden;
}

.bar__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.bar__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bar__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 22, 40, 0.92) 0%,
        rgba(26, 48, 82, 0.88) 100%
    );
}

.bar__content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.bar__text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
    max-width: 600px;
}

.bar__highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.bar__highlight {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(125, 211, 192, 0.15);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    transition: var(--transition);
}

.bar__highlight:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(125, 211, 192, 0.35);
}

.bar__highlight-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-mint);
    margin-bottom: 6px;
}

.bar__highlight-name {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--color-white);
    margin-bottom: 4px;
}

.bar__highlight-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

.bar__note {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
}

/* ============================================
   GALLERY
============================================ */
.gallery {
    padding: var(--space-3xl) 0;
    background: var(--color-white);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: var(--space-sm);
}

.gallery__item {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery__item--large {
    grid-column: span 2;
    aspect-ratio: 16/9;
}

.gallery__item--tall {
    grid-row: span 2;
    aspect-ratio: auto;
}

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

.gallery__item:hover img {
    transform: scale(1.05);
}

/* ============================================
   CONTACT
============================================ */
.contact {
    padding: var(--space-3xl) 0;
    background: var(--color-midnight);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.contact__text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact__detail {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.contact__detail svg {
    color: var(--color-mint);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact__detail strong {
    display: block;
    color: var(--color-white);
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.contact__detail span,
.contact__detail a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.contact__detail a:hover {
    color: var(--color-mint);
}

/* Form */
.contact__form-wrapper {
    background: var(--color-midnight-light);
    border: 1px solid rgba(125, 211, 192, 0.15);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
}

.contact__form-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-white);
    margin-bottom: var(--space-lg);
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
}

.form__group {
    margin-bottom: var(--space-sm);
}

.form__label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.form__input,
.form__select,
.form__textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.925rem;
    transition: var(--transition);
    outline: none;
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
    border-color: var(--color-mint);
    background: rgba(125, 211, 192, 0.06);
}

.form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237dd3c0' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
    cursor: pointer;
}

.form__select option {
    background: var(--color-midnight);
    color: var(--color-white);
}

.form__textarea {
    resize: vertical;
    min-height: 100px;
}

.form__note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    text-align: center;
    margin-top: var(--space-sm);
}

.contact__success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-xl);
    color: var(--color-white);
}

.contact__success svg {
    color: var(--color-mint);
    margin-bottom: var(--space-md);
}

.contact__success h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.contact__success p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

/* ============================================
   FOOTER
============================================ */
.footer {
    background: var(--color-midnight);
    border-top: 1px solid rgba(125, 211, 192, 0.1);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer__brand {
    max-width: 280px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.footer__logo svg {
    color: var(--color-mint);
}

.footer__brand p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__links strong {
    color: var(--color-white);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.footer__links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.footer__links a:hover {
    color: var(--color-mint);
}

.footer__hours {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__hours strong {
    color: var(--color-white);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.footer__hours span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.footer__bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   ANIMATIONS
============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
    .about__grid {
        grid-template-columns: 1fr;
    }
    
    .about__images {
        height: 450px;
        order: -1;
    }
    
    .contact__grid {
        grid-template-columns: 1fr;
    }
    
    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--color-midnight);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--space-md);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    }
    
    .nav__menu.open {
        right: 0;
    }
    
    .nav__toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav__toggle.open .nav__toggle-bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav__toggle.open .nav__toggle-bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav__toggle.open .nav__toggle-bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero__stats {
        gap: var(--space-md);
    }
    
    .dining__grid {
        grid-template-columns: 1fr;
    }
    
    .bar__highlights {
        grid-template-columns: 1fr;
    }
    
    .gallery__grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .gallery__item--large {
        grid-column: span 2;
    }
    
    .gallery__item--tall {
        grid-row: span 1;
        aspect-ratio: 4/3;
    }
    
    .form__row {
        grid-template-columns: 1fr;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero__actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero__stats {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .hero__stat-divider {
        width: 40px;
        height: 1px;
        align-self: center;
    }
    
    .gallery__grid {
        grid-template-columns: 1fr;
    }
    
    .gallery__item--large {
        grid-column: span 1;
    }
    
    .about__images {
        height: 350px;
    }
}

/* Mobile menu overlay */
.nav__overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.nav__overlay.active {
    display: block;
}
