/* BAR L'AMBRE Design System & Stylesheet */

/* Custom Variables */
:root {
    --bg-dark: #0a0908;
    --bg-darker: #050404;
    --bg-card: #141210;
    --bg-card-hover: #1e1b18;
    --primary: #d4af37;
    /* Metallic Gold */
    --primary-rgb: 212, 175, 55;
    --primary-hover: #f3e5ab;
    /* Soft Cream Gold */
    --accent: #e5a93b;
    /* Warm Amber */
    --text-light: #f4f3ef;
    /* Warm White */
    --text-muted: #a39e93;
    /* Muted Warm Gray */
    --border-color: rgba(212, 175, 55, 0.15);

    --font-serif: 'Cormorant Garamond', 'Noto Serif JP', serif;
    --font-sans: 'Montserrat', sans-serif;

    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;

    --container-width: 1200px;
    --header-height: 80px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
}

body {
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 40%);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: #2a251f;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    font-weight: 400;
    letter-spacing: 0.1em;
}

p {
    color: var(--text-muted);
    font-weight: 300;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

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

.font-accent {
    color: var(--primary);
    font-family: var(--font-serif);
    font-style: italic;
}

/* Reusable Components */
.section-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 100px 24px;
}



.section-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    color: #fff;
    text-align: center;
    position: relative;
    margin-bottom: 70px;
    text-transform: uppercase;
}



/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg-darker);
    border: 1px solid var(--primary);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}

.btn-large {
    padding: 16px 44px;
    font-size: 0.9rem;
}

/* Header Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

.main-header.scrolled {
    height: 70px;
    background-color: rgba(10, 9, 8, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}

.header-container {
    max-width: var(--container-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--text-light);
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: var(--primary);
    bottom: 6px;
    right: -10px;
    border-radius: 50%;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary);
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Mobile Menu Toggle Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-light);
    transition: var(--transition-smooth);
}

/* Hero Section */
/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;

    /* 背景を白にする */
    background-color: #ffffff;

    /* 背景画像 */
    background-image: url("images/ヘッダー.png");
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;

    text-align: center;
}

@media (max-width: 768px) {
    .hero-section {
        background-attachment: scroll;
        /* Disable fixed bg for mobile performance */
    }
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle,
            transparent 20%,
            rgba(0, 0, 0, .6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 24px;
    margin-top: 50px;
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    letter-spacing: 0.4em;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: fadeInDown 1.2s ease forwards;
}

.hero-title {
    font-size: 5rem;
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 24px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1.2s ease forwards;
}

.hero-tagline {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text-light);
    letter-spacing: 0.15em;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeIn 1.5s ease 0.5s forwards;
}

.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    animation: fadeIn 1.5s ease 0.8s forwards;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.scroll-indicator span {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--text-muted);
}

.arrow-down {
    width: 1px;
    height: 40px;
    background-color: rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.arrow-down::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 15px;
    background-color: var(--primary);
    animation: scrollDown 2s infinite cubic-bezier(0.16, 1, 0.3, 1);
}

/* Animations */
@keyframes scrollDown {
    0% {
        top: -15px;
        opacity: 0;
    }

    30% {
        top: 0;
        opacity: 1;
    }

    60% {
        top: 30px;
        opacity: 0;
    }

    100% {
        top: 40px;
        opacity: 0;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Scroll Reveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* About Section */
.about-section {
    background-color: var(--bg-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    padding-bottom: 120%;
    /* Ratio control */
    height: 0;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.about-image-wrapper::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    pointer-events: none;
    z-index: 2;
}

.about-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) contrast(1.1);
    transition: var(--transition-smooth);
}

.about-image:hover {
    transform: scale(1.05);
    filter: brightness(0.9) contrast(1.1);
}

.about-text {
    padding-right: 40px;
}

.about-text .section-title {
    text-align: center;
}

.about-text .section-title::after {
    left: 0;
    transform: none;
}

.about-description {
    margin-bottom: 24px;
    font-size: 1.0rem;
    line-height: 1.8;
    text-align: justify;
}

.section-title text-center

/* Menu Section */
.menu-section {
    background-color: var(--bg-darker);
    position: relative;
}

.menu-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.15);
    color: var(--text-muted);
    padding: 8px 24px;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--primary);
    color: var(--primary);
    background-color: rgba(212, 175, 55, 0.05);
}

/* ===========================
   MENU
=========================== */

.menu-section {
    background: #000;
    padding: 100px 0;
}

.menu-columns {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.menu-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media(max-width:900px) {
    .menu-columns {
        flex-direction: column;
    }
}


.menu-item {
    background: transparent;
    padding: 10px;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    position: relative;
}

.menu-item-header::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 8px;
    border-bottom: 1px dotted rgba(212, 175, 55, .35);
    z-index: 0;
}

.menu-item-name,
.menu-item-price {
    background: #000;
    position: relative;
    z-index: 1;
}

.menu-item-name {
    color: #fff;
    font-size: 1.1rem;
    font-family: var(--font-serif);
    padding-right: 12px;
}

.menu-item-price {
    color: #d4af37;
    font-size: 1.8rem;
    font-family: var(--font-serif);
    padding-left: 12px;
}

.menu-item p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 12px 0;
    padding-bottom: 6px;
    border-bottom: 1px dotted rgba(212, 175, 55, .25);
    color: #f4f4f4;
    font-size: 1rem;
}

.menu-item p .menu-item-price {
    background: transparent;
    padding: 0;
}

.menu-item-desc {
    display: block !important;
    border: none !important;
    margin-top: 15px;
    color: #aaa;
    font-size: .9rem;
    line-height: 1.8;
}

.menu-item-desc .menu-item-price {
    display: none;
}

/* シャンパンだけ */
.menu-item:last-child .menu-item-header {
    margin-top: 18px;
    margin-bottom: 14px;
}

/* 下の注意書き */
.menu-section>.section-container>p {
    margin-top: 50px;
    text-align: center;
    color: #888;
    line-height: 1.8;
}

/* Gallery Section */
.gallery-section {
    background-color: var(--bg-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 1px solid var(--border-color);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transition: var(--transition-smooth);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 9, 8, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.3);
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-overlay span {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--primary);
    letter-spacing: 0.15em;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.08);
    filter: brightness(0.9);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* Access Section */
.access-section {
    background-color: var(--bg-darker);
}

.access-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.info-card {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-item {
    display: flex;
    gap: 24px;
}

.info-icon {
    width: 32px;
    height: 32px;
    color: var(--primary);
    flex-shrink: 0;
}

.info-text h3 {
    font-family: var(--font-sans);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.info-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.info-text .sub-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Stylized Mock Map */
.map-card {
    border: 1px solid var(--border-color);
    padding: 15px;
    background-color: var(--bg-card);
}

.map-placeholder {
    height: 380px;
    background-color: #171513;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* Stylized minimalist dark vector map representation */
.map-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.15;
    background-image:
        linear-gradient(90deg, transparent 50%, #fff 50%),
        linear-gradient(0deg, transparent 50%, #fff 50%);
    background-size: 40px 40px;
}

.map-bg::after {
    content: '';
    position: absolute;
    width: 120%;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.4);
    top: 30%;
    left: -10%;
    transform: rotate(15deg);
}

.map-bg::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 120%;
    background-color: rgba(255, 255, 255, 0.4);
    left: 45%;
    top: -10%;
    transform: rotate(-10deg);
}

.map-pin {
    position: relative;
    z-index: 5;
    margin-bottom: 15px;
}

.pin-dot {
    width: 16px;
    height: 16px;
    background-color: var(--primary);
    border: 2px solid var(--text-light);
    border-radius: 50%;
    display: block;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.pin-ring {
    position: absolute;
    top: -12px;
    left: -12px;
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    opacity: 0;
    animation: mapPulse 2s infinite ease-out;
}

@keyframes mapPulse {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.map-popup {
    background-color: var(--bg-darker);
    border: 1px solid var(--primary);
    padding: 12px 20px;
    text-align: center;
    position: relative;
    z-index: 5;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    margin-bottom: 30px;
}

.map-popup h4 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 4px;
}

.map-popup p {
    font-size: 1.5rem;
    margin: 0;
    color: var(--text-light);
}

.map-popup::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px 8px 0;
    border-style: solid;
    border-color: var(--primary) transparent;
    display: block;
    width: 0;
}

.map-link-btn {
    position: relative;
    z-index: 5;
    padding: 10px 24px;
    font-size: 0.75rem;
}

/* Contact Section */
.contact-section {
    background-color: var(--bg-dark);
}

.contact-desc {
    max-width: 600px;
    margin: -30px auto 60px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 50px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

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

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--primary);
    text-transform: uppercase;
}

.form-group label .required {
    color: #e55353;
}

.form-group input,
.form-group select,
.form-group textarea {
    background-color: var(--bg-darker);
    border: 1px solid rgba(212, 175, 55, 0.15);
    color: var(--text-light);
    padding: 14px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    border-radius: 0;
    transition: var(--transition-smooth);
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%23d4af37' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    padding-right: 40px;
}

.form-group input[type="datetime-local"]::-webkit-calendar-picker-indicator {
    filter: invert(79%) sepia(35%) saturate(763%) hue-rotate(1deg) brightness(91%) contrast(85%);
    /* gold filter */
    cursor: pointer;
}

/* Submit Button & Loader */
.btn-loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(10, 9, 8, 0.3);
    border-top: 2px solid var(--bg-darker);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-left: 10px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.btn.submitting {
    pointer-events: none;
}

.btn.submitting .btn-loader {
    display: inline-block;
}

.form-message {
    font-size: 0.9rem;
    text-align: center;
    margin-top: 10px;
    min-height: 24px;
    transition: var(--transition-fast);
}

.form-message.success {
    color: #5bb35b;
}

.form-message.error {
    color: #e55353;
}

/* Footer */
.main-footer {
    background-color: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 60px 24px;
    text-align: center;
}

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    letter-spacing: 0.2em;
    color: var(--text-light);
    margin-bottom: 8px;
}

.footer-tagline {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    letter-spacing: 0.25em;
    color: var(--primary);
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
}

.social-link {
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.social-link:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

.copyright {
    font-size: 0.75rem;
    color: #5e5a51;
    letter-spacing: 0.05em;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .section-title {
        font-size: 2.2rem;
    }

    .about-grid {
        gap: 50px;
    }

    .menu-grid {
        gap: 30px 40px;
    }

    .access-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .map-placeholder {
        height: 320px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    .section-container {
        padding: 70px 24px;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-wrapper {
        padding-bottom: 70%;
    }

    .about-text {
        padding-right: 0;
    }

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

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

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

    .contact-form {
        gap: 20px;
    }

    /* Mobile Navigation */
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--bg-darker);
        border-left: 1px solid var(--border-color);
        padding: 100px 40px;
        transition: var(--transition-smooth);
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 30px;
    }

    .nav-link {
        font-size: 1.1rem;
    }

    /* Toggle active animation */
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}