/* ─── Base & Typography ─── */
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    overflow-x: hidden;
}

::selection {
    background: #be2644;
    color: #fff;
}

/* ─── Scrollbar ─── */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #FDF8F5;
}
::-webkit-scrollbar-thumb {
    background: #be2644;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #9f1a35;
}

/* ─── Navbar ─── */
#navbar {
    background: rgba(253, 248, 245, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(190, 38, 68, 0.08);
}

#navbar.scrolled {
    background: rgba(253, 248, 245, 0.95);
    box-shadow: 0 1px 20px rgba(63, 12, 22, 0.08);
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #be2644;
    transition: width 0.3s ease;
}

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

/* ─── Hero ─── */
.hero-eyebrow {
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
}

.hero-headline {
    animation: fadeUp 0.8s ease 0.15s forwards;
    opacity: 0;
}

.hero-subheadline {
    animation: fadeUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

.hero-ctas {
    animation: fadeUp 0.8s ease 0.45s forwards;
    opacity: 0;
}

.scroll-indicator {
    animation: fadeUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

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

@keyframes scrollDot {
    0% { top: -12px; }
    100% { top: 48px; }
}

.scroll-dot {
    animation: scrollDot 1.4s ease-in-out infinite;
}

/* ─── Buttons ─── */
.btn-primary {
    box-shadow: 0 4px 14px rgba(190, 38, 68, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(190, 38, 68, 0.4);
}

.btn-secondary {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.btn-secondary:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* ─── Section Dividers ─── */
.divider-line {
    height: 1px;
    background: linear-gradient(to right, transparent, #be2644 20%, #be2644 80%, transparent);
    opacity: 0.2;
}

/* ─── Section Headers ─── */
.section-eyebrow {
    animation: fadeIn 0.6s ease forwards;
}

.section-title {
    animation: fadeIn 0.6s ease 0.1s forwards;
    opacity: 0;
}

.section-subtitle {
    animation: fadeIn 0.6s ease 0.2s forwards;
    opacity: 0;
}

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

/* ─── Menu Cards ─── */
.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

.menu-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(63, 12, 22, 0.06);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(63, 12, 22, 0.12);
}

.menu-card-image {
    overflow: hidden;
    height: 220px;
}

.menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.menu-card:hover .menu-card-image img {
    transform: scale(1.05);
}

.menu-card-content {
    padding: 1.75rem;
}

.menu-card-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #be2644;
    margin-bottom: 0.5rem;
}

.menu-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #3f0c16;
    margin-bottom: 0.75rem;
}

.menu-card-desc {
    font-size: 0.9rem;
    color: #741e32;
    opacity: 0.65;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.menu-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-card-list li {
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.85rem;
    color: #741e32;
    opacity: 0.8;
    line-height: 1.7;
}

.menu-card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 6px;
    background: #be2644;
    border-radius: 50%;
}

.menu-note {
    font-style: italic;
}

/* ─── About Section ─── */
.about-eyebrow {
    animation: fadeRight 0.6s ease forwards;
    opacity: 0;
}

.about-title {
    animation: fadeRight 0.6s ease 0.1s forwards;
    opacity: 0;
}

.about-body p {
    animation: fadeRight 0.6s ease 0.2s forwards;
    opacity: 0;
}

.about-body p:nth-child(2) { animation-delay: 0.3s; }
.about-body p:nth-child(3) { animation-delay: 0.4s; }

@keyframes fadeRight {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

.about-image-wrapper {
    position: relative;
}

.about-image-frame {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.about-image-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.about-image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border: 3px solid rgba(190, 38, 68, 0.3);
    border-radius: 20px;
    z-index: -1;
}

/* ─── Visit Cards ─── */
.visit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.visit-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 12px rgba(63, 12, 22, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.visit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(63, 12, 22, 0.1);
}

.visit-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #be2644, #9f1a35);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: #fff;
}

.visit-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #3f0c16;
    margin-bottom: 0.75rem;
}

.visit-card-text {
    font-size: 0.95rem;
    color: #741e32;
    line-height: 1.8;
    opacity: 0.8;
}

/* ─── Map ─── */
.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(63, 12, 22, 0.1);
}

.map-container iframe {
    display: block;
}

/* ─── CTA Section ─── */
.cta-title {
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
}

.cta-subtitle {
    animation: fadeUp 0.8s ease 0.15s forwards;
    opacity: 0;
}

.btn-cta-primary {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-cta-primary:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* ─── Footer ─── */
.footer-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.1) 20%, rgba(255,255,255,0.1) 80%, transparent);
}

/* ─── Mobile Menu ─── */
#mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

/* ─── Scroll Reveal (JS-triggered) ─── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ─── Responsive ─── */
@media (max-width: 767px) {
    .visit-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image-accent {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
