/* Food Heaven: Gourmet Magazine Redesign */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Montserrat:wght@300;400;600;700&display=swap');

:root {
    --bg-color: #0a0a0a;
    /* Deep Matte Black */
    --surface: #121212;
    /* Onyx Gray */
    --text-main: #e5e5e5;
    /* Off-White */
    --text-muted: #888888;
    --accent-color: #d4af37;
    /* Champagne Gold */
    --line-color: #252525;
    --section-padding: 100px 8%;
    --transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
}

h1,
h2,
h3,
.nav-logo {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition);
}

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

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease;
}

.spinner {
    width: 60px;
    height: 60px;
    border-bottom: 2px solid var(--accent-color);
    border-radius: 50%;
    animation: rotate 1s linear infinite;
}

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

/* Header */
header {
    height: 100px;
    border-bottom: 1px solid var(--line-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8%;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    z-index: 999;
}

.nav-logo {
    font-size: 2.2rem;
    letter-spacing: -1px;
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #777;
}

.nav-links a:hover {
    color: var(--accent-color);
}

/* Hero - Magazine Style */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 8%;
    border-bottom: 1px solid var(--line-color);
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    gap: 4rem;
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-text h1 {
    font-size: clamp(3rem, 8vw, 6.5rem);
    line-height: 1;
    margin-bottom: 2rem;
}

.hero-img-wrap {
    position: relative;
    overflow: hidden;
    height: 80vh;
}

.hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.1);
    transition: transform 10s ease;
}

.hero:hover .hero-img-wrap img {
    transform: scale(1.1);
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.btn-solid {
    padding: 1.2rem 2.8rem;
    background: var(--accent-color);
    color: var(--bg-color);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border: none;
    border-radius: 12px;
    /* Premium Squared Round */
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.btn-solid:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
    background: #f1c40f;
    /* Brighter gold hover */
}

.btn-outline {
    padding: 1.2rem 2.8rem;
    border: 1.5px solid var(--accent-color);
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    background: transparent;
    border-radius: 12px;
    /* Premium Squared Round */
}

.btn-outline:hover {
    background: var(--accent-color);
    color: var(--bg-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

/* Menu Section - Asymmetric */
.menu-section {
    padding: var(--section-padding);
}

.menu-item {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 100px;
    align-items: center;
}

.menu-item:nth-child(even) {
    direction: rtl;
}

.menu-item:nth-child(even) .menu-info {
    direction: ltr;
}

.menu-img {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.menu-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-info h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.menu-info p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 500px;
}

.menu-price {
    font-family: 'DM Serif Display', serif;
    font-size: 2rem;
    color: var(--accent-color);
}

/* Reservation */
.reservation {
    background: var(--surface);
    padding: var(--section-padding);
    text-align: center;
}

.res-form {
    max-width: 900px;
    margin: 50px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
}

.res-form input,
.res-form select {
    padding: 1.2rem;
    border: 1px solid var(--line-color);
    background: var(--bg-color);
    color: var(--text-main);
    font-family: inherit;
    border-radius: 10px;
}

.res-form textarea {
    grid-column: span 3;
    padding: 1.2rem;
    border: 1px solid var(--line-color);
    background: var(--bg-color);
    color: var(--text-main);
    height: 150px;
    border-radius: 10px;
}

.res-btn {
    grid-column: span 3;
    background: var(--accent-color);
    color: var(--bg-color);
    padding: 1.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: none;
    border-radius: 12px;
    /* Premium Squared Round */
    cursor: pointer;
    transition: var(--transition);
}

.res-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.25);
}

/* Back To Top & WhatsApp */
#backToTop {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: var(--accent-color);
    color: var(--bg-color);
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 10px;
    /* Squared Round Utility Button */
    display: none;
    cursor: pointer;
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp {
    position: fixed;
    bottom: 40px;
    left: 40px;
    background: #25d366;
    color: white;
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    z-index: 1000;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.2);
    transition: var(--transition);
}

.whatsapp:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

/* Footer */
footer {
    padding: 100px 8% 50px;
    border-top: 1px solid var(--line-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5rem;
}

.footer-logo {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.footer-col h4 {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.footer-col p,
.footer-col a {
    display: block;
    margin-bottom: 0.8rem;
    color: #666;
}

.copyright {
    margin-top: 80px;
    text-align: center;
    font-size: 0.8rem;
    color: #999;
}

.copyright a {
    color: var(--accent-color);
    font-weight: 700;
}

/* Responsive */
@media (max-width: 900px) {

    .hero-layout,
    .menu-item {
        grid-template-columns: 1fr;
    }

    .res-form {
        grid-template-columns: 1fr;
    }

    .res-form textarea,
    .res-btn {
        grid-column: span 1;
    }

    .hero-img-wrap {
        height: 50vh;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}