/* ===========================
   BASE & RESET
=========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #2c2c2c;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #f2f2f2;
}

html {
    scroll-behavior: smooth;
}

/* ===========================
   CADRE SITE – DESKTOP
=========================== */
@media (min-width: 1024px) {
    body {
        background-color: #f2f2f2;
        padding: 0 0 40px;
    }

    .site-wrapper {
        max-width: 1200px;
        margin: 0 auto;
        background-color: #ffffff;
        border-radius: 18px;
        overflow: visible;
    }
	
	.site-content {
		overflow: hidden;
	}

    .site-header {
        border-radius: 18px 18px 0 0;
		max-width: 1200px;
        margin: 0 auto;
    }

    footer {
        border-radius: 0 0 18px 18px;
    }
}

/* ===========================
   ANIMATIONS
=========================== */
.hero,
.why,
.infos,
.galerie,
.partners,
.contact,
.prestations {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

/* ===========================
   HEADER SMART
=========================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(135deg, #1a1a1a 0%, #3d2817 100%);
    padding: 18px 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-end; /* alignement bas */
    gap: 40px; /* 👈 distance logo / menu */
}

section[id] {
    scroll-margin-top: 140px;
}

/* LOGO */
.logo-wrapper {
	margin-right: 30px;
    margin-top: 0;
    transition: transform 0.3s ease;
}

.logo-wrapper:hover {
    transform: translateY(-2px);
}

.logo {
    height: 80px;
	width: auto;
    display: block;
}

/* ===========================
   MENU TOGGLE (mobile)
=========================== */
.menu-toggle {
    display: none;
}

/* ===========================
   NAVIGATION
=========================== */
.main-nav {
    display: flex;
    gap: 25px;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #ffa559;
}

.main-nav a.active {
    color: #ffa559;
}

.main-nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #D2691E, #ff8c42);
    border-radius: 2px;
}

/* ===========================
   BANDEAU SUCCÈS
=========================== */
.success-banner {
    background: linear-gradient(135deg, #7fb241 0%, #5a8a2f 100%);
    color: #fff;
    padding: 14px 20px;
    text-align: center;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(127, 178, 65, 0.3);
}

.success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.25);
    font-size: 14px;
    font-weight: bold;
}

/* ===========================
   HERO SECTION - Animation flammes par frames (4 PNG)
=========================== */

.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #3d2817 100%);
    color: white;
    padding: 120px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Animation flammes - Cycle de 4 images avec fondu */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
	background-image: url('../images/flamme.png');
    background-size: 200px 200px;
    background-repeat: repeat;
    opacity: 0.01;
    animation: flameAnimation 1.2s infinite;
}

@keyframes flameAnimation {
    0% {
        background-image: url('../images/flamme.png');
        opacity: 0.01;
    }
    23% {
        opacity: 0.015;
    }
    25% {
        background-image: url('../images/flamme1.png');
        opacity: 0.01;
    }
    48% {
        opacity: 0.015;
    }
    50% {
        background-image: url('../images/flamme2.png');
        opacity: 0.01;
    }
    73% {
        opacity: 0.015;
    }
    75% {
        background-image: url('../images/flamme3.png');
        opacity: 0.01;
    }
    98% {
        opacity: 0.01;
    }
    100% {
        background-image: url('../images/flamme.png');
        opacity: 0.01;
    }
}

.hero h1 {
    position: relative;
    z-index: 1;
    font-size: 3em;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ff8c42, #D2691E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero h2 {
    position: relative;
    z-index: 1;
    font-size: 1.8em;
    margin-bottom: 25px;
    color: #ffa559;
    font-weight: 300;
}

.hero p {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 20px auto;
    font-size: 1.2em;
    line-height: 1.8;
    color: #e0e0e0;
}

.hero p.note {
    margin-top: 15px;
    font-size: 0.95rem;
    color: #ccc;
    opacity: 0.9;
}

/* ===========================
   SECTIONS
=========================== */
.infos,
.why,
.galerie,
.prestations {
    padding: 80px 20px;
    text-align: center;
}

.infos {
    background: #f9f6f1;
}

.galerie,
.why {
    background: white;
}

.prestations {
    background: #f9f6f1;
}

.section-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.2em;
    color: #666;
    line-height: 1.8;
}

.infos h2,
.why h2,
.galerie h2,
.prestations h2,
.partners h2,
.contact h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.infos h3 {
    font-size: 1.6em;
    color: #D2691E;
    margin: 30px 0 15px;
}

.infos p,
.why p, {
    max-width: 900px;
    margin: 0 auto 20px;
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
}

/* ===========================
   IMAGES SECTION QUI SOMMES-NOUS
=========================== */

.img-who {
    position: relative;
    display: inline-block;
    max-width: 100%;
    margin: 30px auto;
    background: linear-gradient(135deg, #D2691E 0%, #ff8c42 100%);
    padding: 3px;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(210, 105, 30, 0.15);
    
    /* Centre le cadre dans la section */
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    
    /* Animation d'apparition */
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

.img-who img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 11px;
    transition: transform 0.3s ease;
}

.img-caption {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 10px;
}

/* Effet hover (desktop uniquement) */
@media (hover: hover) {
    .img-who:hover {
        box-shadow: 0 15px 40px rgba(210, 105, 30, 0.3);
    }
    
    .img-who:hover img {
        transform: scale(1.02);
    }
}

/* Décalage des animations pour effet cascade */
.img-who:nth-of-type(1) {
    animation-delay: 0.2s;
}

.img-who:nth-of-type(2) {
    animation-delay: 0.4s;
}

/* Responsive mobile */
@media (max-width: 768px) {
    .img-who {
        margin: 25px 0;
    }
}

/* ===========================
   MICRO-PILIERS (VALUES)
=========================== */
.values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 50px auto 0;
    text-align: center;
}

.feature-icon {
    font-size: 3.5em;
    margin-bottom: 20px;
}

.value-item {
    padding: 40px 30px;
    border-radius: 20px;
    background: white;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(210, 105, 30, 0.2);
}

.value-item h3 {
    color: #D2691E;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.value-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* Variantes couleur subtiles */
.value-item.cuisine {
    background: linear-gradient(135deg, #fff 0%, #fff5f8 100%);
}

.value-item.materiel {
    background: linear-gradient(135deg, #fff 0%, #f0f6ff 100%);
}

.value-item.partage {
    background: linear-gradient(135deg, #fff 0%, #f2fff5 100%);
}

.value-item.evenements {
    background: linear-gradient(135deg, #fff 0%, #fff8f0 100%);
}


/* ===========================
   GALERIE DYNAMIQUE - Double image (flou + nette)
=========================== */

.galerie-wrapper {
    max-width: 1200px;
    margin: 40px auto 0;
    position: relative;
    overflow: visible;
}

.galerie-track {
    display: flex;
    gap: 20px;
    align-items: stretch;
}

/* Cadre avec bordure dégradée */
.galerie-item {
    position: relative;
    flex: 0 0 calc(33.333% - 14px);
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 0.8s ease, transform 0.8s ease;
    
    /* Bordure dégradée orange */
    background: linear-gradient(135deg, #D2691E 0%, #ff8c42 100%);
    padding: 3px;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(210, 105, 30, 0.15);
    box-sizing: border-box;
    z-index: 1;
    cursor: pointer;
}

.galerie-item.active {
    opacity: 1;
    transform: scale(1);
}

/* Container des images */
.galerie-image-container {
    position: relative;
    width: 100%;
    height: 320px; /* Hauteur fixe desktop */
    border-radius: 11px;
    overflow: hidden;
    background: #2c2c2c;
}

/* Image de fond floutée - COUVRE TOUT LE CONTAINER */
.galerie-img-blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(15px) brightness(1);
    z-index: 1;
}

/* Image principale nette - CENTREE */
.galerie-img-main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 96%;
    max-height: 96%;
    width: auto;
    height: auto;
    object-fit: contain;
    z-index: 2;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* Effet hover desktop */
@media (hover: hover) {
    .galerie-item:hover {
        z-index: 50;
        transform: scale(1.12);
        box-shadow: 0 15px 40px rgba(210, 105, 30, 0.3);
    }
    
    .galerie-item:hover .galerie-img-blur {
        filter: blur(20px) brightness(0.8);
    }
}

.galerie p.note {
    margin-top: 30px;
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
}

/* Mobile */
@media (max-width: 768px) {
    .galerie-wrapper {
        overflow: hidden;
    }

    .galerie-item {
        flex: 0 0 100%;
        transform: none;
    }

    .galerie-image-container {
        height: 280px; /* Hauteur fixe mobile */
    }
    
    .galerie-img-main {
        max-width: 98%;
        max-height: 98%;
    }
}

/* ===========================
   LIGHTBOX
=========================== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(61,40,23, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox button {
    position: absolute;
    background: rgba(210, 105, 30, 0.8);
    border: none;
    color: #fff;
    cursor: pointer;
    user-select: none;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-weight: bold;
}

.lightbox-prev,
.lightbox-next {
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.6rem;
}

.lightbox-prev {
    left: 24px;
}

.lightbox-next {
    right: 24px;
}

.lightbox-close {
    top: 20px;
    right: 24px;
    font-size: 1.6rem;
    width: 50px;
    height: 50px;
}

@media (hover: hover) {
    .lightbox button:hover {
        background: rgba(210, 105, 30, 1);
        transform: translateY(-50%) scale(1.1);
    }
    
    .lightbox-close:hover {
        transform: scale(1.1);
    }
}

/* ===========================
   PARTENAIRES
=========================== */
.partners {
    padding: 80px 20px;
    text-align: center;
    background: white;
}

.partners-intro {
    max-width: 700px;
    margin: 0 auto 40px;
    color: #666;
    font-size: 1.1em;
}

.partners-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* boutons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: #D2691E;
    color: white;
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.partners-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s ease;
    will-change: transform;
}

.partner-card {
	display: flex;
    flex-direction: column;
    box-sizing: border-box;
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    padding: 35px 30px;
    border-radius: 18px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.partner-card img {
    max-height: 80px;
    margin-bottom: 18px;
    object-fit: contain;
}

.partner-card h3 {
    margin: 10px 0;
    color: #D2691E;
    font-size: 1.1rem;
}

@media (hover: hover) {
    .partner-card:hover {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(210, 105, 30, 0.2);
    }
}

@media (min-width: 1024px) {
    .partner-card {
        flex: 0 0 50%;
    }
}

@media (max-width: 1023px) {
    .partner-card {
        flex: 0 0 100%;
    }
	
	.partners-track {
    cursor: grab;
    user-select: none;
	}

	.partners-track:active {
    cursor: grabbing;
	}
}

/* ===========================
   RÉALISATIONS
=========================== */
.prestations-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	max-width: 1200px;
	margin: 50px auto 0;
}

.prestation-card {
	background: linear-gradient(135deg, #2c2c2c 0%, #3d2817 100%);
	color: white;
	padding: 40px;
	border-radius: 20px;
	text-align: left;
	position: relative;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0,0,0,0.2);
	transition: transform 0.3s ease;
}

.prestation-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(210, 105, 30, 0.15) 0%, transparent 70%);
    transition: all 0.5s ease;
}

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

.prestation-card:hover::before {
    top: -100%;
    right: -100%;
}

.prestation-category {
	margin: 0 0 25px;
	font-size: 1.5rem;
	font-weight: bold;
	color: #ffa559;
	position: relative;
	z-index: 1;
	padding-bottom: 10px;
	border-bottom: 2px solid rgba(255, 165, 89, 0.3);
}

.prestation-item {
	margin-bottom: 22px;
	position: relative;
	z-index: 1;
}

.prestation-card h4 {
	margin: 0 0 8px;
	font-size: 1.15rem;
	color: #ff8c42;
}

.prestation-card p,
.prestation-card ul {
    list-style: none;
	font-size: 1rem;
	color: #e0e0e0;
	line-height: 1.7;
}

.prestation-card ul {
	padding-left: 20px;
	margin: 10px 0 0;
}

.prestation-card li {
	margin-bottom: 8px;
	position: relative;
	padding-left: 8px;
}

.prestation-card li::before {
    content: '🔥';
    position: absolute;
    left: -18px;
}

/* ===========================
   CONTACT
=========================== */
.contact {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    background: white;
}

#contact {
    scroll-margin-top: 130px;
}

.contact-form {
    background: linear-gradient(135deg, #f9f6f1 0%, #fff 100%);
    padding: 50px 40px;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.contact-form h2 {
    text-align: center;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.contact-form > p {
    text-align: center;
    margin-bottom: 30px;
    color: #555;
    line-height: 1.7;
}

.contact-form label {
    display: block;
    margin-top: 20px;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c2c2c;
}

.contact-form label:first-of-type {
    margin-top: 0;
}

.contact-form input:not([type="checkbox"]),
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    font-size: 1em;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #D2691E;
    box-shadow: 0 0 0 3px rgba(210, 105, 30, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Captcha */

.captcha-container {
    margin: 20px 0;
	text-align: center;
}

.captcha-image-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}

#captcha-image {
    border: 3px solid #D2691E;
    border-radius: 8px;
    display: block;
    box-shadow: 0 4px 12px rgba(210, 105, 30, 0.2);
}

.captcha-reload {
    background: linear-gradient(135deg, #D2691E, #ff8c42);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9em;
    transition: transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(210, 105, 30, 0.3);
}

.captcha-reload:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(210, 105, 30, 0.4);
}

.captcha-reload:active {
    transform: translateY(0);
}

#captcha-input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1em;
    margin-top: 10px;
}

#captcha-input:focus {
    outline: none;
    border-color: #D2691E;
    box-shadow: 0 0 0 3px rgba(210, 105, 30, 0.1);
}

/* RGPD */
.rgpd-consent {
    margin: 25px 0;
}

.rgpd-consent label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: normal;
    cursor: pointer;
    text-align: left;
}

.rgpd-consent input[type="checkbox"] {
    width: auto;
    display: inline-block;
    margin-top: 4px;
    flex-shrink: 0;
    cursor: pointer;
}

.hidden {
    display: none;
}

.form-actions {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.form-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    line-height: 1.6;
}

/* ===========================
   BOUTONS
=========================== */
.btn {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, #D2691E, #ff8c42);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1.1em;
    line-height: 1;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(210, 105, 30, 0.4);
    position: relative;
    z-index: 1;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(210, 105, 30, 0.6);
}

.btn:active {
    transform: translateY(-1px);
}

/* ===========================
   MENTIONS LÉGALES
=========================== */
.mentions {
    text-align: center;
    padding: 60px 20px;
    font-size: 0.95rem;
    max-width: 1200px;
    margin: auto;
    background: #f9f6f1;
}

.mentions h2 {
    font-size: 2em;
    margin-bottom: 30px;
    color: #2c2c2c;
}

.mentions h3 {
    font-size: 1.3em;
    color: #D2691E;
    margin: 25px 0 10px;
}

.mentions p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

/* ===========================
   BACK TO TOP
=========================== */
#backToTop {
    position: fixed;
    bottom: 20px;
    right: 30px;
    background: linear-gradient(135deg, #D2691E, #ff8c42);
    color: white;
    border: none;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(210, 105, 30, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.cookies-visible #backToTop {
  bottom: 70px;
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#backToTop:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(210, 105, 30, 0.6);
}

/* ===========================
   WHATSAPP FLOAT
=========================== */
.whatsapp-float {
    position: fixed;
    right: 30px;
    bottom: 90px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #25D366;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-float img {
    width: 28px;
    height: 28px;
    display: block;
}

body.cookies-visible .whatsapp-float {
    bottom: 140px;
}

@media (hover: hover) {
    .whatsapp-float:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5);
    }
}

/* ===========================
   FOOTER
=========================== */
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #3d2817 100%);
    color: white;
    text-align: center;
    padding: 30px 20px;
}

footer p {
    margin-bottom: 15px;
    opacity: 0.9;
}

footer a {
    color: #ffa559;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #D2691E;
}

/* ===========================
   BANDEAU COOKIES
=========================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(127, 178, 65, 0.95) 0%, rgba(90, 138, 47, 0.95) 100%);
    color: white;
    padding: 18px 20px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie-banner p {
    margin: 0;
    flex: 1;
}

.cookie-banner a {
    color: white;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-actions button {
    appearance: none;
    background-color: white;
    border: none;
    border-radius: 25px;
    padding: 10px 22px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c2c2c;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-actions button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.cookie-actions button#cookie-refuse {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.cookie-actions button#cookie-refuse:hover {
    background-color: rgba(255,255,255,0.1);
}

/* Bouton gérer les cookies */
.cookie-settings-btn {
    background: linear-gradient(135deg, #D2691E, #ff8c42);
    color: #ffffff;
    border: none;
    border-radius: 25px;
    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(210, 105, 30, 0.3);
}

.cookie-settings-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(210, 105, 30, 0.4);
}

/* ===========================
   RESPONSIVE MOBILE
=========================== */
@media (max-width: 1024px) {
    
    html {
        font-size: 16px;
    }

    body {
        line-height: 1.8;
    }

    section {
        padding: 60px 20px;
    }

    h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    h2 {
        font-size: 1.7rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    /* HEADER */
    .site-header {
        flex-direction: column;
        align-items: center;
        padding: 22px 0;
    }

	.header-inner {
        flex-direction: column;
        align-items: center;
        gap: 7px; /* espace logo / burger */
    }

    .logo {
        height: 65px;
    }

    .logo-wrapper {
		margin: 0;
        transform: none !important;
    }

    .menu-toggle {
        display: block;
        background: none;
        border: none;
        color: white;
        font-size: 32px;
        margin-top: 10px;
        cursor: pointer;
    }
	
    body.menu-open {
        overflow: hidden;
    }

    .main-nav {
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
        margin-top: 10px;
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        font-size: 1.1rem;
    }

    section[id] {
        scroll-margin-top: 170px;
    }

    /* HERO */
    .hero {
        padding: 80px 20px 60px;
    }

    .hero h1 {
        font-size: 2em;
    }

    .hero h2 {
        font-size: 1.3em;
    }

    .hero p {
        font-size: 1em;
    }

    /* VALUES */
    .values {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .value-item {
        padding: 26px 22px;
    }

    /* GALERIE 
    .galerie-wrapper {
        overflow: hidden;
    }

    .galerie-item {
        flex: 0 0 100%;
        transform: none;
    }

    .galerie-item img {
        height: 200px;
    }*/

    /* LIGHTBOX */
    .lightbox-prev,
    .lightbox-next {
        width: 46px;
        height: 46px;
        font-size: 2.2rem;
    }

    .lightbox-prev {
        left: 12px;
    }

    .lightbox-next {
        right: 12px;
    }

    .lightbox-close {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }

    /* RÉALISATIONS */
    .prestations-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .prestation-card {
        padding: 30px 25px;
    }

    /* FORMULAIRE */
    .contact-form {
        padding: 30px 25px;
    }

    input,
    textarea {
        font-size: 1.05rem;
        padding: 12px;
    }

    .btn {
        font-size: 1.05rem;
        padding: 14px 32px;
        width: 100%;
    }

    /* BACK TO TOP */
    #backToTop {
        width: 50px;
        height: 50px;
        font-size: 22px;
        bottom: 20px;
        right: 20px;
    }
	
    body.cookies-visible #backToTop {
        bottom: 150px;
    }

    /* WHATSAPP */
    .whatsapp-float {
        right: 20px;
        bottom: 80px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float img {
        width: 24px;
        height: 24px;
    }

    body.cookies-visible .whatsapp-float {
        bottom: 220px;
    }

    /* COOKIES */
    .cookie-banner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 16px;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

    .cookie-actions button {
        flex: 1;
    }
}