/* --- FINAL PRO STYLE.CSS --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Manrope:wght@300;400;600&display=swap');

:root {
    --gold: #d4af37;
    --dark: #0f0f0f;
    --card-bg: #161616;
    --text-grey: #a0a0a0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    background-color: var(--dark); 
    color: #fff; 
    font-family: 'Manrope', sans-serif; 
    overflow-x: hidden; 
}

/* TYPOGRAPHY */
h1, h2, h3, .logo-font { font-family: 'Playfair Display', serif; }
.gold-text { color: var(--gold); }

/* HEADER */
header {
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.logo { font-size: 1.8rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; color: var(--gold); }
nav ul { display: flex; gap: 30px; }
nav a { color: #fff; text-decoration: none; font-size: 0.9rem; letter-spacing: 1px; text-transform: uppercase; transition: 0.3s; }
nav a:hover, nav a.active { color: var(--gold); }

.btn-book {
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 10px 25px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: 0.4s;
}
.btn-book:hover { background: var(--gold); color: #000; }

/* HERO - PARALLAX EFFECT */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1544148103-0773bf10d330?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-attachment: fixed; /* Parallax Magic */
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.hero h1 { font-size: 4.5rem; margin-bottom: 15px; line-height: 1.1; }
.hero p { font-size: 1.2rem; max-width: 600px; color: #ddd; margin-bottom: 30px; }

/* SECTIONS */
section { padding: 80px 10%; }
.section-title { text-align: center; font-size: 3rem; margin-bottom: 50px; color: var(--gold); position: relative; display: inline-block; width: 100%; }
.section-title::after {
    content: ''; display: block; width: 60px; height: 3px; background: var(--gold); margin: 15px auto 0;
}

/* MENU - CLASSIC RESTAURANT STYLE */
.menu-category { margin-bottom: 40px; }
.menu-list { max-width: 800px; margin: 0 auto; }
.menu-item { display: flex; justify-content: space-between; margin-bottom: 25px; border-bottom: 1px dotted #333; padding-bottom: 5px; }
.menu-info h3 { font-size: 1.3rem; margin-bottom: 5px; }
.menu-info p { font-size: 0.9rem; color: var(--text-grey); font-style: italic; }
.menu-price { font-size: 1.3rem; color: var(--gold); font-weight: bold; font-family: 'Playfair Display', serif; }

/* INFO GRID (Hours & Location) */
.info-section { background: #111; border-top: 1px solid #222; }
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.info-box { padding: 20px; border: 1px solid #333; background: var(--card-bg); }
.info-box h3 { color: var(--gold); margin-bottom: 15px; font-size: 1.5rem; }
.info-box p { color: var(--text-grey); margin-bottom: 8px; }

/* TESTIMONIALS */
.reviews { background: url('https://images.unsplash.com/photo-1550966871-3ed3c47e2ce2?auto=format&fit=crop&w=1950&q=80') center/cover fixed; position: relative; }
.overlay { background: rgba(0,0,0,0.85); position: absolute; top:0; left:0; width:100%; height:100%; }
.review-content { position: relative; z-index: 2; text-align: center; max-width: 700px; margin: 0 auto; }
.stars { color: var(--gold); font-size: 1.5rem; margin-bottom: 15px; }
.quote { font-size: 1.4rem; font-style: italic; line-height: 1.6; }
.author { margin-top: 20px; font-weight: bold; color: var(--gold); }

/* FOOTER */
footer { background: #000; padding: 50px 5%; text-align: center; border-top: 1px solid #333; }
.footer-links a { color: #666; margin: 0 10px; font-size: 0.85rem; }
.copyright { margin-top: 20px; color: #444; font-size: 0.8rem; }

/* MOBILE */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.8rem; }
    header { flex-direction: column; gap: 15px; }
    nav ul { gap: 15px; flex-wrap: wrap; justify-content: center; }
}