/* Section Chefs */
.chefs {
    padding: 4rem 0 2rem 0;
    text-align: center;
}
.chefs-list {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}
.chef-card {
    background: linear-gradient(120deg, #fffbe6 60%, #fff 100%);
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(31,38,135,0.10);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    width: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.chef-card:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 8px 32px rgba(31,38,135,0.18);
}
.chef-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid #ffb347;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    background: #fff;
}
.chef-card h3 {
    margin: 0.5rem 0 0.3rem 0;
    color: #d35400;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
}
.chef-card p {
    color: #222;
    font-size: 1rem;
    margin: 0;
    margin-top: 0.5rem;
    line-height: 1.5;
}
/* Section Galerie */
.galerie {
    padding: 4rem 0 2rem 0;
    text-align: center;
}
.galerie-photos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.galerie-photos img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(31,38,135,0.10);
    transition: transform 0.2s, box-shadow 0.2s;
}
.galerie-photos img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(31,38,135,0.18);
}
/* Section Avis Clients */
.avis-clients {
    padding: 4rem 0 2rem 0;
    text-align: center;
}
.avis-carousel {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}
.avis-item {
    background: rgba(255,255,255,0.18);
    border-radius: 20px;
    box-shadow: 0 2px 12px rgba(31,38,135,0.10);
    padding: 1.5rem 2rem;
    max-width: 320px;
    color: #fff3e0;
    font-size: 1.1rem;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}
.avis-item:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 32px rgba(31,38,135,0.18);
}
.avis-item blockquote {
    margin: 0 0 1rem 0;
    font-style: italic;
    color: #ffd180;
}
.avis-item span {
    font-size: 0.95rem;
    color: #ffb347;
    font-weight: 600;
}
.hero-highlights {
    list-style: none;
    padding: 0;
    margin: 2rem 0 2rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
}
.hero-highlights li {
    background: rgba(255,255,255,0.12);
    border-radius: 18px;
    padding: 0.7rem 1.5rem;
    color: #ffd180;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(31,38,135,0.07);
    letter-spacing: 1px;
    transition: background 0.2s;
}
.hero-highlights li:hover {
    background: rgba(255,255,255,0.25);
    color: #fff3e0;
}
body {
    margin: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    background: #f8f8f8;
    color: #222;
}
.hero {
    background: linear-gradient(120deg, rgba(30,30,30,0.85) 0%, rgba(60,60,60,0.85) 100%), url('../assets/images/hero-bg.jpg') center/cover no-repeat;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border-radius: 0 0 40px 40px;
    overflow: hidden;
    transition: background 0.5s;
}
.navbar {
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4vw;
    padding: 1.2rem 5vw 1.2rem 5vw;
    background: rgba(255,255,255,0.25);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.17);
    backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    border-radius: 0 0 32px 32px;
    z-index: 100;
    transition: background 0.5s;
}
.logo img {
    height: 64px;
    width: 64px;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    background: #fff;
    object-fit: cover;
    border: 3px solid #ffb347;
    transition: box-shadow 0.3s;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    justify-content: center;
    align-items: center;
}
.nav-links a {
    text-decoration: none;
    color: #222;
    font-weight: 600;
    transition: color 0.2s;
}
.nav-links a:hover {
    color: #d35400;
}
.hero-content {
    margin-top: 12rem;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    background: rgba(0,0,0,0.35);
    border-radius: 32px;
    padding: 2rem 3vw;
    box-shadow: 0 4px 32px rgba(31,38,135,0.17);
    display: inline-block;
}
.hero-logo {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    background: #fff;
    object-fit: cover;
    border: 4px solid #ffb347;
    margin-bottom: 1.5rem;
}
.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}
.cta-btn {
    background: #d35400;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(211,84,0,0.2);
    transition: background 0.2s, transform 0.2s;
}
.cta-btn:hover {
    background: #ffb347;
    color: #d35400;
    transform: scale(1.05);
}
footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
    font-size: 1rem;
    margin-top: 4rem;
}
@media (max-width: 900px) {
    .navbar {
        flex-direction: column;
        padding: 1rem 2rem;
    }
    .nav-links {
        gap: 1rem;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
}
