/* ===== CSS Variables ===== */
:root {
    --blue-900: #0a1628;
    --blue-800: #0f2345;
    --blue-700: #143266;
    --blue-600: #1a4b8c;
    --blue-500: #1e5fad;
    --blue-400: #3b82c4;
    --blue-300: #6ba3d6;
    --blue-200: #a3c9e8;
    --blue-100: #d4e6f5;
    --blue-50: #eef5fb;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gold: #d4a843;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.15);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

/* ===== Section Headers ===== */
.section__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.section__label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue-500);
    margin-bottom: 12px;
}

.section__title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--blue-900);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section__desc {
    font-size: 1.05rem;
    color: var(--gray-500);
    line-height: 1.8;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
}

.btn--primary {
    background: var(--blue-600);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(26, 75, 140, 0.35);
}

.btn--primary:hover {
    background: var(--blue-700);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(26, 75, 140, 0.45);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}

.btn--outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
}

.btn--white {
    background: var(--white);
    color: var(--blue-700);
    font-size: 1.1rem;
    padding: 16px 40px;
    box-shadow: var(--shadow-lg);
}

.btn--white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

/* ===== Header / Navigation ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition);
    background: transparent;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 20px rgba(0,0,0,0.08);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    transition: color var(--transition);
}

.header.scrolled .nav__logo {
    color: var(--blue-900);
}

.nav__logo img {
    border-radius: 50%;
    object-fit: cover;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav__link {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.3px;
    position: relative;
    padding: 4px 0;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue-400);
    transition: width var(--transition);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.nav__link:hover,
.nav__link.active {
    color: var(--white);
}

.header.scrolled .nav__link {
    color: var(--gray-600);
}

.header.scrolled .nav__link:hover,
.header.scrolled .nav__link.active {
    color: var(--blue-600);
}

.header.scrolled .nav__link::after {
    background: var(--blue-600);
}

.nav__ctas {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav__cta {
    padding: 10px 24px;
    background: var(--blue-600);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all var(--transition);
}

.nav__cta:hover {
    background: var(--blue-700);
    transform: translateY(-1px);
}

.nav__cta--order {
    background: var(--gold);
    color: var(--blue-900);
}

.nav__cta--order:hover {
    background: #c49a35;
    color: var(--blue-900);
}

.nav__mobile-ctas {
    display: none;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav__toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition);
    border-radius: 2px;
}

.header.scrolled .nav__toggle span {
    background: var(--blue-900);
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('images/WhatsApp%20Image%202026-05-11%20at%2015.06.32%20(1).jpeg') center/cover no-repeat;
    color: var(--white);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 22, 40, 0.88) 0%,
        rgba(20, 50, 102, 0.75) 50%,
        rgba(26, 75, 140, 0.65) 100%
    );
}

.hero__content {
    position: relative;
    text-align: center;
    max-width: 720px;
    padding: 120px 24px 80px;
}

.hero__subtitle {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--blue-200);
    margin-bottom: 16px;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
}

.hero__tagline {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--blue-200);
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.hero__desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.hero__scroll a {
    color: rgba(255,255,255,0.5);
    transition: color var(--transition);
}

.hero__scroll a:hover {
    color: var(--white);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== About ===== */
.about {
    background: var(--gray-50);
}

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

.about__images {
    position: relative;
}

.about__img {
    border-radius: var(--radius-lg);
    object-fit: cover;
}

.about__img--main {
    width: 100%;
    height: 440px;
    box-shadow: var(--shadow-lg);
}

.about__img--secondary {
    position: absolute;
    bottom: -40px;
    right: -30px;
    width: 260px;
    height: 200px;
    border: 5px solid var(--white);
    box-shadow: var(--shadow-xl);
    border-radius: var(--radius);
}

.about__content .section__label {
    display: block;
    margin-bottom: 8px;
}

.about__content .section__title {
    margin-bottom: 24px;
}

.about__content p {
    color: var(--gray-500);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about__features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.about__feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.about__feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue-50);
    color: var(--blue-600);
    border-radius: 12px;
}

.about__feature strong {
    display: block;
    font-size: 0.95rem;
    color: var(--blue-900);
    margin-bottom: 2px;
}

.about__feature p {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin: 0;
}

/* ===== Dishes ===== */
.dishes {
    background: var(--blue-50);
}

.dishes__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.dish-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.dish-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.dish-card__img {
    overflow: hidden;
    height: 220px;
}

.dish-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dish-card:hover .dish-card__img img {
    transform: scale(1.08);
}

.dish-card__content {
    padding: 20px;
}

.dish-card__content h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--blue-900);
    margin-bottom: 8px;
}

.dish-card__content p {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ===== CTA Banner ===== */
.cta {
    position: relative;
    padding: 80px 0;
    background: url('images/WhatsApp%20Image%202026-05-11%20at%2015.06.32%20(2).jpeg') center/cover no-repeat fixed;
    color: var(--white);
    text-align: center;
}

.cta__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.9), rgba(20, 50, 102, 0.85));
}

.cta__content {
    position: relative;
}

.cta__content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.cta__content p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.cta__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* ===== Contact ===== */
.contact {
    background: var(--white);
}

.contact__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.contact__card {
    text-align: center;
    padding: 40px 24px;
    border-radius: var(--radius);
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    transition: all var(--transition);
}

.contact__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--blue-100);
}

.contact__icon,
.contact__card a.contact__icon,
.contact__card a.contact__icon:hover {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue-600);
    color: var(--white);
    border-radius: 50%;
    margin: 0 auto 20px;
}

.contact__card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--blue-900);
    margin-bottom: 12px;
}

.contact__card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 4px;
}

.contact__card a {
    color: var(--blue-600);
    font-weight: 600;
}

.contact__card a:hover {
    color: var(--blue-700);
}

.contact__socials {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 8px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--blue-600);
    color: var(--white);
    transition: all var(--transition);
}

.social-link:hover {
    background: var(--blue-700);
    transform: translateY(-2px);
}

/* ===== Footer ===== */
.footer {
    background: var(--blue-900);
    padding: 32px 0;
    color: rgba(255,255,255,0.6);
}

.footer__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--white);
}

.footer__brand img {
    border-radius: 50%;
    object-fit: cover;
}

.footer__copy {
    font-size: 0.85rem;
}

/* ===== Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .dishes__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact__grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }

    .nav__links,
    .nav__ctas {
        display: none;
    }

    .nav__toggle {
        display: flex;
    }

    /* Mobile menu */
    .nav__links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 32px 24px;
        gap: 24px;
        box-shadow: var(--shadow-lg);
        z-index: 999;
    }

    .nav__links.open .nav__link {
        color: var(--gray-700);
        font-size: 1.05rem;
    }

    .nav__links.open .nav__link:hover,
    .nav__links.open .nav__link.active {
        color: var(--blue-600);
    }

    .nav__links.open .nav__mobile-ctas {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding-top: 8px;
    }

    .nav__links.open .nav__mobile-ctas a {
        display: block;
        text-align: center;
        padding: 14px 24px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 0.95rem;
    }

    .nav__mobile-book {
        background: var(--blue-600);
        color: var(--white);
    }

    .nav__mobile-order {
        background: var(--gold);
        color: var(--blue-900);
    }

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

    .about__img--secondary {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        height: 240px;
        border: none;
        margin-top: 16px;
    }

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

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

    .footer__content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .hero__content {
        padding: 140px 24px 100px;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 2rem;
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}
