/* VARIABLES & RESET */
:root {
    --bg-color: #0f1115;
    --text-color: #e0e0e0;
    --primary: #ffffff;
    --accent: #d4af37;
    --card-bg: #1a1c23;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* DEMO BANNER */
.demo-banner {
    background-color: var(--primary);
    color: white;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.9rem;
    font-weight: bold;
    position: relative;
    z-index: 1000;
}

/* NAVBAR */
.navbar {
    position: sticky;
    top: 0;
    background-color: rgba(15, 17, 21, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
    z-index: 999;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
}

.nav-links a {
    margin: 0 1rem;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.btn-reserver {
    background-color: var(--accent);
    color: #0f1115;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-reserver:hover {
    background-color: #b8962e;
    transform: translateY(-2px);
}

/* HERO SECTION */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://lh3.googleusercontent.com/gps-cs-s/AHVAwerdHixkjeXR_f-TveJ8uk0i6b8y35hYiZCBhnYrIRH04uI4Y_6iYixQ4KlQsyx3V3i0sNKHXsem_8md3vyIQrrYT7CmpzERj__y8MAvP1PpqbxuzzvswgcwAHKznA9UPNtowfhETzyR4yA=s1600') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-style: italic;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-content .subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.rating {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    font-weight: bold;
}

.btn-primary {
    background-color: var(--accent);
    color: #0f1115;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s;
    border: 1px solid var(--accent);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent);
    border-color: var(--accent);
}

/* ABOUT SECTION */
.about {
    padding: 5rem 0;
    background-color: var(--bg-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.about-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* MENU / L'ARDOISE SECTION */
.menu-section {
    padding: 5rem 0;
    background-color: #fff;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-style: italic;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 4rem;
    font-family: var(--font-heading);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.menu-item {
    background-color: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #eee;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.menu-img-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.menu-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.menu-item:hover .menu-img {
    transform: scale(1.05);
}

.menu-details {
    padding: 1.5rem;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
    border-bottom: 1px dashed #ccc;
    padding-bottom: 0.5rem;
}

.menu-header h3 {
    font-size: 1.2rem;
    color: var(--text-color);
}

.price {
    font-weight: bold;
    color: var(--primary);
    font-size: 1.2rem;
}

.menu-desc {
    color: #666;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

/* FOOTER */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.footer h3 {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer p {
    color: #aaa;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 2rem;
}

.demo-badge {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--accent);
    opacity: 0.8;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .about-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .about-text {
        text-align: center;
    }
}