/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { margin: 0; min-height: 100vh; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
address { font-style: normal; }

/* ── Custom Scrollbar ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #102a43; }
::-webkit-scrollbar-thumb { background: #d4a843; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #b8860b; }

/* ── Navbar ── */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(240, 244, 248, 0);
    backdrop-filter: blur(0px);
    transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}
#navbar.nav-scrolled {
    background: rgba(240, 244, 248, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 20px rgba(16, 42, 67, 0.08);
}
.nav-link {
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4a843;
    transition: width 0.3s ease;
}
.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* ── Buttons ── */
.btn-navy {
    background: #102a43;
    color: #f0f4f8;
    border-radius: 9999px;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}
.btn-navy:hover {
    background: #243b53;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 42, 67, 0.3);
}
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #d4a843;
    color: #102a43;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 9999px;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}
.btn-gold:hover {
    background: #e8c24e;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 168, 67, 0.4);
}
.btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #f0f4f8;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 9999px;
    border: 2px solid rgba(240, 244, 248, 0.4);
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}
.btn-outline-light:hover {
    background: rgba(240, 244, 248, 0.1);
    border-color: rgba(240, 244, 248, 0.8);
    transform: translateY(-2px);
}

/* ── Badges ── */
.badge-gold {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(212, 168, 67, 0.12);
    color: #b8860b;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 9999px;
    border: 1px solid rgba(212, 168, 67, 0.25);
}

/* ── Section Layout ── */
.section {
    padding: 100px 0;
}
.section-dark {
    background: #102a43;
}
.section-gradient {
    background: linear-gradient(180deg, #f0f4f8 0%, #e2eaf3 100%);
}
.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: #102a43;
    margin-bottom: 1.25rem;
}
.section-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #486581;
    margin-bottom: 1rem;
}

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('https://images.pexels.com/photos/6268/restaurant-coffee-espresso-professional.jpg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center center / cover no-repeat;
    overflow: hidden;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 26, 46, 0.92) 0%,
        rgba(16, 42, 67, 0.85) 50%,
        rgba(36, 59, 83, 0.80) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 1.5rem;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 168, 67, 0.15);
    color: #f2db8c;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 9999px;
    border: 1px solid rgba(212, 168, 67, 0.3);
    margin-bottom: 2rem;
    backdrop-filter: blur(8px);
}
.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    color: #f0f4f8;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.75;
    color: #9fb3c8;
    max-width: 580px;
    margin: 0 auto 2.5rem;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
}
.hero-stat {
    text-align: center;
}
.hero-stat-number {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: #f0f4f8;
    line-height: 1;
}
.hero-stat-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #829ab1;
    margin-top: 4px;
}
.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(143, 179, 200, 0.3);
}
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: #829ab1;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-8px); }
    60% { transform: translateX(-50%) translateY(-4px); }
}

/* ── Gallery Grid ── */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    gap: 1rem;
    height: 520px;
}
.gallery-img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(16, 42, 67, 0.12);
}
.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-img:hover img {
    transform: scale(1.05);
}
.gallery-img-1 {
    grid-row: 1 / 3;
    grid-column: 1;
}
.gallery-img-2 {
    grid-column: 2;
}
.gallery-img-3 {
    grid-column: 2;
}

/* ── Feature Mini ── */
.feature-mini {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f0f4f8;
    padding: 10px 18px;
    border-radius: 9999px;
    border: 1px solid #d9e2ec;
}
.feature-mini-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(212, 168, 67, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b8860b;
}
.feature-mini-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: #243b53;
}

/* ── Menu Cards ── */
.menu-card {
    background: #1a3d62;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    border: 1px solid rgba(143, 179, 200, 0.1);
}
.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(10, 26, 46, 0.4);
}
.menu-card-img {
    height: 200px;
    overflow: hidden;
}
.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.menu-card:hover .menu-card-img img {
    transform: scale(1.08);
}
.menu-card-body {
    padding: 1.5rem;
}
.menu-card-category {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #d4a843;
    margin-bottom: 0.5rem;
}
.menu-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #f0f4f8;
    margin-bottom: 0.5rem;
}
.menu-card-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #9fb3c8;
}

/* ── Atmosphere Images ── */
.atmosphere-images {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    height: 480px;
}
.atm-img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(16, 42, 67, 0.12);
}
.atm-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.atm-img:hover img {
    transform: scale(1.05);
}
.atm-img-1 {
    grid-row: 1 / 3;
}

/* ── Check Items ── */
.check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #486581;
}

/* ── Info Cards ── */
.info-card {
    background: #f0f4f8;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #d9e2ec;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(16, 42, 67, 0.1);
}
.info-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(212, 168, 67, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b8860b;
    margin-bottom: 1rem;
}
.info-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #102a43;
    margin-bottom: 0.5rem;
}
.info-card-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #486581;
}
.info-card-note {
    font-size: 0.8rem;
    color: #829ab1;
    margin-top: 0.5rem;
    font-style: italic;
}

/* ── Contact Form ── */
.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #9fb3c8;
    margin-bottom: 0.4rem;
    letter-spacing: 0.02em;
}
.form-input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1.5px solid rgba(143, 179, 200, 0.3);
    background: rgba(255, 255, 255, 0.05);
    color: #f0f4f8;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}
.form-input::placeholder {
    color: #627d98;
}
.form-input:focus {
    border-color: #d4a843;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.15);
}
.form-textarea {
    resize: vertical;
    min-height: 120px;
}
.form-success {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 1rem;
    padding: 12px 16px;
    border-radius: 10px;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.25);
    color: #4ade80;
    font-size: 0.9rem;
    font-weight: 500;
}

/* ── Footer ── */
.footer {
    background: #0a1a2e;
    padding: 0 0 2rem;
}

/* ── Reveal Animations ── */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Default state for revealable elements — visible by default (no JS required) */
.reveal {
    opacity: 1;
    transform: translateY(0);
}

/* Progressive enhancement: add animation only when JS runs and user prefers motion */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Mobile Menu ── */
.mobile-menu {
    max-height: 0;
}
.mobile-menu.open {
    max-height: 400px;
}
.mobile-nav-link {
    display: block;
    padding: 8px 0;
}

/* ── Responsive ── */
@media (max-width: 767px) {
    .section { padding: 70px 0; }
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
    }
    .gallery-img-1 { grid-row: auto; }
    .gallery-img { height: 250px; }
    .atmosphere-images {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
    }
    .atm-img-1 { grid-row: auto; }
    .atm-img { height: 220px; }
    .hero-stats { gap: 1.5rem; }
    .hero-stat-number { font-size: 1.5rem; }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        height: 450px;
    }
    .gallery-img-1 { grid-row: 1 / 3; }
}
