/* ============================================
   diplomacy.bar — Speakeasy Embassy
   Art-Deco Immersive Experience
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --diplomatic-noir: #0D0B14;
    --embassy-charcoal: #1A1724;
    --embassy-gold: #C9963A;
    --treaty-amber: #D4A44C;
    --parchment-cream: #E8DCC8;
    --aged-silver: #B8AFA0;
    --muted-pewter: #6B6360;
    --champagne-rose: #D4A07A;
    --bordeaux: #5C1A2A;

    --font-display: 'Poiret One', sans-serif;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Libre Franklin', sans-serif;
    --font-accent: 'Space Mono', monospace;

    --spring-ease: cubic-bezier(0.34, 1.56, 0.64, 1);
    --gentle-ease: cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--diplomatic-noir);
    color: var(--aged-silver);
    font-family: var(--font-body);
    font-weight: 300;
    font-size: clamp(0.95rem, 1.1vw, 1.15rem);
    line-height: 1.75;
    letter-spacing: 0.02em;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- Chevron Texture Overlay --- */
#chevron-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cpath d='M0 36 L24 12 L48 36' fill='none' stroke='%23C9963A' stroke-width='0.5'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 48px 48px;
}

/* --- Gold Leaf Particles --- */
#gold-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 100;
    opacity: 0;
    transition: opacity 1s var(--gentle-ease);
}

#gold-particles.active {
    opacity: 1;
}

.particle {
    position: absolute;
    width: 3px;
    height: 5px;
    background: var(--embassy-gold);
    opacity: 0;
    animation: particleFall linear infinite;
}

.particle:nth-child(1) { left: 5%; animation-duration: 12s; animation-delay: 0s; opacity: 0.6; }
.particle:nth-child(2) { left: 12%; animation-duration: 16s; animation-delay: 2s; opacity: 0.4; background: var(--treaty-amber); }
.particle:nth-child(3) { left: 20%; animation-duration: 10s; animation-delay: 4s; opacity: 0.5; }
.particle:nth-child(4) { left: 28%; animation-duration: 18s; animation-delay: 1s; opacity: 0.3; background: var(--treaty-amber); }
.particle:nth-child(5) { left: 35%; animation-duration: 14s; animation-delay: 3s; opacity: 0.5; }
.particle:nth-child(6) { left: 43%; animation-duration: 11s; animation-delay: 5s; opacity: 0.4; background: var(--treaty-amber); }
.particle:nth-child(7) { left: 50%; animation-duration: 17s; animation-delay: 0.5s; opacity: 0.6; }
.particle:nth-child(8) { left: 58%; animation-duration: 13s; animation-delay: 2.5s; opacity: 0.3; background: var(--treaty-amber); }
.particle:nth-child(9) { left: 65%; animation-duration: 15s; animation-delay: 4.5s; opacity: 0.5; }
.particle:nth-child(10) { left: 72%; animation-duration: 9s; animation-delay: 1.5s; opacity: 0.4; background: var(--treaty-amber); }
.particle:nth-child(11) { left: 78%; animation-duration: 19s; animation-delay: 3.5s; opacity: 0.6; }
.particle:nth-child(12) { left: 84%; animation-duration: 12s; animation-delay: 0.2s; opacity: 0.3; }
.particle:nth-child(13) { left: 90%; animation-duration: 16s; animation-delay: 2.8s; opacity: 0.5; background: var(--treaty-amber); }
.particle:nth-child(14) { left: 95%; animation-duration: 11s; animation-delay: 5.2s; opacity: 0.4; }
.particle:nth-child(15) { left: 8%; animation-duration: 20s; animation-delay: 6s; opacity: 0.35; background: var(--treaty-amber); }
.particle:nth-child(16) { left: 38%; animation-duration: 14s; animation-delay: 7s; opacity: 0.45; }
.particle:nth-child(17) { left: 62%; animation-duration: 18s; animation-delay: 1.8s; opacity: 0.35; background: var(--treaty-amber); }
.particle:nth-child(18) { left: 88%; animation-duration: 13s; animation-delay: 4.2s; opacity: 0.5; }

@keyframes particleFall {
    0% {
        transform: translateY(-10px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: var(--particle-opacity, 0.5);
    }
    90% {
        opacity: var(--particle-opacity, 0.5);
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* --- Navigation --- */
#nav-toggle {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 1000;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-lines {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-end;
}

.nav-line {
    display: block;
    height: 1px;
    background: var(--embassy-gold);
    transition: all 0.4s var(--gentle-ease);
}

.nav-line-1 { width: 28px; }
.nav-line-2 { width: 22px; }
.nav-line-3 { width: 16px; }

#nav-toggle:hover .nav-line {
    background: var(--treaty-amber);
}

#nav-toggle.active .nav-line-1 {
    width: 28px;
    transform: rotate(45deg) translateY(4px) translateX(4px);
}

#nav-toggle.active .nav-line-2 {
    opacity: 0;
    width: 0;
}

#nav-toggle.active .nav-line-3 {
    width: 28px;
    transform: rotate(-45deg) translateY(-4px) translateX(4px);
}

#nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 11, 20, 0.97);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s var(--gentle-ease);
}

#nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.nav-directory {
    list-style: none;
    text-align: center;
}

.nav-directory li {
    margin: 1.5rem 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s var(--gentle-ease);
}

#nav-overlay.active .nav-directory li {
    opacity: 1;
    transform: translateY(0);
}

#nav-overlay.active .nav-directory li:nth-child(1) { transition-delay: 0.1s; }
#nav-overlay.active .nav-directory li:nth-child(2) { transition-delay: 0.2s; }
#nav-overlay.active .nav-directory li:nth-child(3) { transition-delay: 0.3s; }
#nav-overlay.active .nav-directory li:nth-child(4) { transition-delay: 0.4s; }
#nav-overlay.active .nav-directory li:nth-child(5) { transition-delay: 0.5s; }

.nav-link {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--parchment-cream);
    text-decoration: none;
    transition: color 0.3s var(--gentle-ease);
}

.nav-link:hover {
    color: var(--embassy-gold);
}

/* --- Section Headings --- */
.section-heading {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    letter-spacing: 0.06em;
    color: var(--parchment-cream);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-label {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(201, 150, 58, 0.7);
    margin-bottom: 0.75rem;
}

/* ============================================
   SECTION 1: THE FOYER
   ============================================ */
.section-foyer {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    background: radial-gradient(ellipse at center, rgba(201, 150, 58, 0.03) 0%, transparent 60%);
}

.foyer-content {
    text-align: center;
    position: relative;
}

#embassy-crest {
    width: clamp(140px, 20vw, 220px);
    height: auto;
    margin: 0 auto;
    display: block;
}

.crest-chevron,
.monogram-d,
.monogram-b {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}

.crest-chevron-1 { animation: drawPath 0.8s var(--gentle-ease) 0.4s forwards; }
.crest-chevron-2 { animation: drawPath 0.8s var(--gentle-ease) 0.6s forwards; }
.crest-chevron-3 { animation: drawPath 0.8s var(--gentle-ease) 0.8s forwards; }
.crest-chevron-4 { animation: drawPath 0.6s var(--gentle-ease) 1.0s forwards; }
.crest-chevron-5 { animation: drawPath 0.6s var(--gentle-ease) 1.2s forwards; }
.monogram-d { animation: drawPath 0.8s var(--gentle-ease) 0.8s forwards; }
.monogram-b { animation: drawPath 0.8s var(--gentle-ease) 1.0s forwards; }

@keyframes drawPath {
    to {
        stroke-dashoffset: 0;
    }
}

#crest-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 150, 58, 0.1) 0%, transparent 70%);
    opacity: 0;
    animation: glowPulse 1s var(--gentle-ease) 1.6s forwards;
    pointer-events: none;
}

@keyframes glowPulse {
    0% { opacity: 0; transform: translate(-50%, -60%) scale(0.5); }
    50% { opacity: 1; }
    100% { opacity: 0.6; transform: translate(-50%, -60%) scale(1); }
}

.tagline {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    color: var(--parchment-cream);
    letter-spacing: 0.06em;
    margin-top: 2rem;
    opacity: 0;
    animation: fadeInUp 1s var(--gentle-ease) 2.4s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.foyer-rule {
    width: 0;
    height: 0.5px;
    background: rgba(201, 150, 58, 0.5);
    margin: 2rem auto;
    animation: drawRule 0.8s var(--gentle-ease) 2.8s forwards;
}

@keyframes drawRule {
    to {
        width: 60%;
    }
}

.scroll-chevron {
    margin-top: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.6s var(--gentle-ease) 3.2s forwards;
}

.scroll-chevron svg {
    width: 24px;
    height: 14px;
    animation: pulseChevron 2s ease-in-out infinite 3.8s;
}

@keyframes pulseChevron {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 0.7; transform: translateY(4px); }
}

/* ============================================
   FAN DIVIDERS
   ============================================ */
.fan-divider {
    position: relative;
    height: 80px;
    z-index: 2;
    overflow: hidden;
}

.fan-container {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 100px;
}

.fan-ray {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 1px;
    height: 80px;
    background: var(--embassy-gold);
    opacity: 0.4;
    transform-origin: bottom center;
    transform: rotate(calc((var(--ray-index) - 5.5) * 15deg)) scaleY(0);
    transition: transform 0.6s var(--spring-ease);
}

.fan-divider.animated .fan-ray {
    transform: rotate(calc((var(--ray-index) - 5.5) * 15deg)) scaleY(1);
    transition-delay: calc(var(--ray-index) * 50ms);
}

/* ============================================
   SECTION 2: THE GALLERY CORRIDOR
   ============================================ */
.section-gallery {
    position: relative;
    z-index: 2;
    padding: 6rem 4rem;
    background: linear-gradient(135deg, var(--diplomatic-noir) 0%, var(--embassy-charcoal) 50%, var(--diplomatic-noir) 100%);
}

.bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 2px;
    max-width: 1100px;
    margin: 0 auto;
}

.bento-panel {
    position: relative;
    background: rgba(26, 23, 36, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.6s var(--gentle-ease), transform 0.6s var(--spring-ease);
}

.bento-panel-left {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
    min-height: 320px;
    transform: translateX(-60px);
}

.bento-panel-right {
    grid-row: 1 / 2;
    grid-column: 2 / 2;
    min-height: 320px;
    transform: translateX(60px);
}

.bento-panel-bottom {
    grid-row: 2 / 3;
    grid-column: 1 / 3;
    min-height: 240px;
    transform: translateY(60px);
}

.bento-panel.revealed {
    opacity: 1;
    transform: translate(0, 0);
}

.panel-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid var(--embassy-gold);
    opacity: 0;
    transition: opacity 0.4s var(--gentle-ease) 0.3s;
}

.bento-panel.revealed .panel-border {
    opacity: 1;
}

.panel-content {
    padding: 2.5rem;
    opacity: 0;
    transition: opacity 0.5s var(--gentle-ease) 0.5s;
}

.bento-panel.revealed .panel-content {
    opacity: 1;
}

.panel-content h3 {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: clamp(1.3rem, 2.2vw, 1.8rem);
    color: var(--parchment-cream);
    letter-spacing: 0.04em;
    margin-bottom: 1rem;
}

.panel-content p {
    color: var(--aged-silver);
    line-height: 1.75;
}

/* ============================================
   SECTION 3: THE NEGOTIATION TABLE
   ============================================ */
.section-negotiation {
    position: relative;
    z-index: 2;
    padding: 6rem 2rem;
    background: var(--diplomatic-noir);
}

.negotiation-seal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 2px solid var(--bordeaux);
    opacity: 0.04;
    animation: sealRotate 120s linear infinite, sealPulse 8s ease-in-out infinite;
}

.negotiation-seal::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border-radius: 50%;
    border: 1px solid var(--bordeaux);
}

.negotiation-seal::after {
    content: '';
    position: absolute;
    top: 40px;
    left: 40px;
    right: 40px;
    bottom: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--bordeaux);
    background: radial-gradient(circle, rgba(92, 26, 42, 0.1) 0%, transparent 70%);
}

@keyframes sealRotate {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes sealPulse {
    0%, 100% { scale: 1; }
    50% { scale: 1.02; }
}

.negotiation-column {
    position: relative;
    max-width: 52%;
    margin: 0 auto;
    padding: 0 2rem;
}

.vertical-rule {
    position: absolute;
    top: 0;
    width: 0.5px;
    height: 0;
    background: rgba(201, 150, 58, 0.3);
    transition: height 1.5s var(--gentle-ease);
}

.vertical-rule-left { left: -1rem; }
.vertical-rule-right { right: -1rem; }

.negotiation-column.revealed .vertical-rule {
    height: 100%;
}

.treaty-article {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s var(--gentle-ease), transform 0.4s var(--gentle-ease);
    scroll-margin-top: 4rem;
}

.treaty-article.revealed {
    opacity: 1;
    transform: translateY(0);
}

.article-mark {
    position: absolute;
    left: 0;
    top: 0;
    font-family: var(--font-display);
    font-size: 1.6em;
    color: var(--embassy-gold);
    line-height: 1;
}

.article-number {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    font-style: italic;
    color: var(--parchment-cream);
    letter-spacing: 0.06em;
    margin-bottom: 0.5rem;
}

.treaty-article p {
    color: var(--aged-silver);
    line-height: 1.75;
}

/* ============================================
   SECTION 4: THE BAR
   ============================================ */
.section-bar {
    position: relative;
    z-index: 2;
    height: 100vh;
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--diplomatic-noir) 0%, var(--embassy-charcoal) 50%, var(--diplomatic-noir) 100%);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.section-heading-bar {
    padding: 0 4rem;
    margin-bottom: 2rem;
    flex-shrink: 0;
}

.cocktail-track {
    display: flex;
    gap: 24px;
    padding: 0 4rem;
    overflow-x: auto;
    flex: 1;
    align-items: stretch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.cocktail-track::-webkit-scrollbar {
    display: none;
}

.cocktail-card {
    flex: 0 0 280px;
    background: rgba(26, 23, 36, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(201, 150, 58, 0.4);
    border-radius: 8px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease-out, border-color 0.3s ease-out;
    opacity: 0;
    transform: translateY(30px);
}

.cocktail-card.revealed {
    opacity: 1;
    transform: translateY(0);
    transition: transform 0.3s ease-out, border-color 0.3s ease-out, opacity 0.6s var(--gentle-ease);
}

.cocktail-card:hover {
    transform: scale(1.02);
    border-color: rgba(201, 150, 58, 0.8);
}

.card-glass {
    width: 80px;
    height: 120px;
    margin-bottom: 1.5rem;
}

.card-glass svg {
    width: 100%;
    height: 100%;
}

.glass-line {
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    transition: stroke-dashoffset 1.2s var(--gentle-ease);
}

.cocktail-card.revealed .glass-line {
    stroke-dashoffset: 0;
}

.card-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--embassy-gold);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.75rem;
}

.card-rule {
    width: 40px;
    height: 0.5px;
    background: rgba(201, 150, 58, 0.5);
    margin-bottom: 0.75rem;
}

.card-category {
    font-family: var(--font-accent);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(201, 150, 58, 0.7);
    margin-bottom: 1rem;
}

.card-description {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--aged-silver);
    line-height: 1.7;
}

/* ============================================
   SECTION 5: THE PRIVATE ROOM (FOOTER)
   ============================================ */
.section-private-room {
    position: relative;
    z-index: 2;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--diplomatic-noir);
    padding: 4rem 2rem;
    transition: background 0.5s var(--gentle-ease);
}

.section-private-room.warmed {
    background: radial-gradient(ellipse at center, rgba(212, 164, 76, 0.02) 0%, var(--diplomatic-noir) 60%);
}

.private-room-content {
    text-align: center;
}

#footer-crest {
    width: clamp(100px, 14vw, 160px);
    height: auto;
    margin: 0 auto 2.5rem;
    display: block;
    animation: spinCrest 60s linear infinite;
}

@keyframes spinCrest {
    to { transform: rotate(360deg); }
}

.footer-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 2rem;
}

.footer-line {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--aged-silver);
    line-height: 2.5rem;
}

.footer-rule {
    width: 60px;
    height: 0.5px;
    background: rgba(201, 150, 58, 0.5);
    margin: 1.5rem auto;
}

.footer-copyright {
    font-family: var(--font-accent);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted-pewter);
}

/* ============================================
   DIAGONAL SECTION DIVIDERS
   ============================================ */
.section-gallery::before,
.section-negotiation::before,
.section-bar::before,
.section-private-room::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 80px;
    background: inherit;
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
    z-index: -1;
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    #gold-particles {
        display: none;
    }

    .crest-chevron,
    .monogram-d,
    .monogram-b {
        stroke-dasharray: none;
        stroke-dashoffset: 0;
        animation: none;
    }

    #crest-glow {
        animation: none;
        opacity: 0.6;
    }

    .tagline {
        animation: none;
        opacity: 1;
    }

    .foyer-rule {
        animation: none;
        width: 60%;
    }

    .scroll-chevron {
        animation: none;
        opacity: 0.5;
    }

    .scroll-chevron svg {
        animation: none;
    }

    .bento-panel {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .panel-border {
        opacity: 1;
        transition: none;
    }

    .panel-content {
        opacity: 1;
        transition: none;
    }

    .treaty-article {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .cocktail-card {
        opacity: 1;
        transform: none;
    }

    .fan-ray {
        transition: none;
    }

    .glass-line {
        stroke-dasharray: none;
        stroke-dashoffset: 0;
        transition: none;
    }

    #footer-crest {
        animation: none;
    }

    .negotiation-seal {
        animation: none;
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }

    .bento-panel-left,
    .bento-panel-right,
    .bento-panel-bottom {
        grid-column: 1;
        min-height: 240px;
    }

    .bento-panel-bottom {
        grid-column: 1;
    }

    .negotiation-column {
        max-width: 85%;
    }

    .section-gallery {
        padding: 4rem 2rem;
    }

    .cocktail-track {
        padding: 0 2rem;
    }

    .section-heading-bar {
        padding: 0 2rem;
    }
}

@media (max-width: 600px) {
    .negotiation-column {
        max-width: 95%;
        padding: 0 1rem;
    }

    .cocktail-card {
        flex: 0 0 260px;
    }

    #nav-toggle {
        top: 1.2rem;
        right: 1.2rem;
    }
}
