:root {
    --primary-color: #d4a373;
    --primary-dark: #b08d55;
    --secondary-color: #faedcd;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f9f9f9;
    --bg-overlay: rgba(255, 255, 255, 0.95);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Raleway', sans-serif;
    --spacing-container: 1200px;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-light);
}

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

h1, h2, h3 {
    font-family: var(--font-heading);
    color: #2c1810;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

/* Layout */
.container {
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 0 20px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

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

/* Navigation */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: 0.3s;
}

.navbar.scrolled {
    padding: 5px 0;
}

.nav-container {
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 60px;
    border-radius: 50%;
}

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

.nav-links a {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../img/le_cocon_place_roland_gauthier_montesson.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.hero-content {
    max-width: 800px;
    padding: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

/* Page Header (for other pages) */
.page-header {
    background-color: var(--secondary-color);
    padding: 120px 0 60px;
    text-align: center;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

/* Components */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-secondary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin: 60px 0 40px;
    color: var(--primary-dark);
}

/* Cards */
.card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

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

.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card h3 {
    padding: 20px 20px 10px;
    font-size: 1.5rem;
}

.card p {
    padding: 0 20px 20px;
    color: var(--text-light);
}

/* Menu */
.menu-section {
    padding-bottom: 60px;
}

.menu-category {
    margin-bottom: 60px;
}

.menu-category h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    border-bottom: 2px solid var(--secondary-color);
    display: inline-block;
    padding-bottom: 10px;
    /* Center hack */
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.menu-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: bold;
}

.price {
    color: var(--primary-dark);
}

/* Events */
.event-item {
    display: flex;
    gap: 20px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.event-date {
    background: var(--secondary-color);
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    min-width: 80px;
}

.event-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-dark);
}

.event-date .month {
    text-transform: uppercase;
    font-size: 0.9rem;
}

.events-list-large {
    display: grid;
    gap: 40px;
}

.event-card-large {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.event-card-large img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.event-content {
    padding: 30px;
}

/* About */
.split-layout {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.split-layout.reverse {
    flex-direction: row-reverse;
}

.text-block {
    flex: 1;
}

.image-block {
    flex: 1;
}

.image-block img {
    border-radius: 12px;
    box-shadow: 10px 10px 0 var(--secondary-color);
}

/* Contact */
.contact-info-block {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.info-list {
    list-style: none;
    margin: 30px 0;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    min-height: 400px;
}

.social-links-big {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.btn-instagram {
    background: #e1306c;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
}

.btn-facebook {
    background: #1877f2;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: opacity 0.3s;
}

.gallery-item img:hover {
    opacity: 0.9;
}

/* Footer */
footer {
    background: #2c1810;
    color: white;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-content {
    max-width: var(--spacing-container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 0 20px;
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    color: #999;
}

.social-links-footer a {
    margin-right: 15px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }
    
    .hamburger {
        display: block;
        width: 25px;
        height: 3px;
        background: #333;
        position: relative;
    }

    .hamburger::before, .hamburger::after {
        content: '';
        width: 25px;
        height: 3px;
        background: #333;
        position: absolute;
        left: 0;
    }

    .hamburger::before { top: -8px; }
    .hamburger::after { top: 8px; }

    .hero h1 {
        font-size: 2.5rem;
    }

    .split-layout {
        flex-direction: column;
    }

    .split-layout.reverse {
        flex-direction: column;
    }

    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
    }
}
/* ... existing styles ... */

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 2001;
    transition: 0.3s;
}

.lightbox-close:hover {
    color: var(--primary-color);
}

@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Ensure gallery items have pointer cursor */
.gallery-item img {
    cursor: zoom-in;
}

