/*
Theme Name: Dam Theme
Description: Thème personnalisé pour Dam aux Fourneaux - Traiteur et événements culinaires
Author: Dam aux Fourneaux
Version: 1.1.0
Text Domain: dam-theme
*/

/* Import Google Fonts - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Variables CSS */
:root {
    --primary-color: #d4af37;
    --secondary-color: #fff8eb;
    --accent-color: #0b3910;
    --text-color: #333;
    --light-text: #fff8eb;
    --background-color: #fff8eb;
    --light-bg: #0b3910;
    --border-color: #e0e0e0;
    --shadow: 0 2px 8px rgba(0,0,0,0.08);
    --transition: all 0.3s ease;
    --font-primary: 'Poppins', sans-serif;
    --font-semibold: 'Poppins', sans-serif;
    --cta-color: #6e1919;
}

/* Application de Poppins Semibold sur les éléments importants */
.hero-title,
.section-title,
.service-title,
.event-title,
.entry-title,
.site-title a,
.nav-menu a,
.btn,
.contact-details h3,
.prestation-contact-card h3,
.event-details-card h3,
.prestation-features h4,
.event-features h4,
.prestation-services h4,
.footer-widget h3,
.service-price,
.event-date,
.badge,
.detail-label,
.testimonial-author strong,
.rating {
    font-family: var(--font-semibold);
    font-weight: 600;
}

/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
}

/* Application générale de Poppins sur tous les éléments */
* {
    font-family: var(--font-primary);
}

#primary {
    margin-top: 4rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Styles pour les pages d'archives */
.archive .hero-section {
    max-height: 35vh !important;
}

.hero-section.archive-hero {
    min-height: 35vh;
}

.archive-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.archive-hero .hero-content-wrapper {
    flex-direction: column;
    text-align: center;
}

.archive-hero .hero-text-content {
    max-width: 800px;
    margin: 0 auto;
}

.archive-services,
.archive-events {
    padding: 4rem 0;
}

.pagination-wrapper {
    margin-top: 3rem;
    text-align: center;
}

.pagination {
    display: inline-flex;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pagination .page-numbers {
    display: inline-block;
    padding: 0.75rem 1rem;
    background: var(--background-color);
    border: 2px solid var(--border-color);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    font-weight: 500;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: var(--primary-color);
    color: var(--light-text);
    border-color: var(--primary-color);
}

.pagination .prev,
.pagination .next {
    font-weight: 600;
}

.no-services,
.no-events {
    text-align: center;
    padding: 3rem 0;
}

.no-services h2,
.no-events h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.no-services p,
.no-events p {
    color: var(--accent-color);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-section {
    background: var(--light-bg);
    color: var(--light-text);
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    color: var(--light-text);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.cta-content p {
    color: var(--light-text);
    margin-bottom: 2rem;
    font-size: 1.2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 200px;
}

/* Styles pour les pages génériques */
.page-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-hero .hero-content-wrapper {
    flex-direction: column;
    text-align: center;
}

.page-hero .hero-text-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-content {
    padding: 4rem 0;
}

.page-single {
    max-width: 800px;
    margin: 0 auto;
}

.page-single .entry-content {
    line-height: 1.8;
}

.page-single .entry-content h2,
.page-single .entry-content h3,
.page-single .entry-content h4 {
    color: var(--primary-color);
    margin: 2rem 0 1rem 0;
}

.page-single .entry-content p {
    margin-bottom: 1.5rem;
}

.page-single .entry-content ul,
.page-single .entry-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.page-single .entry-content li {
    margin-bottom: 0.5rem;
}

.page-single .entry-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 2rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--accent-color);
}

.page-single .entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2rem 0;
}
section {
    scroll-padding-top: 105px;
}

/* Responsive pour les archives */
@media (max-width: 768px) {
    .hero-section.archive-hero {
        min-height: 35vh;
    }
    
    .page-hero {
        min-height: 50vh;
    }
    
    .archive-hero .hero-title,
    .page-hero .hero-title {
        font-size: 2rem;
    }
    
    .archive-hero .hero-subtitle,
    .page-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .page-content {
        padding: 2rem 0;
    }
    
    .page-single .entry-content {
        padding: 0 1rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        min-width: 250px;
    }
    
    .pagination {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .pagination .page-numbers {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    z-index: 1000;
    transition: var(--transition);
    padding: 0;
    background: #0b3910;
}

.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    padding: 0.5rem 0;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-logo-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.site-logo-link:hover {
    transform: translateY(-2px);
}
.site-logo {
    position: relative;
    width: 150px;
}
.site-logo img,
.custom-logo img {
    max-height: 175px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: var(--transition);
    position: absolute;
    top: -60px;
    filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.7));
}


.site-title {
    color: white;
    font-size: 1.5rem;
    line-height: 3.7rem;
    font-weight: 700;
    margin: 0;
}

.site-logo-link .site-title {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.site-header.scrolled .site-logo-link .site-title {
    color: var(--primary-color);
}

.site-description {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin-top: 0.25rem;
    transition: var(--transition);
}

.site-header.scrolled .site-description {
    color: var(--light-text);
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
}

/* Social Links Fixed */
.social-links-fixed {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.social-link-fixed {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    border: 2px solid white;
}

.social-link-fixed:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.social-icon-fixed {
    width: 24px;
    height: 24px;
}

/* Responsive social links fixed */
@media (max-width: 768px) {
    .social-links-fixed {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    
    .social-link-fixed {
        width: 50px;
        height: 50px;
    }
    
    .social-icon-fixed {
        width: 22px;
        height: 22px;
    }
}

/* Social Links (ancien style pour le menu - maintenant supprimé) */
.social-links-item {
    display: flex;
    align-items: center;
    margin-left: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.social-icon {
    width: 20px;
    height: 20px;
}

/* Responsive social links */
@media (max-width: 768px) {
    .social-links {
        gap: 0.5rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    .social-icon {
        width: 18px;
        height: 18px;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}


.contact-item a, .site-footer a {
    color: var(--primary-color);
}

.site-header.scrolled .nav-menu a:hover { 
    color: var(--primary-color);
}

.site-header.scrolled .nav-menu a {
    color: var(--primary-color);
}



.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    transition: var(--transition);
}

.site-header.scrolled .menu-toggle {
    color: var(--light-text);
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 25px;
    height: 20px;
    position: relative;
}

.hamburger-icon span {
    width: 100%;
    height: 3px;
    background: white;
    transition: var(--transition);
    border-radius: 2px;
}

.site-header.scrolled .hamburger-icon span {
    background: var(--light-text);
}

.menu-toggle.active .hamburger-icon span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active .hamburger-icon span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .hamburger-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 0;
    padding: 80px 0;
}

/* Désactiver background-attachment: fixed sur mobile pour de meilleures performances */
@media (max-width: 768px) {
    .hero-section {
        background-attachment: scroll;
        height: 100vh; /* Prendre toute la hauteur sur mobile */
        min-height: 100vh;
        padding: 120px 0 40px 0; /* Plus d'espace en haut pour le header fixe */
    }
    
    .hero-content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        height: 100%;
        justify-content: center;
    }
    
    .hero-text-content {
        max-width: 100%;
        order: 1; /* Le texte en premier */
    }
    
    .hero-image {
        flex: 0 0 auto;
        max-width: 240px; /* Réduire la taille de l'image */
        order: 2; /* L'image en second */
    }
    
    .hero-image img {
        max-width: 100%;
        height: auto;
        max-height: 320px; /* Limiter la hauteur de l'image */
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.2);
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.hero-text-content {
    flex: 1;
    max-width: 600px;
    text-align: center;
}

.hero-image {
    flex: 0 0 400px;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    transition: var(--transition);
    filter: drop-shadow(1px 1px 3px rgba(0,0,0,1));
}

.hero-image img:hover {
    transform: scale(1.05);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(2.5rem, 3vw, 4rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    line-height: 1;
    background: rgba(11, 57, 16, 0.9);
    color: #ffffff;
    margin-top: 0;
}

.hero-subtitle {
    background: rgba(11, 57, 16, 0.9);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 2.5rem;
    opacity: 1;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(11, 57, 16, 0.9);
    padding: 1rem 2rem;
    border-radius: 8px;
    color: #ffffff;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}
/* Centrage des CTA sur toutes les pages - Alternative au flex */
.services-cta, .events-cta, .instagram-cta {
    margin-top: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    display: block;
    position: relative;
}

.services-cta .btn,
.events-cta .btn,
.instagram-cta .btn {
    display: inline-block;
    margin: 0 auto;
}

/* Centrage des boutons dans les cartes de contact - Alternative au flex */
.contact-actions {
    /* Alternative 1: Utilisation de text-align */
    text-align: center;
    /* Alternative 2: Utilisation de grid */
    /* Alternative 3: Utilisation de position relative/absolute */
    display: block;
    margin: 0 auto;
}

.contact-actions .btn {
    padding: 1rem;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
    display: block;
    margin: 1rem auto;
}

/* Centrage des boutons de navigation - Alternative au flex */
.prestation-navigation,
.event-navigation {
    /* Alternative 1: Utilisation de text-align */
    text-align: center;
    /* Alternative 2: Utilisation de grid */
    /* Alternative 3: Utilisation de position relative/absolute */
    display: block;
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
}
.btn-primary {
    background: var(--cta-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--cta-color);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: var(--text-color);
    border-color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background: #d4af37;
    color: white;
    border-color: white;
    font-weight: 600;
    text-transform: uppercase;

}

.btn-outline:hover {
    background: #d4af37;
    color: white;
    border-color: #0b3910;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(11, 57, 16, 0.3);
}

/* Sections */
section {
    padding: 4rem 0;
}

/* Ajouter un padding-top supplémentaire aux sections autres que hero */
section:not(.hero-section) {
    padding-top: calc(4rem + 2rem);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-description {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services-section {
    background: var(--light-bg);
}
.services-section .section-description, .events-section .section-description {
    color: var(--primary-color);
}
.section-description  {
    color: var(--text-color);
    font-weight: 500;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 2rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-title a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.service-title a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.service-description {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-excerpt {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-price {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--accent-color);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary-color);
}

.feature-text {
    font-weight: 600;
    color: var(--primary-color);
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* Events Section */
.events-section {
    background: var(--light-bg);
}

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

.event-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.event-date {
    background: #6e1919;
    color: white;
    text-align: center;
}

.event-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.event-cta {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.event-cta .btn-outline{
    width: 100%;
}

.event-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.event-title a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.event-title a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.event-location {
    color: var(--text-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.event-description {
    color: var(--text-color);
    line-height: 1.6;
    flex-grow: 1;
}

.event-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: var(--transition);
}

.event-link:hover {
    color: var(--accent-color);
}

/* Instagram Section */
.instagram-section {
    padding: 4rem 0;
}

/* Google My Business Section */
.googlemybusiness-section {
    background: var(--light-bg);
    padding: 4rem 0;
}

.googlemybusiness-content {
    margin-top: 3rem;
}

.instagram-gallery {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    overflow-x: auto;
    padding-bottom: 1rem;
}

.gallery-item {
    flex: 0 0 200px;
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.instagram-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.instagram-item:hover img {
    transform: scale(1.1);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
    font-size: 2rem;
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.instagram-link {
    text-align: center;
}

/* Contact Section */

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 10px;
    transition: var(--transition);
    color: #FFF;
}

.contact-item:hover {
    background: var(--primary-color);
    color: white;
}

.contact-item:hover a{
    color: white;
}

.contact-emoji {
    font-size: 2rem;
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.contact-item:hover .contact-emoji {
    transform: scale(1.1);
}

.contact-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
}

.contact-item:hover .contact-icon {
    background: white;
}

.contact-details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: inherit;
    opacity: 0.9;
}

.contact-details a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.contact-details a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Contact Map */
.contact-map {
    margin-top: 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-map iframe {
    width: 100%;
    height: 300px;
    border: 0;
    border-radius: 10px;
    transition: var(--transition);
}

.contact-map iframe:hover {
    transform: scale(1.02);
}

/* Contact Form */

.contact-form h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 1rem;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 44, 44, 0.1);
}

.contact-form button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    width: 100%;
}

.contact-form button:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

/* Footer */
.site-footer {
    background: #0b3910;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo img {
    max-height: 60px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-widget h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-widget ul {
    list-style: none;
}

.footer-widget ul li {
    margin-bottom: 0.5rem;
}

.footer-widget ul li a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.footer-widget ul li a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.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);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .site-header {
        padding: 0.3rem 0;
    }
    
    .site-header .container {
        padding: 0 15px;
    }
    
    .site-logo {
        width: 120px;
    }
    
    .site-logo img,
    .custom-logo img {
        max-height: 105px;
        top: -45px;
        left: -15px;
    }
    .site-title {
        font-size: 1rem;
        line-height: 1;
    }
    .site-title a {
        font-size: 1.2rem;
        line-height: 1;
    }
    
    .site-description {
        font-size: 0.8rem;
    }
    
    .menu-toggle {
        display: block;
        color: white !important;
    }
    
    .site-header.scrolled .menu-toggle {
        color: var(--primary-color) !important;
    }
    
    .hamburger-icon span {
        background: white !important;
    }
    
    .site-header.scrolled .hamburger-icon span {
        background: var(--primary-color) !important;
    }
    

    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
        transition: var(--transition);
        z-index: 1000;
        box-shadow: -5px 0 20px rgba(0,0,0,0.15);
        padding-top: 80px;
    }

    .nav-menu a {
        color: var(--primary-color);
        font-size: 1.1rem;
        font-weight: 600;
        padding: 1rem 2rem;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        transition: var(--transition);
    }
    
    .nav-menu a:hover {
        background: rgba(11, 57, 16, 0.1);
        color: var(--primary-color);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .hero-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
        padding: 0.8rem 1.5rem;
    }
    
    .hero-description {
        font-size: clamp(1rem, 3vw, 1.1rem);
        padding: 0.8rem 1.5rem;
    }
    
    .section-title {
        font-size: clamp(1.8rem, 5vw, 2rem);
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .instagram-gallery {
        gap: 0.5rem;
    }
    
    .gallery-item {
        flex: 0 0 150px;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-item {
        text-align: center;
    }
    
    .contact-map {
        margin-top: 1.5rem;
    }
    
    .contact-map iframe {
        height: 250px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

/* Styles pour le body quand le menu est ouvert */
body.menu-open {
    overflow: hidden;
}

/* Styles pour les erreurs de formulaire */
.contact-form input.error,
.contact-form textarea.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

/* Animations CSS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

/* Classes d'animation */
.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.3s ease-out;
}

/* Amélioration de l'accessibilité pour le menu */
.menu-toggle {
    position: relative;
    z-index: 1001;
}

.menu-toggle:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}


.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
    font-weight: 600;
}

.btn-secondary:hover {
    background: white;
    color: var(--text-color);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Amélioration du contraste pour l'accessibilité */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #000000;
        --secondary-color: #ffffff;
        --text-color: #000000;
        --light-text: #ffffff;
        --border-color: #000000;
        --accent-color: #333333;
    }
    
    .btn {
        border-width: 3px;
        border-color: var(--primary-color);
    }
    
    .service-card,
    .event-card {
        border: 2px solid var(--border-color);
    }
    
    .hero-title,
    .hero-description {
        background: rgba(0, 0, 0, 0.9);
        color: #ffffff;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    }
    
    .nav-menu a {
        color: #ffffff;
        font-weight: 700;
    }
    
    .site-header.scrolled .nav-menu a {
        color: #000000;
    }
    
    .services-section .section-description {
        color: #ffffff;
        font-weight: 700;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    }
}

/* Support pour les préférences de mouvement réduit */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-section {
        background-attachment: scroll;
    }
}

/* Tablette Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-content-wrapper {
        gap: 2rem;
    }
    
    .hero-image {
        flex: 0 0 300px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
    }
    
    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

/* Mobile Large */
@media (max-width: 768px) and (min-width: 481px) {
    .hero-title {
        font-size: clamp(2.2rem, 5vw, 2.5rem);
    }
    
    .hero-description {
        font-size: clamp(1.1rem, 2.5vw, 1.2rem);
    }
    
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
    }
    
 
}

/* Mobile Small */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        padding: 100px 0 30px 0; /* Réduire le padding sur très petit écran */
    }
    
    .hero-image {
        max-width: 200px; /* Encore plus petit sur très petit écran */
    }
    
    .hero-image img {
        max-height: 270px; /* Réduire encore la hauteur */
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 5vw, 2rem);
        padding: 0.6rem 1rem;
    }
    
    .hero-description {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        padding: 0.6rem 1rem;
    }
    
    .section-title {
        font-size: clamp(1.6rem, 4vw, 1.8rem);
    }
    
    .service-content,
    .event-content {
        padding: 0.8rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .nav-menu {
        width: 95%;
        max-width: none;
    }
    
    .nav-menu a {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.3rem;
    }
    
    .hero-buttons {
        gap: 0.8rem;
    }
    
    .services-grid,
    .events-grid {
        gap: 1rem;
    }
    
    .contact-info {
        gap: 1rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
}

/* Mobile Extra Small */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    .site-header .container {
        padding: 0 10px;
    }
    
    .site-logo {
        width: 100px;
    }
    
    .site-logo img,
    .custom-logo img {
        max-height: 100px;
        top: -50px;
    }
    
    .site-title a {
        font-size: 1rem;
        line-height: 1;
    }
    
    .site-description {
        font-size: 0.7rem;
    }
    
    .hero-section {
        padding: 90px 0 25px 0; /* Encore moins de padding sur extra small */
    }
    
    .hero-image {
        max-width: 160px; /* Très petit sur extra small */
    }
    
    .hero-image img {
        max-height: 210px; /* Très petite hauteur */
    }
    
    .hero-title {
        font-size: clamp(1.6rem, 4vw, 1.8rem);
        padding: 0.5rem 0.8rem;
    }
    
    .hero-description {
        font-size: clamp(0.8rem, 2vw, 0.9rem);
        padding: 0.5rem 0.8rem;
    }
    
    .section-title {
        font-size: clamp(1.4rem, 3.5vw, 1.6rem);
    }
    
    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .nav-menu a {
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.2rem;
    }
    
    .service-card,
    .event-card {
        margin-bottom: 1rem;
    }
    
    .about-content,
    .contact-content {
        gap: 1.5rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
}

/* Améliorations pour l'accessibilité mobile */
@media (max-width: 768px) {
    /* Augmenter la taille des zones de clic */
    .nav-menu a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .btn {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .menu-toggle {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Améliorer la lisibilité */
    .hero-title,
    .hero-description {
        text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    }
    
    .section-title {
        text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    }
    
    /* Améliorer les contrastes */
    .service-card,
    .event-card {
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
    
    .contact-form input:focus,
    .contact-form textarea:focus {
        box-shadow: 0 0 0 3px rgba(11, 57, 16, 0.2);
    }
}

/* Accessibility */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #eee;
    clip: auto !important;
    clip-path: none;
    color: #444;
    display: block;
    font-size: 1em;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* Skip link */
.skip-link {
    background-color: #f1f1f1;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.15);
    color: #0073aa;
    display: block;
    font-size: 14px;
    font-weight: 700;
    height: auto;
    left: 6px;
    line-height: normal;
    padding: 15px 23px 14px;
    position: absolute;
    top: -32px;
    transition: top 1s ease;
    z-index: 100000;
}

.skip-link:focus {
    top: 0;
}

/* Single Prestation Styles */
.prestation-single {
    padding: 2rem 0;
}

.prestation-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
    background: var(--light-bg);
    border-radius: 20px;
    padding: 3rem;
}

.prestation-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.prestation-header-content {
    text-align: center;
}

.prestation-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.entry-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.prestation-subtitle {
    font-size: 1.2rem;
    color: var(--light-text);
    line-height: 1.6;
}

.prestation-content {
    display: grid;
    gap: 3rem;
    margin-bottom: 3rem;
}

.prestation-main {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light-text);
}

.archive .prestation-main, .wp-singular .prestation-main, .archive .event-main, .wp-singular .event-main {
    color: var(--text-color);
}

.prestation-main h2,
.prestation-main h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.prestation-main p {
    margin-bottom: 1.5rem;
}

.prestation-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.prestation-contact-card {
    background: var(--primary-color);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.prestation-contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.prestation-contact-card p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.prestation-contact-card a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.prestation-contact-card a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-actions .btn {
    padding: 1rem;
    font-size: 1rem;
}

.prestation-features {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.prestation-features h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.prestation-features ul {
    list-style: none;
    padding: 0;
}

.prestation-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.prestation-features li:last-child {
    border-bottom: none;
}

.prestation-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
}

.prestation-navigation a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    background: rgba(11, 57, 16, 0.1);
}

.prestation-navigation a:hover {
    color: white;
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(11, 57, 16, 0.3);
}

.nav-back a:hover {
    transform: translateX(-5px);
}

/* Single Event Styles */
.event-single {
    padding: 2rem 0;
}

.event-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
    background: var(--light-bg);
    border-radius: 20px;
    margin: 4rem 0;
}

.event-image {
    margin: 0 2rem;
}

.event-image img {
    width: 100%;
    height: 400px;
    object-fit: contain;
}

.event-header-content {
    text-align: center;
}

.event-meta {
    margin-bottom: 2rem;
    display: inline-grid;
}

.event-date-badge {
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    border-radius: 15px;
    margin-bottom: 1rem;
     display: inline-block;
}

.event-date {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.event-time {
    font-size: 1rem;
    opacity: 0.9;
}

.event-location-badge {
    background: white;
    color: var(--secondary-color);
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.event-excerpt {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.event-content {
    display: flex;
    justify-content: space-between;
}

.event-main {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light-text);
}

.event-main h2,
.event-main h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.event-main p {
    margin-bottom: 1.5rem;
}

.event-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.event-details-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.event-details-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.event-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.event-detail:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: var(--secondary-color);
}

.detail-value {
    color: var(--primary-color);
    text-align: right;
    font-weight: 500;
}

.event-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
    background: rgba(212, 175, 55, 0.1);
    display: inline-block;
}

.event-link:hover {
    color: var(--accent-color);
    background: rgba(212, 175, 55, 0.2);
    text-decoration: none;
}

.event-contact-card {
    background: var(--primary-color);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.event-contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.event-contact-card p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.event-contact-card a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.event-contact-card a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.event-features {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.event-features h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.event-features ul {
    list-style: none;
    padding: 0;
}

.event-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.event-features li:last-child {
    border-bottom: none;
}

.event-navigation {
    /* Alternative au flex */
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
}

.event-navigation a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    background: rgba(11, 57, 16, 0.1);
    display: inline-block;
    margin: 0 1rem;
}

.event-navigation a:hover {
    color: white;
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(11, 57, 16, 0.3);
}

@media (max-width: 768px) {
    .prestation-hero,
    .event-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .prestation-content,
    .event-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .prestation-navigation,
.event-navigation {
    /* Alternative au flex sur mobile */
    text-align: center;
}

.prestation-navigation a,
.event-navigation a {
    display: block;
    margin: 1rem auto;
    max-width: 200px;
}
    
    .entry-title {
        font-size: 2rem;
    }

    .event-detail {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .detail-value {
        text-align: left;
    }
}

/* Styles pour les nouveaux éléments MetaBox */
.event-full {
    color: #e74c3c;
    font-weight: 600;
    margin-left: 0.5rem;
}

.event-gallery,
.prestation-gallery {
    margin: 2rem 0;
}

.gallery-grid {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    overflow-x: auto;
    padding-bottom: 1rem;
}

.gallery-item {
    flex: 0 0 200px;
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item img:hover {
    transform: scale(1.05);
}

/* Styles pour les prestations */
.prestation-details-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.prestation-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.prestation-detail:last-child {
    border-bottom: none;
}

.prestation-detail .detail-label {
    font-weight: 600;
    color: var(--primary-color);
}

.prestation-detail .detail-value {
    text-align: right;
    max-width: 60%;
    color: var(--primary-color);
    font-weight: 500;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 0.1rem;
}

.badge.vegan {
    background: #4caf50;
    color: white;
}

.badge.vegetarian {
    background: #8bc34a;
    color: white;
}

.badge.allergen {
    background: #ff9800;
    color: white;
}

.prestation-services,
.prestation-options {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.prestation-services h4,
.prestation-options h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.services-content,
.options-content {
    line-height: 1.6;
    color: var(--text-color);
}

/* Témoignages */
.prestation-testimonials {
    margin: 2rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.testimonial-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonial-author strong {
    color: var(--primary-color);
}

.rating {
    display: flex;
    gap: 2px;
}

.star {
    color: #ddd;
    font-size: 1.2rem;
}

.star.filled {
    color: #ffc107;
}

/* Responsive pour les nouveaux éléments */
@media (max-width: 768px) {
    .gallery-grid {
        gap: 0.5rem;
    }
    
    .gallery-item {
        flex: 0 0 150px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .prestation-detail {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .prestation-detail .detail-value {
        text-align: left;
        max-width: 100%;
    }
    
    .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
} 