/* diplomatic.bar - Luxury Gold Cocktail Bar */
/* Palette: #1a1a1a (bg), #c9a84c (gold), #e8e2d4 (cream), #242424 (surface), #8b6914 (accent), #3d3d3d (rule) */

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

html {
    scroll-behavior: smooth;
}

body {
    background: #1a1a1a;
    color: #e8e2d4;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   GOLD RULE - Decorative horizontal line
   ============================================ */

.gold-rule {
    width: 60px;
    height: 1px;
    background: #c9a84c;
    margin: 1.5rem auto;
    position: relative;
}

.gold-rule.short-rule {
    width: 40px;
}

.gold-rule::before,
.gold-rule::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 4px;
    height: 4px;
    background: #c9a84c;
    border-radius: 50%;
    transform: translateY(-50%);
}

.gold-rule::before {
    left: -8px;
}

.gold-rule::after {
    right: -8px;
}

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

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

.hero-frame {
    position: relative;
    padding: 3px;
}

.hero-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid #c9a84c;
    opacity: 0;
    animation: frameReveal 1.5s ease-out 0.3s forwards;
}

@keyframes frameReveal {
    0% {
        opacity: 0;
        inset: 20px;
    }
    100% {
        opacity: 1;
        inset: 0;
    }
}

.hero-frame-inner {
    padding: 5rem 4rem;
    text-align: center;
    max-width: 600px;
}

.martini-icon {
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 1s ease-out 0.8s forwards;
}

.martini-icon svg {
    display: inline-block;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    color: #c9a84c;
    letter-spacing: 0.06em;
    opacity: 0;
    animation: fadeUp 1.2s ease-out 0.5s forwards;
}

.hero-rule {
    opacity: 0;
    animation: lineExtend 1s ease-out 1s forwards;
}

@keyframes lineExtend {
    0% {
        opacity: 0;
        width: 0;
    }
    100% {
        opacity: 1;
        width: 60px;
    }
}

.tagline {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 0.95rem;
    color: #e8e2d4;
    letter-spacing: 0.08em;
    opacity: 0;
    animation: fadeUp 1s ease-out 1.3s forwards;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(12px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.menu-section {
    max-width: 600px;
    margin: 0 auto;
    padding: 100px 1.5rem;
}

.section-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #c9a84c;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.section-heading::after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: #3d3d3d;
    margin: 1rem auto 0;
}

.menu-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.menu-item {
    padding: 1.2rem 0;
    border-bottom: 1px solid #3d3d3d;
}

.menu-item:first-child {
    border-top: 1px solid #3d3d3d;
}

.item-header {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 0.35rem;
}

.item-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: #e8e2d4;
    white-space: nowrap;
    flex-shrink: 0;
}

.leader-dots {
    flex: 1;
    min-width: 20px;
    height: 8px;
    background: radial-gradient(circle, #c9a84c 1px, transparent 1px);
    background-size: 8px 8px;
    background-position: bottom left;
    background-repeat: repeat-x;
    position: relative;
    top: -2px;
}

.item-desc {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 0.82rem;
    color: #8b6914;
    letter-spacing: 0.02em;
    line-height: 1.5;
}

/* ============================================
   FEATURE PANEL
   ============================================ */

.feature-panel {
    background: #242424;
    padding: 120px 1.5rem;
    position: relative;
}

.feature-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, #c9a84c, transparent);
}

.feature-panel--alt {
    background: #1a1a1a;
    border-top: 1px solid #3d3d3d;
    border-bottom: 1px solid #3d3d3d;
}

.feature-panel--alt::before {
    background: linear-gradient(to bottom, #3d3d3d, transparent);
}

.feature-content {
    max-width: 540px;
    margin: 0 auto;
    text-align: center;
}

.feature-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: #c9a84c;
    margin-bottom: 1.8rem;
    letter-spacing: 0.04em;
}

.feature-body {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 0.95rem;
    color: #e8e2d4;
    line-height: 2;
    margin-bottom: 2rem;
}

/* ============================================
   RESERVATIONS
   ============================================ */

.reservations-section {
    padding: 120px 1.5rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.reservations-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: #c9a84c;
    margin: 1.5rem 0 2.5rem;
    letter-spacing: 0.05em;
}

.reservations-heading em {
    font-style: italic;
}

.details-list {
    margin-bottom: 2.5rem;
}

.detail-row {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 1.2rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.detail-label {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.65rem;
    color: #8b6914;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    min-width: 60px;
    text-align: right;
}

.detail-value {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 0.88rem;
    color: #e8e2d4;
    min-width: 200px;
    text-align: left;
}

.closing-line {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 700;
    font-size: 1rem;
    color: #c9a84c;
    margin-top: 2.5rem;
    margin-bottom: 2rem;
    letter-spacing: 0.03em;
}

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

.site-footer {
    padding: 3rem 1.5rem;
    text-align: center;
    border-top: 1px solid #3d3d3d;
}

.footer-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.65rem;
    color: #3d3d3d;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* ============================================
   SCROLL REVEAL ANIMATION
   ============================================ */

.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }
.reveal.delay-5 { transition-delay: 0.5s; }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 640px) {
    .hero-frame-inner {
        padding: 3rem 2rem;
    }

    .menu-section {
        padding: 80px 1.25rem;
    }

    .feature-panel {
        padding: 80px 1.25rem;
    }

    .item-header {
        flex-wrap: wrap;
    }

    .leader-dots {
        display: none;
    }

    .item-desc {
        margin-top: 0.15rem;
    }

    .detail-row {
        flex-direction: column;
        gap: 0.2rem;
        margin-bottom: 1rem;
    }

    .detail-label {
        text-align: center;
        min-width: auto;
    }

    .detail-value {
        text-align: center;
        min-width: auto;
    }

    .reservations-section {
        padding: 80px 1.25rem;
    }
}
