@charset "UTF-8";

/* ==========================================
   ALTITUDE675 - CSS UNIFIÉ FINAL
   Créé le 6 janvier 2025
   ========================================== */

/* ==========================================
   1. VARIABLES & RESET
   ========================================== */

:root {
    --primary-green: #126F43;
    --secondary-beige: #BEA787;
    --white: #FFFFFF;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--white);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* ==========================================
   2. TOP BAR (Téléphone/Email)
   ========================================== */

.top-bar {
    background: var(--secondary-beige);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    align-items: center;
}

.top-bar-link {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s;
}

.top-bar-link:hover {
    opacity: 0.8;
}

.top-bar-link .icon {
    font-size: 16px;
}

/* ==========================================
   3. HEADER PRINCIPAL
   ========================================== */

header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0; /* Suppression complète du padding pour bande ultra-fine */
    position: relative;
    height:80px; /* Hauteur fixe bande blanche */
}

.logo {
    position: absolute; /* Position absolue pour déborder librement */
    left: 20px;
    top: 40%; /* Centré verticalement dans la bande */
    transform: translateY(-50%);
    z-index: 1001;
}

.logo img {
    height: 160px; /* Logo encore plus grand pour bien déborder */
    width: auto;
    transition: transform 0.3s;
    /* Le logo déborde naturellement sur bande OR (en haut) et hero (en bas) */
}

.logo img:hover {
    transform: scale(1.05);
}

/* ==========================================
   4. MENU DESKTOP (Horizontal)
   ========================================== */

.nav-desktop {
    margin-left: auto; /* Pousse le menu à droite */
}

.nav-desktop ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-desktop a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 17px;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s;
}

.nav-desktop a:hover {
    color: var(--primary-green);
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-beige);
    transition: width 0.3s;
}

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

/* ==========================================
   5. MENU HAMBURGER (Mobile uniquement)
   ========================================== */

.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    display: none; /* Caché par défaut (desktop) */
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger:hover span {
    background: var(--secondary-beige);
}

/* ==========================================
   5. MENU OVERLAY (Plein écran)
   ========================================== */

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 111, 67, 0.98);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nav-overlay-content {
    text-align: center;
    position: relative;
    width: 100%;
    max-width: 600px;
    padding: 40px 20px;
}

.nav-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 50px;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.3s, color 0.3s;
}

.nav-close:hover {
    transform: rotate(90deg);
    color: var(--secondary-beige);
}

.nav-overlay-menu {
    list-style: none;
    padding: 0;
    margin: 60px 0 40px;
}

.nav-overlay-menu li {
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

.nav-overlay.active .nav-overlay-menu li:nth-child(1) { animation-delay: 0.1s; }
.nav-overlay.active .nav-overlay-menu li:nth-child(2) { animation-delay: 0.2s; }
.nav-overlay.active .nav-overlay-menu li:nth-child(3) { animation-delay: 0.3s; }
.nav-overlay.active .nav-overlay-menu li:nth-child(4) { animation-delay: 0.4s; }
.nav-overlay.active .nav-overlay-menu li:nth-child(5) { animation-delay: 0.5s; }
.nav-overlay.active .nav-overlay-menu li:nth-child(6) { animation-delay: 0.6s; }

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

.nav-overlay-menu a {
    display: block;
    color: var(--white);
    font-size: 2rem;
    font-weight: 600;
    padding: 15px 20px;
    text-decoration: none;
    transition: all 0.3s;
    border-bottom: 2px solid transparent;
}

.nav-overlay-menu a:hover {
    color: var(--secondary-beige);
    border-bottom-color: var(--secondary-beige);
    transform: translateX(10px);
}

/* Contact dans le menu */
.nav-overlay-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-contact-btn {
    display: inline-block;
    background: var(--white);
    color: var(--primary-green);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.nav-contact-btn:hover {
    background: var(--secondary-beige);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

/* ==========================================
   3. HEROS - STRUCTURE COMMUNE
   ========================================== */

.hero-base {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 140px 20px 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    margin-top: -40px; /* Remonte encore plus pour que logo déborde bien sur hero */
}

.hero-base .container {
    position: relative;
    z-index: 2;
}

.hero-base h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 3px 15px rgba(0,0,0,0.8), 0 0 30px rgba(0,0,0,0.5);
}

.hero-base h2,
.hero-base .hero-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 30px;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0,0,0,0.7), 0 0 20px rgba(0,0,0,0.4);
    color: #fff;
}

/* ==========================================
   4. HEROS - IMAGES SPÉCIFIQUES PAR PAGE
   ========================================== */

/* ACCUEIL - desktop (preload déclaré dans <head> pour LCP) */
.hero-accueil {
    background-image: url('/images/hero/hero-accueil-desktop.webp');
}
/* ACCUEIL - mobile : image recadrée portrait */
@media (max-width: 768px) {
    .hero-accueil {
        background-image: url('/images/hero/hero-accueil-mobile.webp');
        background-position: center center;
    }
}

/* À PROPOS - Anne et Francis */
.hero-apropos {
    background-image: url('../images/hero/IMG_6674-e1748333887322.webp');
}

/* SERVICES - Salle à manger */
.hero-services {
    background-image: url('../images/hero/salleamanger.jpg');
}

/* TARIFS - Station ski */
.hero-tarifs {
    background-image: url('../images/hero/IMG_6674-e1748333887322.webp');
}

/* PARTENAIRES - Linge Linvosges */
.hero-partenaires {
    background-image: url('../images/hero/IMG_6674-e1748333887322.webp');
}

/* CONTACT - Salon cosy */
.hero-contact {
    background-image: url('../images/hero/Salon2.jpg');
    min-height: 400px;
}

/* ==========================================
   5. SECTIONS COMMUNES
   ========================================== */

section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-green);
}

.section-subtitle {
    font-size: 1.3rem;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
    font-weight: 300;
}

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

/* ==========================================
   6. BOUTONS
   ========================================== */

.btn {
    display: inline-block;
    background: var(--secondary-beige);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    margin-top: 30px;
    box-shadow: 0 4px 15px rgba(190, 167, 135, 0.3);
}

.btn:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(18, 111, 67, 0.3);
}

.btn-submit {
    background: var(--secondary-beige);
    color: var(--white);
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    box-shadow: 0 4px 15px rgba(190, 167, 135, 0.3);
}

.btn-submit:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(18, 111, 67, 0.3);
}

/* ==========================================
   7. PAGE ACCUEIL
   ========================================== */

.intro-section {
    background: var(--white);
}

.intro-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-light);
}

.intro-text p {
    margin-bottom: 20px;
}

.intro-text strong {
    color: var(--primary-green);
}

.platforms {
    background: var(--bg-light);
    padding: 50px 0;
}

.platform-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 30px;
}

.platform-grid img {
    height: 40px;
    width: auto;
    filter: grayscale(10%) opacity(0.6);
    transition: all 0.3s;
}

.platform-grid img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

.services-section {
    background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.95));
}

.service-card {
    background: var(--white);
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border-top: 4px solid var(--secondary-beige);
    margin-bottom: 20px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(18, 111, 67, 0.15);
    border-top-color: var(--primary-green);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-green);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 12px;
}

.why-section {
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.why-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid var(--primary-green);
    transition: all 0.3s;
}

.why-card:hover {
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transform: translateX(5px);
}

.why-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--primary-green);
}

.why-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ==========================================
   8. PAGE À PROPOS
   ========================================== */

.anne-francis {
    padding: 80px 20px;
    background: white;
}

.apropos-main-title {
    text-align: center;
    font-size: 2.5rem;
    color: #126F43;
    margin-bottom: 50px;
    font-weight: 600;
}

.apropos-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    overflow: auto;
}

.apropos-image-float {
    float: left;
    width: 400px;
    max-width: 45%;
    margin: 0 40px 30px 0;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.apropos-image-float:hover {
    transform: scale(1.02);
}

.apropos-text-flow {
    text-align: justify;
    line-height: 1.9;
}

.apropos-text-flow p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.9;
}

.apropos-text-flow h3 {
    font-size: 1.8rem;
    color: #126F43;
    margin: 35px 0 20px;
    font-weight: 600;
}

.difference-box {
    margin: 25px 0;
    padding: 20px 25px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #126F43;
}

.difference-box h4 {
    font-size: 1.3rem;
    color: #126F43;
    margin-bottom: 10px;
    font-weight: 600;
}

.difference-box p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* ==========================================
   9. PAGE SERVICES
   ========================================== */

.services-details {
    padding: 80px 20px;
    background: #fafafa;
}

.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
}

.service-block:last-child {
    margin-bottom: 0;
}

.service-left {
    grid-template-columns: 1fr 1fr;
}

.service-left .service-image {
    order: 1;
}

.service-left .service-content {
    order: 2;
}

.service-right {
    grid-template-columns: 1fr 1fr;
}

.service-right .service-image {
    order: 2;
}

.service-right .service-content {
    order: 1;
}

.service-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    transition: all 0.4s ease;
}

.service-image img:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(18,111,67,0.15);
}

.service-content {
    padding: 20px;
}

.service-content h2 {
    font-size: 2.2rem;
    color: #126F43;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.3;
}

.service-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #444;
}

/* ==========================================
   10. PAGE TARIFS
   ========================================== */

.offres-principales {
    padding: 80px 20px;
    background: #f8f9fa;
}

.deux-colonnes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.offre-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.offre-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.offre-recommandee {
    border: 3px solid #126F43;
    box-shadow: 0 15px 50px rgba(18,111,67,0.2);
}

.offre-recommandee:hover {
    box-shadow: 0 20px 60px rgba(18,111,67,0.25);
}

.offre-badge {
    background: #126F43;
    color: white;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
}

.offre-badge-lancement {
    background: #0a4a2d;
}

.offre-header {
    padding: 40px 30px 30px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.offre-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.offre-header h3 {
    font-size: 2rem;
    color: #126F43;
    margin-bottom: 10px;
    font-weight: 700;
}

.offre-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
}

.offre-body {
    padding: 30px;
}

.offre-description {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.offre-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offre-features li {
    padding: 12px 0;
    font-size: 1.05rem;
    color: #444;
    line-height: 1.6;
    border-bottom: 1px solid #f5f5f5;
}

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

.offre-separator {
    text-align: center;
    margin: 30px 0;
}

.plus-icon {
    display: inline-block;
    font-size: 2.5rem;
    color: #126F43;
    font-weight: 700;
}

.options-complementaires {
    padding: 80px 20px;
    background: white;
}

.options-card {
    max-width: 1200px;
    margin: 0 auto;
    background: #f8f9fa;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.options-badge {
    background: #666;
    color: white;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
}

.options-header {
    padding: 40px 30px;
    text-align: center;
    background: white;
}

.options-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.options-header h3 {
    font-size: 2rem;
    color: #126F43;
    margin-bottom: 10px;
    font-weight: 700;
}

.options-subtitle {
    font-size: 1.1rem;
    color: #666;
}

.options-body {
    padding: 40px;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.option-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.option-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.option-item h4 {
    font-size: 1.3rem;
    color: #126F43;
    margin-bottom: 10px;
    font-weight: 600;
}

.option-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.cta-tarifs {
    padding: 80px 20px;
    background: linear-gradient(135deg, #126F43 0%, #0a4a2d 100%);
    color: white;
    text-align: center;
}

.cta-tarifs h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-tarifs p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

.btn-phone, .btn-email {
    padding: 18px 40px;
    font-size: 1.15rem;
    font-weight: 600;
    background: white;
    color: #126F43;
    border: none;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-phone:hover, .btn-email:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.disponibilite {
    font-size: 1.1rem;
    margin: 30px 0;
    font-style: italic;
    opacity: 0.9;
}

.cta-contact {
    margin-top: 40px;
}

.btn-large {
    padding: 18px 50px;
    font-size: 1.15rem;
    font-weight: 600;
    background: white;
    color: #126F43;
    border-radius: 10px;
}

/* ==========================================
   11. PAGE CONTACT
   ========================================== */

.contact-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-form h3 {
    color: var(--primary-green);
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info h3 {
    color: var(--primary-green);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.contact-info p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid var(--primary-green);
    transition: all 0.3s;
}

.contact-card:hover {
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transform: translateX(5px);
}

.contact-card h4 {
    color: var(--primary-green);
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-card p {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.contact-card a {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.contact-card a:hover {
    color: var(--secondary-beige);
}

.availability {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
    border: 2px solid var(--secondary-beige);
}

.availability p {
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
}

/* ==========================================
   12. CTA SECTION
   ========================================== */

.cta-section {
    background: url('../images/hero/Salon2.jpg') center/cover no-repeat fixed;
    color: var(--white);
    text-align: center;
    padding: 100px 20px;
}

.cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 0 3px 15px rgba(0,0,0,0.8), 0 0 30px rgba(0,0,0,0.5);
}

.cta-section p {
    max-width: 900px;
    margin: 0 auto 20px;
    font-size: 1.15rem;
    line-height: 1.9;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0,0,0,0.7);
}

.cta-section .btn {
    background: var(--white);
    color: var(--primary-green);
    margin-top: 40px;
}

.cta-section .btn:hover {
    background: var(--secondary-beige);
    color: var(--white);
}

/* ==========================================
   12B. SECTION SERVICES HERO
   ========================================== */

.services-hero-section {
    background: url('../images/hero/Salon2.jpg') center/cover no-repeat fixed;
    color: var(--white);
    padding: 100px 20px;
}

.section-title-white {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--white);
    text-align: center;
    font-weight: 700;
    text-shadow: 0 3px 15px rgba(0,0,0,0.8), 0 0 30px rgba(0,0,0,0.5);
}

.section-subtitle-white {
    font-size: 1.3rem;
    margin-bottom: 60px;
    color: var(--white);
    text-align: center;
    font-weight: 400;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0,0,0,0.7);
}

.service-hero-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 12px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s ease;
}

.service-hero-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.service-hero-card h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0,0,0,0.7);
}

.service-hero-card p {
    color: var(--white);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 10px;
    opacity: 0.95;
    text-shadow: 0 1px 5px rgba(0,0,0,0.6);
}

.service-hero-card p strong {
    font-weight: 600;
    font-size: 1.15rem;
    display: block;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .services-hero-section {
        padding: 60px 20px;
    }
    
    .section-title-white {
        font-size: 2rem;
    }
    
    .section-subtitle-white {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .service-hero-card {
        padding: 30px 20px;
    }
    
    .service-hero-card h3 {
        font-size: 1.5rem;
    }
    
    .service-hero-card p {
        font-size: 1rem;
    }
}

/* ==========================================
   13. FOOTER
   ========================================== */

footer {
    background: #2c3e50;
    color: #bbb;
    padding: 60px 20px 30px;
}

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

footer h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

footer ul {
    list-style: none;
}

footer li {
    margin-bottom: 12px;
}

footer a {
    color: #bbb;
    transition: color 0.3s;
}

footer a:hover {
    color: var(--secondary-beige);
}

.footer-logo img {
    max-height: 150px;
    margin-bottom: 20px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #888;
    font-size: 0.9rem;
}

/* ==========================================
   14. RESPONSIVE
   ========================================== */

/* Tablettes et petits écrans */
@media (max-width: 992px) {
    .deux-colonnes {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-block {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
    
    .service-right .service-image,
    .service-right .service-content,
    .service-left .service-image,
    .service-left .service-content {
        order: initial !important;
    }

    .logo img {
        height: 100px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    /* HEADER MOBILE */
    .top-bar {
        display: none; /* Cache téléphone/email sur mobile */
    }

    .header-content {
        height: 80px; /* Bande plus haute sur mobile */
    }
    
    .logo {
        left: 10px; /* Plus proche du bord */
        top: 50%; /* Bien centré */
    }
    
    .logo img {
        height: 100px; /* Taille optimale mobile (pas trop petit, pas trop grand) */
    }

    /* Cache menu desktop, affiche hamburger */
    .nav-desktop {
        display: none !important;
    }

    .hamburger {
        display: flex !important; /* Affiche le hamburger sur mobile */
        margin-left: auto; /* Pousse hamburger à droite */
        margin-right: 10px; /* Espace du bord */
    }

    .hamburger span {
        width: 25px;
    }

    .nav-overlay-menu a {
        font-size: 1.5rem;
        padding: 12px 15px;
    }

    .nav-close {
        font-size: 40px;
        top: 10px;
        right: 20px;
    }

    .nav-contact-btn {
        font-size: 1rem;
        padding: 12px 25px;
    }

    /* RESTE DU SITE */
    .hero-base h1 {
        font-size: 2.2rem;
    }
    
    .hero-base h2,
    .hero-base .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .apropos-image-float {
        float: none;
        width: 100%;
        max-width: 100%;
        margin: 0 0 30px 0;
    }
    
    .apropos-text-flow {
        text-align: left;
    }
    
    .service-block {
        padding: 30px 20px;
        margin-bottom: 50px;
    }
    
    .service-content h2 {
        font-size: 1.6rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Très petits mobiles */
@media (max-width: 480px) {
    .hero-base h1 {
        font-size: 1.8rem;
    }

    .hero-base h2,
    .hero-base .hero-subtitle {
        font-size: 1.1rem;
    }

    .nav-overlay-menu a {
        font-size: 1.3rem;
    }
}
/* --- AJOUTS OPTIMISATION ALTITUDE675 --- */

/* Bouton Estimation dans le menu */
.nav-desktop ul li a.nav-cta {
    background-color: var(--secondary-color) !important;
    color: var(--white) !important;
    padding: 10px 20px !important;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

.nav-desktop ul li a.nav-cta:hover {
    background-color: var(--primary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Espacement des icones top-bar */
.top-bar-link .icon {
    margin-right: 5px;
}

/* Optimisation affichage mobile boutons contact */
.nav-overlay-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
}