* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --noir-profond: #000000;
    --bleu-fonce-principal: #3e64b2;
    --turquoise-clair: #49bcc7;
    --cyan-soutenu: #15aab8;
    --blanc-rose: #fcf3f3;
    --bleu-fonce: #3e64b2;
    --blanc-bleute-clair: #f2f4fa;
    --gris-rose-clair: #f0ecef;
    --noir-doux: #0b0b0b;
    --gris-bleute-pale: #f2f1f6;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--noir-doux);
    background: var(--blanc-bleute-clair);
    overflow-x: hidden;
}

/* Fixed Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(62, 100, 178, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--bleu-fonce);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--noir-doux);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--bleu-fonce);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--bleu-fonce);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--bleu-fonce);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.nav-cta:hover {
    background: rgba(62, 100, 178, 0.8);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(62, 100, 178, 0.3);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    width: 25px;
    height: 2px;
    background: var(--noir-doux);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background: var(--noir-doux);
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.menu-toggle.active .hamburger {
    background: transparent;
}

.menu-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.menu-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* Header Hero */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--bleu-fonce) 0%, rgba(62, 100, 178, 0.8) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="60" r="0.3" fill="%23ffffff" opacity="0.05"/><circle cx="40" cy="80" r="0.4" fill="%23ffffff" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
}

.hero-content {
    container: hero-content / inline-size;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    color: white;
}

.logo {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    letter-spacing: -2px;
}

.tagline {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 300;
}

.description {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.8;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--blanc-rose);
    color: var(--noir-doux);
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
    background: white;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.floating-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    transform: rotate(-5deg);
    animation: float 6s ease-in-out infinite;
    max-width: 400px;
}

@keyframes float {
    0%, 100% { transform: rotate(-5deg) translateY(0px); }
    50% { transform: rotate(-5deg) translateY(-20px); }
}

.card-title {
    color: var(--bleu-fonce);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.card-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--gris-bleute-pale);
}

.card-item:last-child {
    border-bottom: none;
}

.item-name {
    font-weight: 600;
    color: var(--noir-doux);
}

.item-price {
    color: var(--bleu-fonce);
    font-weight: 700;
}

/* Picture Section */
.picture-section {
    padding: 6rem 2rem;
    background: var(--bleu-fonce);
    position: relative;
}

.picture-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--bleu-fonce) 0%, rgba(62, 100, 178, 0.9) 100%);
    z-index: 1;
}

.picture-container {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.picture-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 0.5rem;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.picture-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.picture-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 20px 20px 0 0;
}

.picture-card img {
    width: 100%;
    border-radius: 20px;
}

.picture-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--noir-doux);
    text-align: center;
    gap: 12px;
}

.picture-item {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--noir-doux);
}

.picture-item:last-child {
    margin-bottom: 0;
}

/* Info Section */
.info-section {
    padding: 6rem 2rem;
    background: var(--bleu-fonce);
    position: relative;
}

.info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--bleu-fonce) 0%, rgba(62, 100, 178, 0.9) 100%);
    z-index: 1;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.info-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--bleu-fonce), rgba(62, 100, 178, 0.8));
    border-radius: 20px 20px 0 0;
}

.info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--noir-doux);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-icon {
    width: 24px;
    height: 24px;
    fill: var(--bleu-fonce);
}

.contact-item {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--noir-doux);
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-link {
    color: var(--bleu-fonce);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: rgba(62, 100, 178, 0.8);
}

/* Menu Section */
.menu-section {
    padding: 6rem 2rem;
    background: var(--gris-bleute-pale);
}

.menu-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 800;
    color: var(--noir-doux);
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--bleu-fonce);
    margin-bottom: 3rem;
    opacity: 0.9;
}

.menu-image {
    width: 100%;
    max-width: 600px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.menu-image:hover {
    transform: scale(1.02);
}

/* Footer */
.footer {
    background: var(--noir-profond);
    color: white;
    padding: 3rem 2rem 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--bleu-fonce);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.social-link:hover {
    background: rgba(62, 100, 178, 0.8);
    transform: translateY(-3px);
}

.footer-text {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding-top: 6rem; /* Account for fixed navbar */
    }
    
    .hero-visual {
        order: -1;
    }
    
    .floating-card {
        transform: rotate(0deg);
        max-width: 320px;
    }
    
    .info-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .social-links {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.25rem 1rem;
    }
    
    .nav-logo {
        font-size: 1.3rem;
    }
    
    .hero, .info-section, .menu-section {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero-content {
        padding-top: 5rem;
    }
    
    .info-card {
        padding: 2rem;
    }
    
    .floating-card {
        padding: 1.5rem;
    }
}

/* Scroll animations */
@media (prefers-reduced-motion: no-preference) {
    .info-card {
        opacity: 0;
        transform: translateY(30px);
        animation: slideInUp 0.6s ease forwards;
    }
    
    .info-card:nth-child(1) { animation-delay: 0.1s; }
    .info-card:nth-child(2) { animation-delay: 0.2s; }
    .info-card:nth-child(3) { animation-delay: 0.3s; }
    
    @keyframes slideInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* Review */
.review-container {
    padding: 40px;
}

.reviews-section {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.reviews-header {
    text-align: center;
}

.reviews-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #3498db, #9b59b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reviews-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 30px;
}

.overall-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    border: 2px solid #dee2e6;
}

.rating-score {
    font-size: 3rem;
    font-weight: bold;
    color: #f39c12;
}

.stars {
    display: flex;
    gap: 5px;
}

.star {
    color: #ffc107;
    font-size: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.star.empty {
    color: #e0e0e0;
}

.rating-info {
    text-align: center;
}

.rating-count {
    font-size: 1.1rem;
    color: #6c757d;
    margin-top: 5px;
}

.google-reviews-cta {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #4285f4, #34a853);
    border-radius: 15px;
    color: white;
    margin-top: 30px;
}

.google-reviews-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.google-reviews-cta p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.google-reviews-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #4285f4;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.google-reviews-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
}

.google-icon {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 20px;
    }
    
    .reviews-title {
        font-size: 2rem;
    }
    
    .overall-rating {
        flex-direction: column;
        gap: 10px;
    }
    
    .rating-score {
        font-size: 2.5rem;
    }
}