/* Variables & Reset */
:root {
    --primary-blue: #1e90ff;
    --deep-blue: #0056b3;
    --lemon-yellow: #ffd700;
    --bright-yellow: #fff000;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --text-dark: #333;
    --dark-bg: #0a192f; 
}

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

/* Navigation */
nav {
    background: var(--white);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--deep-blue);
}

.logo span {
    color: var(--lemon-yellow);
    background: var(--deep-blue);
    padding: 2px 8px;
    border-radius: 5px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    text-decoration: none;
    color: var(--deep-blue);
    margin-left: 2rem;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: var(--lemon-yellow);
}

/* Hero Section */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(30, 144, 255, 0.7), rgba(0, 86, 179, 0.8)), 
                url('logo.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.hero h1 span {
    color: var(--lemon-yellow);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-main {
    padding: 15px 40px;
    background: var(--lemon-yellow);
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: transform 0.3s, background 0.3s;
}

.btn-main:hover {
    transform: scale(1.1);
    background: var(--bright-yellow);
}

/* Sections */
.intro {
    padding: 4rem 0;
    text-align: center;
    background: var(--light-gray);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--deep-blue);
}

/* Menu Grid */
.menu-section {
    padding: 5rem 0;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.menu-card {
    padding: 2rem;
    border-radius: 20px;
    background: white;
    border: 3px solid var(--lemon-yellow);
    box-shadow: 10px 10px 0px var(--primary-blue);
    transition: transform 0.3s ease;
    text-align: center;
    position: relative;
}

.menu-card:hover {
    transform: translateY(-10px);
}

.menu-card h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.ingredients {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--deep-blue);
}

.menu-card.highlight {
    background: var(--primary-blue);
    border-color: white;
}

.menu-card.highlight .price, 
.menu-card.highlight h3 {
    color: white;
}

/* Disclaimer */
.info-bar {
    background: #e7f3ff;
    padding: 2rem;
    text-align: center;
    border-top: 1px solid #cfe0f3;
}

/* Footer Update */
footer { background: var(--deep-blue); color: white; padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; margin-bottom: 3rem; }
.footer-contact i { color: var(--lemon-yellow); margin-right: 10px; }
.footer-contact h3 {
    color: var(--lemon-yellow);
    margin-bottom: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    font-size: 0.8rem;
    text-align: center;
}

/* New CTA Section */
.cta-section { padding: 80px 0; background: #f9fbff; text-align: center; }
.cta-grid { display: flex; gap: 20px; justify-content: center; margin-top: 30px; flex-wrap: wrap; }
.cta-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 2px solid var(--primary-blue);
    flex: 1;
    min-width: 300px;
}

/* Interactive Locations */
.interactive-section { padding: 80px 0; background: #e7f31ff; text-align: center; }
.location-grid { display: flex; gap: 20px; justify-content: center; margin-top: 30px; flex-wrap: wrap; }
.loc-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    border-bottom: 5px solid var(--lemon-yellow);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Gallery Section */
.gallery-section { padding: 80px 0; background: white; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 15px; margin-top: 30px; }
.gallery-item img { 
    width: 100%; 
    border-radius: 10px; 
    filter: brightness(90%); 
    transition: transform 0.3s;
}
.gallery-item:hover img { transform: scale(1.05); }

video {
    background: var(--lemon-yellow);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    border-radius: 10px;
    transition: transform 0.3s;
    width: 100%;
    height: 97.5%;
}
video:hover {transform: scale(1.05); }

/* Separator Styles */
.separator {
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--lemon-yellow), transparent);
    margin: 60px auto;
    width: 80%;
}

/* Review Section Style */
.review-section {
    padding: 60px 0;
    background: #fdfdfd;
    border-top: 1px solid var(--light-gray);
}
.review-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}
.review-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    width: 300px;
    text-align: center;
    border: 1px solid #eee;
}
.review-card .stars { color: var(--lemon-yellow); margin-bottom: 12px; font-size: 1.2rem; }
.review-card p { font-style: italic; font-size: 0.95rem; margin-bottom: 8px; }
.review-card .reviewer { display: block; color: #777; font-size: 0.85rem; }

/* Shared Buttons */
.btn-outline {
    padding: 15px 30px;
    border: 2px solid var(--lemon-yellow);
    border-radius: 50px;
    text-decoration: none;
    color: var(--lemon-yellow);
    margin-left: 10px;
}

.btn-small {
    padding: 10px 20px;
    background: var(--primary-blue);
    color: white;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .cta-grid, .location-grid { flex-direction: column; align-items: center; }
}
