/* ===== VARIABLES CSS ===== */
:root {
    /* Couleurs principales */
    --primary-color: #2c1810;
    --secondary-color: #8b6914;
    --accent-color: #d4af37;
    --text-primary: #2c1810;
    --text-secondary: #6b5b47;
    --text-light: #ffffff;
    --background-light: #faf8f5;
    --background-dark: #1a1a1a;
    
    /* Typographie */
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Inter', sans-serif;
    
    /* Espacements */
    --section-padding: 120px 0;
    --container-padding: 0 20px;
    --border-radius: 12px;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ET BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-light);
    overflow-x: hidden;
    padding-top: 120px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 120px;
}

.nav-logo .logo-img,
.nav-brand .logo {
    height: 100px;
    width: auto;
    transition: var(--transition-smooth);
}

.nav-logo .logo-img:hover,
.nav-brand .logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a,
.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a:hover,
.nav-link:hover {
    color: var(--accent-color);
}

.nav-menu a::after,
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition-smooth);
}

.nav-menu a:hover::after,
.nav-link:hover::after {
    width: 100%;
}

.nav-menu a.active,
.nav-link.active {
    color: var(--accent-color);
    font-weight: 600;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition-smooth);
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-image: url('../images/fond_chateau_ancetres.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#hero-video {
    display: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(44, 24, 16, 0.7) 0%,
        rgba(44, 24, 16, 0.4) 50%,
        rgba(212, 175, 55, 0.3) 100%
    );
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: var(--text-light);
    max-width: 800px;
    padding: 0 20px;
    z-index: 1;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.title-line {
    display: block;
}

.highlight {
    color: var(--accent-color);
    position: relative;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.8s forwards;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.1s forwards;
}

/* ===== SECTION HÉRITAGE ===== */
.heritage-section {
    padding: var(--section-padding);
    background-color: var(--background-light);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.heritage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.heritage-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.heritage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-header {
    padding: 2rem;
    text-align: center;
}

.card-header h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.card-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.interactive-map {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.map-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 2rem;
    text-align: center;
}

.btn-map {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.btn-map:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.family-tree {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.tree-visualization-home {
    position: relative;
    width: 100%;
    height: 100%;
}

.tree-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tree-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 2rem;
    text-align: center;
    color: white;
}

.tree-overlay h4 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.tree-overlay p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.btn-tree {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-tree:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* ===== SECTION PRODUITS/CRÉATIONS ===== */
.products-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-color) 0%, #3d2817 100%);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.products-section::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="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.products-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.products-section .section-header h2 {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-light);
    margin-bottom: 1rem;
}

.products-section .section-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.products-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    z-index: 2;
}

.product-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.product-slide.active {
    display: block;
    opacity: 1;
}

.product-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.product-media {
    position: relative;
}

.media-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #4a9eff 0%, #007bff 100%);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.book-placeholder {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
}

.cartoon-placeholder {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
}

.photo-placeholder {
    background: linear-gradient(135deg, #a55eea 0%, #8b5cf6 100%);
}

.play-icon, .book-icon, .cartoon-icon, .photo-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.product-info h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.product-info p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-info ul {
    list-style: none;
    margin-bottom: 2rem;
}

.product-info ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.product-info ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.btn-product {
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-product:hover {
    background: var(--secondary-color);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active,
.dot:hover {
    background: var(--accent-color);
}

/* ===== SECTION TÉMOIGNAGES ===== */
.testimonials-section {
    padding: var(--section-padding);
    background-color: var(--background-light);
}

.testimonials-section h2 {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    border-left: 4px solid var(--accent-color);
}

.testimonial blockquote {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    quotes: """ """ "'" "'";
}

.testimonial blockquote::before {
    content: open-quote;
    font-size: 2rem;
    color: var(--accent-color);
    line-height: 0;
    margin-right: 0.25rem;
    vertical-align: -0.4rem;
}

.testimonial cite {
    font-weight: 600;
    color: var(--secondary-color);
    font-style: normal;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    font-family: var(--font-primary);
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.footer-section p {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== BOUTONS ===== */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    padding: 15px 30px;
    border: none;
    border-radius: var(--border-radius);
    font-family: var(--font-secondary);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--text-light);
    padding: 15px 30px;
    border: 2px solid var(--accent-color);
    border-radius: var(--border-radius);
    font-family: var(--font-secondary);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .nav-container {
        height: 100px;
        padding: 0 15px;
    }
    
    .nav-logo .logo-img,
    .nav-brand .logo {
        height: 70px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    body {
        padding-top: 100px;
    }
    
    .hero-section {
        height: calc(100vh - 100px);
    }
    
    .heritage-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .interactive-map,
    .family-tree {
        height: 250px;
    }
    
    .card-header {
        padding: 1.5rem;
    }
    
    .product-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .carousel-controls {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        height: 80px;
    }
    
    .nav-logo .logo-img,
    .nav-brand .logo {
        height: 50px;
    }
    
    body {
        padding-top: 80px;
    }
    
    .hero-section {
        height: calc(100vh - 80px);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .testimonial {
        padding: 1.5rem;
    }
}

/* ===== STYLES COMPLETS POUR LA PAGE GRILLE ===== */

/* ===== HERO SECTION ===== */
.production-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, var(--background-light) 0%, #f8f6f3 100%);
    text-align: center;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

/* ===== CATÉGORIES ===== */
.grille-category {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--accent-color);
    position: relative;
}

.grille-category::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    border-radius: 23px;
    z-index: -1;
}

.grille-category h2 {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.grille-category h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
}

/* ===== GRILLE DE SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    align-items: stretch;
}

/* ===== CARTES DE SERVICE ===== */
.service-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    transition: var(--transition-smooth);
    border: 3px solid transparent;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* ===== BORDURES COLORÉES SELON LE TYPE ===== */
.service-card.popular {
    border-color: #e74c3c;
    background: linear-gradient(145deg, #ffffff 0%, #fff5f5 100%);
}

.service-card.premium {
    border-color: #9b59b6;
    background: linear-gradient(145deg, #ffffff 0%, #faf5ff 100%);
}

.service-card.exclusive {
    border-color: #f39c12;
    background: linear-gradient(145deg, #ffffff 0%, #fffaf0 100%);
}

.service-card:not(.popular):not(.premium):not(.exclusive) {
    border-color: #3498db;
    background: linear-gradient(145deg, #ffffff 0%, #f0f8ff 100%);
}

/* ===== BADGES ===== */
.service-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.service-card.popular .service-badge {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}

.service-card.premium .service-badge {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
    box-shadow: 0 4px 15px rgba(155, 89, 182, 0.4);
}

.service-card.exclusive .service-badge {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
}

/* ===== ICÔNES ===== */
.service-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1;
}

/* ===== CONTENU DES CARTES ===== */
.service-card h3 {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
    line-height: 1.3;
}

.service-card p {
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    flex-grow: 1;
}

/* ===== OPTIONS DE SERVICE ===== */
.service-options {
    margin-bottom: 1.5rem;
}

.option-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.option-group label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.style-select {
    padding: 10px 15px;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    background: white;
    color: var(--text-primary);
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.style-select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

/* ===== FONCTIONNALITÉS ===== */
.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature::before {
    content: '✓';
    color: #27ae60;
    font-weight: bold;
    font-size: 1rem;
}

/* ===== PRIX ===== */
.service-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(212, 175, 55, 0.2);
    margin-top: auto;
}

.price {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
}

.duration {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ===== SECTION DE SÉLECTION ===== */
.selection-section {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    margin-top: 4rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--accent-color);
    position: relative;
}

.selection-section::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    border-radius: 23px;
    z-index: -1;
}

.selection-section h3 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 1rem;
}

.selection-content {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-style: italic;
}

.selection-total {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
}

.selection-total span {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--text-primary);
}

.total-price {
    font-size: 2rem !important;
    font-weight: 700;
    color: var(--accent-color) !important;
}

.reserve-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 25px;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    text-decoration: none;
}

.reserve-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .grille-category {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .grille-category {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .grille-category h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        font-size: 2.5rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .price {
        font-size: 1.5rem;
    }
    
    .selection-section {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .grille-category {
        padding: 1rem;
        border-radius: 15px;
    }
    
    .service-card {
        padding: 1rem;
    }
    
    .service-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    
    .selection-section {
        padding: 1.5rem;
        border-radius: 15px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.grille-category {
    animation: slideInUp 0.6s ease-out;
}

.service-card {
    animation: slideInUp 0.6s ease-out;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }


