/* Variables CSS pour les couleurs saisonnières */
:root {
    --spring: #ff69b4;
    --summer: #ffa500;
    --autumn: #d2691e;
    --winter: #4169e1;
    --primary: #ff69b4; /* Couleur principale = spring */
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--spring);
}

.nav-logo i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--spring);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--spring);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

/* Navigation desktop - s'assurer qu'elle est visible */
@media (min-width: 769px) {
    .nav-menu {
        display: flex !important;
        position: static !important;
        flex-direction: row !important;
        background: transparent !important;
        width: auto !important;
        height: auto !important;
        left: auto !important;
        top: auto !important;
        gap: 2rem !important;
        list-style: none !important;
    }
    
    .nav-toggle {
        display: none !important;
    }
}

/* Menu Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
    position: absolute;
}

.nav-toggle span:nth-child(1) {
    transform: translateY(-7px);
}

.nav-toggle span:nth-child(2) {
    transform: translateY(0);
}

.nav-toggle span:nth-child(3) {
    transform: translateY(7px);
}

/* Animation du hamburger actif */
.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    background: var(--spring);
}

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

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    background: var(--spring);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.seasonal-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.season-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.season-layer.active {
    opacity: 1;
}

.season-layer.spring {
    background: linear-gradient(135deg, #ffeef8 0%, #f0fff0 100%);
}

.season-layer.summer {
    background: linear-gradient(135deg, #fff8dc 0%, #e0f6ff 100%);
}

.season-layer.autumn {
    background: linear-gradient(135deg, #fdf5e6 0%, #f4e4bc 100%);
}

.season-layer.winter {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6e6fa 100%);
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 800px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.seasonal-text {
    background: linear-gradient(45deg, var(--spring), var(--summer), var(--autumn), var(--winter));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Sélecteur de Saisons */
.season-selector {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.season-option {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 1.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 140px;
    border: 3px solid transparent;
}

.season-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.season-option.active[data-season="spring"] {
    border-color: var(--spring);
    background: rgba(255, 105, 180, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.3);
}

.season-option.active[data-season="spring"] span {
    color: var(--spring);
    font-weight: 700;
}

.season-option.active[data-season="summer"] {
    border-color: var(--summer);
    background: rgba(255, 165, 0, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 165, 0, 0.3);
}

.season-option.active[data-season="summer"] span {
    color: var(--summer);
    font-weight: 700;
}

.season-option.active[data-season="autumn"] {
    border-color: var(--autumn);
    background: rgba(210, 105, 30, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(210, 105, 30, 0.3);
}

.season-option.active[data-season="autumn"] span {
    color: var(--autumn);
    font-weight: 700;
}

.season-option.active[data-season="winter"] {
    border-color: var(--winter);
    background: rgba(65, 105, 225, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(65, 105, 225, 0.3);
}

.season-option.active[data-season="winter"] span {
    color: var(--winter);
    font-weight: 700;
}

/* Icônes actives */
.season-option.active[data-season="spring"] .season-icon {
    color: var(--spring);
    transform: scale(1.1);
}

.season-option.active[data-season="summer"] .season-icon {
    color: var(--summer);
    transform: scale(1.1);
}

.season-option.active[data-season="autumn"] .season-icon {
    color: var(--autumn);
    transform: scale(1.1);
}

.season-option.active[data-season="winter"] .season-icon {
    color: var(--winter);
    transform: scale(1.1);
}

/* Description active */
.season-option.active .season-description {
    color: var(--text-dark);
    font-weight: 600;
    opacity: 0.9;
}

.season-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.season-option span {
    display: block;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.season-description {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Boutons CTA */
.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: linear-gradient(45deg, var(--spring), var(--summer));
    color: white;
}

.cta-button.secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--spring);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button.secondary:hover {
    transform: translateY(-3px);
    background: rgba(255, 105, 180, 0.1);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--shadow);
}

/* Sections */
.seasons-services {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.8);
}

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

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

/* Responsive: Nos Univers Saisonniers */
@media (max-width: 1200px) {
    .seasons-grid {
        grid-template-columns: repeat(2, minmax(260px, 1fr));
        gap: 1.75rem;
    }
}

@media (max-width: 768px) {
    .seasons-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .season-card {
        padding: 1.5rem;
    }
}



.season-card {
    position: relative;
    border-radius: 20px;
    padding: 2rem;
    background: white;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.3s ease;
    overflow: hidden;
    cursor: pointer;
}

.season-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--shadow);
}

.season-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    transition: opacity 0.3s ease;
}

.season-card:hover .season-card-bg {
    opacity: 0.1;
}

.season-card-content {
    position: relative;
    z-index: 1;
}

.season-header {
    text-align: center;
    margin-bottom: 2rem;
}

.season-icon-large {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.season-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.season-subtitle {
    color: var(--text-light);
    font-style: italic;
}

.season-services h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.season-services ul {
    list-style: none;
    margin-bottom: 2rem;
}

.season-services li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.season-services li i {
    margin-right: 0.8rem;
    color: var(--spring);
}

.season-atmosphere {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    font-style: italic;
    color: var(--text-light);
}

/* Contact */
.contact {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr; /* Empile: infos au-dessus, formulaire en dessous */
    gap: 2.5rem;
    align-items: start;
}

.contact-form {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 50px var(--shadow);
    max-width: 720px; /* centré et lisible sur desktop */
    width: 100%;
    margin: 0 auto;
}

.contact-info {
    max-width: 880px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--spring);
    box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(45deg, var(--spring), var(--summer));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--shadow);
}

/* Footer */
.footer {
    background: var(--text-dark);
    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 {
    display: flex;
    align-items: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--spring);
    margin-bottom: 1rem;
}

/* Media Queries Responsive */

/* Tablettes */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .nav-container {
        padding: 1rem 1.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .season-selector {
        gap: 0.8rem;
    }
    
    .season-option {
        min-width: 120px;
        padding: 1.2rem 0.8rem;
    }
}

/* Mobiles */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .nav-logo {
        font-size: 1.3rem;
    }
    
    .nav-logo i {
        font-size: 1.5rem;
    }
    
    /* Menu mobile */
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        opacity: 0;
        transform: translateY(20px);
        animation: none;
    }
    
    .nav-menu.active li {
        animation: slideInUp 0.6s ease forwards;
    }
    
    .nav-menu.active li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu.active li:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu.active li:nth-child(4) { animation-delay: 0.4s; }
    
    .nav-menu a {
        font-size: 1.3rem;
        font-weight: 600;
        padding: 1rem;
    }
    
    /* Hero mobile */
    .hero {
        height: 100vh;
        padding: 0 1rem;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .season-selector {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .season-option {
        min-width: 200px;
        padding: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 250px;
        justify-content: center;
        text-align: center;
    }
    
    /* Sections mobile */
    .seasons-services,
    .immersive-experience,
    .services-detail,
    .contact {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
        /* Cartes saisons mobile */
    .season-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        transform: translateY(0);
        transition: all 0.3s ease;
    }

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

    .season-icon-large {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        display: block;
        text-align: center;
    }

    .season-header {
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .season-header h3 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .season-subtitle {
        font-size: 0.9rem;
        color: var(--text-light);
        font-style: italic;
    }

    .season-services {
        margin-bottom: 1.5rem;
    }

    .season-services h4 {
        font-size: 1.2rem;
        text-align: center;
        margin-bottom: 1rem;
        color: var(--text-dark);
    }

    .season-services ul {
        list-style: none;
        padding: 0;
    }

    .season-services li {
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        font-size: 0.9rem;
    }

    .season-services li:last-child {
        border-bottom: none;
    }

    .season-services li i {
        margin-right: 0.8rem;
        color: var(--spring);
        font-size: 1rem;
    }

    .season-atmosphere {
        text-align: center;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.7);
        border-radius: 10px;
        font-style: italic;
        color: var(--text-light);
        font-size: 0.9rem;
    }
    
        /* Expérience mobile */
    .experience-content {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }

    .experience-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        margin: 1.5rem 0 2rem;
        width: 100%;
        max-width: 100%;
    }

    .experience-item {
        padding: 1.5rem;
        min-height: auto;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .experience-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .experience-item h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .experience-item p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .seasonal-showcase {
        height: 250px;
        margin: 2rem 1rem 0; /* ajoute un espace à gauche et à droite */
    }
    .showcase-item { padding: 0 1.25rem; }
    .showcase-text { padding: 0.75rem 1.25rem; }
    
    /* Onglets mobile */
    .tab-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
    }
    
    .tab-btn {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-item {
        padding: 1.5rem;
    }
    
        /* Contact mobile */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info {
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .info-item {
        padding: 1.2rem;
        flex-direction: row;
        text-align: left;
        background: white;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .info-item i {
        font-size: 1.3rem;
        margin-right: 1rem;
        margin-top: 0.2rem;
        color: var(--spring);
    }

    .info-item h4 {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
        color: var(--text-dark);
    }

    .info-item p {
        font-size: 0.95rem;
        color: var(--text-light);
        line-height: 1.4;
    }

    .contact-form {
        padding: 2rem 1.5rem;
        background: white;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        width: 100%;
        margin: 0;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group label {
        display: block;
        margin-bottom: 0.6rem;
        font-weight: 600;
        color: var(--text-dark);
        font-size: 1rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 1rem;
        border: 2px solid #e0e0e0;
        border-radius: 10px;
        font-size: 16px; /* Évite le zoom sur iOS */
        font-family: inherit;
        transition: border-color 0.3s ease;
        background: white;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--spring);
        box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.1);
    }

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

    .submit-btn {
        width: 100%;
        padding: 1.2rem;
        background: linear-gradient(45deg, var(--spring), #ff1493);
        color: white;
        border: none;
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: transform 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }

    .submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(255, 105, 180, 0.3);
    }

    
    /* Footer mobile */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }
}

/* Petits mobiles */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    /* Hero section très petits écrans */
    .hero {
        min-height: 85vh;
        padding: 2rem 0;
    }
    
    .hero-content {
        padding: 0 0.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.4;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    /* Sections très petits écrans */
    .section {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 0.8rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    /* Navigation mobile très petits écrans */
    .nav-container {
        padding: 0.8rem 1rem;
    }
    
    .nav-logo {
        font-size: 1.3rem;
    }
    
    .nav-logo i {
        font-size: 1.5rem;
    }
    
    .nav-toggle {
        width: 28px;
        height: 18px;
    }
    
    .nav-menu.active {
        top: 60px;
        padding: 1.5rem 0;
    }
    
    .nav-menu a {
        font-size: 1.1rem;
        padding: 0.8rem 0;
    }
    
    /* Sélecteur saisons très petits écrans */
    .season-selector {
        gap: 0.6rem;
        flex-wrap: wrap;
        justify-content: center;
        margin: 0 0.5rem;
    }
    
    .season-option {
        min-width: 100px;
        padding: 0.9rem 0.8rem;
        font-size: 0.85rem;
        flex: 1 1 calc(50% - 0.3rem);
        max-width: 140px;
    }
    
    .season-icon {
        font-size: 1.5rem;
    }
    
    .season-description {
        font-size: 0.7rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Cartes très petits écrans */
    .season-card {
        padding: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .season-icon-large {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .season-header h3 {
        font-size: 1.3rem;
    }
    
    .season-services h4 {
        font-size: 1.1rem;
    }
    
    .season-services li {
        font-size: 0.85rem;
        padding: 0.4rem 0;
    }
    
    .season-atmosphere {
        padding: 0.8rem;
        font-size: 0.8rem;
    }
    
    /* Expérience petits écrans */
    .experience-grid {
        gap: 1rem;
        margin: 1rem 0 1.5rem;
    }

    .experience-item {
        padding: 1.2rem;
    }

    .experience-icon {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .experience-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }

    .experience-item p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    /* Services petits écrans */
    .service-item {
        padding: 1.2rem;
    }
    
    .service-icon {
        font-size: 2.5rem;
    }
    
    .service-item h4 {
        font-size: 1.1rem;
    }
    
    .service-item p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .service-price {
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
    }
    
    /* Contact petits écrans */
    .contact-form {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }
    
    .form-group {
        margin-bottom: 1.3rem;
    }
    
    .form-group label {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
        font-weight: 600;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.9rem;
        font-size: 16px; /* Évite le zoom mobile */
        border-radius: 8px;
        border: 2px solid #e0e0e0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: var(--spring);
        box-shadow: 0 0 0 2px rgba(255, 105, 180, 0.1);
    }
    
    .form-group textarea {
        min-height: 80px;
        resize: vertical;
    }
    
    .submit-btn {
        padding: 1.1rem;
        font-size: 1rem;
        width: 100%;
        border-radius: 25px;
    }
    
    /* Info items petits écrans */
    .contact-info {
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }

    .info-item {
        padding: 1rem;
        flex-direction: row;
        text-align: left;
        background: white;
        border-radius: 10px;
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
        margin: 0 0.5rem;
    }
    
    .info-item i {
        font-size: 1.2rem;
        margin-right: 0.8rem;
        margin-top: 0.1rem;
        color: var(--spring);
        flex-shrink: 0;
    }
    
    .info-item div {
        flex: 1;
    }
    
    .info-item h4 {
        font-size: 0.95rem;
        margin-bottom: 0.2rem;
        color: var(--text-dark);
        font-weight: 600;
    }
    
    .info-item p {
        font-size: 0.85rem;
        color: var(--text-light);
        line-height: 1.3;
    }
    
    /* Footer petits écrans */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-section {
        margin-bottom: 1.5rem;
    }
    
    .footer-logo {
        font-size: 1.4rem;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-section ul li {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }
    
    /* Modal petits écrans */
    .modal-content {
        margin: 20% auto;
        padding: 1.5rem;
        width: 95%;
        max-width: 400px;
    }
    
    .modal h3 {
        font-size: 1.2rem;
    }
    
    .modal p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

/* Animation pour le menu mobile */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Styles additionnels pour l'accessibilité */
.nav-toggle:focus {
    outline: 2px solid var(--spring);
    outline-offset: 2px;
    border-radius: 4px;
}

.nav-toggle:hover span {
    background: var(--spring);
}

/* Overlay pour le menu mobile */
.nav-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    z-index: -1;
}

/* Amélioration de la lisibilité mobile */
@media (max-width: 768px) {
    .nav-menu a {
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(10px);
        margin: 0.5rem 0;
        width: 200px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu a:hover {
        background: rgba(255, 105, 180, 0.1);
        transform: scale(1.05);
        box-shadow: 0 4px 15px rgba(255, 105, 180, 0.2);
    }

    /* Animation des éléments du menu */
    .nav-menu a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
        transition: left 0.5s;
    }

    .nav-menu a:hover::before {
        left: 100%;
    }
}

/* Section Expérience Immersive */
.immersive-experience {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff5f8 100%);
}

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

/* Faire occuper au bloc texte toute la largeur pour que la grille s'étende sur la page */
.experience-text {
    grid-column: 1 / -1;
}

/* Tablettes: Empile l'expérience en 1 colonne */
@media (max-width: 1024px) {
    .experience-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .experience-item {
        padding: 1.75rem;
    }
    .seasonal-showcase {
        height: 320px;
        margin: 1.5rem 1.5rem 0; /* espace latéral tablette */
    }
    .showcase-text h4 { font-size: 2.1rem; }
    .showcase-text p { font-size: 1.05rem; }

    /* Contact tablette: empile et aère */
    .contact { padding: 4rem 0; }
    .contact-content { grid-template-columns: 1fr; gap: 2.5rem; }
    .contact-form { padding: 2rem; }
    .info-item { padding: 1.25rem; }
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    align-items: stretch;
    margin: 2rem 0 2.5rem;
}

.experience-item {
    text-align: center;
    padding: 2.25rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    min-height: 220px;
}

.experience-item:hover {
    transform: translateY(-5px);
}

.experience-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.experience-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.experience-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.experience-visual {
    position: relative;
}

.seasonal-showcase {
    position: relative;
    height: 240px;
    border-radius: 20px;
    overflow: hidden;
    margin: 2rem 2rem 0; /* plus d'espace à gauche et à droite sur desktop */
}

.showcase-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 4rem; /* espace à gauche et à droite plus large */
}

.showcase-item.active {
    opacity: 1;
}

.showcase-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: background 0.6s ease;
}

.spring-showcase {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
}

.summer-showcase {
    background: linear-gradient(135deg, #ffa500, #ff6347);
}

.autumn-showcase {
    background: linear-gradient(135deg, #d2691e, #8b4513);
}

.winter-showcase {
    background: linear-gradient(135deg, #4169e1, #1e90ff);
}

.showcase-text {
    position: relative;
    z-index: 1;
    padding: 1rem 4rem;
    max-width: 100%;
    margin: 0 auto;
}

.showcase-text h4 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

/* Taille du texte de description */
.showcase-text p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Section Services Détaillés */
.services-detail {
    padding: 5rem 0;
    background: white;
}

.services-tabs {
    margin-top: 3rem;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 1rem 2rem;
    border: 2px solid #e0e0e0;
    background: #ffffff;
    color: var(--text-dark);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    position: relative;
}

/* Hover state */
.tab-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.2);
}

/* Active state - bouton sélectionné */
.tab-buttons .tab-btn.active {
    background: var(--primary) !important;
    color: #ffffff !important;
    border-color: var(--primary) !important;
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.5) !important;
    transform: translateY(-4px) !important;
    font-weight: 700 !important;
    font-size: 1.05rem !important;
}

.tab-buttons .tab-btn.active::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(45deg, var(--primary), #ff1493);
    border-radius: 50px;
    z-index: -1;
    opacity: 0.3;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.02); }
}

.tab-btn:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 105, 180, 0.25);
}

.tab-content {
    position: relative;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-panel.active {
    display: block;
}

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

.service-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-price {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary);
    padding: 0.5rem 1rem;
    background: rgba(255, 105, 180, 0.1);
    border-radius: 25px;
    display: inline-block;
}

/* Section Contact */
.contact {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff5f8 100%);
}

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

/* Contact responsive - force sur mobile */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 100%;
    }
    
    .info-item {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0;
    }
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.info-item i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.info-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.info-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, var(--primary), #ff1493);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 2rem;
}

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

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.footer-section p,
.footer-section a {
    color: #ccc;
    line-height: 1.6;
    text-decoration: none;
}

.footer-section a:hover {
    color: var(--primary);
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #999;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 2rem;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    position: relative;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.close:hover {
    color: var(--primary);
}

.modal h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Effets Parallax Doux */
.parallax-section {
    position: relative;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 120%;
    height: 140%;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    opacity: 0.1;
    transition: transform 0.6s ease-out;
}

.parallax-element {
    transform: translateZ(0);
    transition: transform 0.3s ease-out;
}

/* Séparateurs doux entre sections */
.section-divider {
    height: 100px;
    background: linear-gradient(180deg, 
        rgba(248, 249, 255, 0) 0%,
        rgba(248, 249, 255, 0.5) 50%,
        rgba(248, 249, 255, 0) 100%);
    position: relative;
    overflow: hidden;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 300%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 105, 180, 0.1) 50%,
        transparent 100%);
    animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Animations douillettes */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}



@keyframes gentlePulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.05); opacity: 1; }
}



.gentle-pulse {
    animation: gentlePulse 3s ease-in-out infinite;
}

/* Effets de survol doux */
.cozy-hover {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cozy-hover:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 105, 180, 0.2);
}

/* Très petits mobiles (320px-375px) - Optimisation pour la capture d'écran */
@media (max-width: 375px) {
    .container {
        padding: 0 0.8rem;
    }
    
    /* Hero ultra compact */
    .hero {
        min-height: 80vh;
        padding: 1.5rem 0;
    }
    
    .hero-content {
        padding: 0 0.3rem;
    }
    
    .hero-title {
        font-size: 1.7rem;
        line-height: 1.1;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.8rem;
        line-height: 1.3;
    }
    
    /* Navigation ultra compact */
    .nav-container {
        padding: 0.6rem 0.8rem;
    }
    
    .nav-logo {
        font-size: 1.2rem;
    }
    
    .nav-logo i {
        font-size: 1.4rem;
    }
    
    /* Sélecteur saisons ultra compact */
    .season-selector {
        gap: 0.4rem;
        margin: 0 0.2rem;
        padding: 0 0.3rem;
    }
    
    .season-option {
        min-width: 85px;
        padding: 0.8rem 0.5rem;
        font-size: 0.75rem;
        flex: 1 1 calc(50% - 0.2rem);
        max-width: 120px;
    }
    
    .season-icon {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
    }
    
    .season-description {
        font-size: 0.6rem;
        line-height: 1.1;
    }
    
    /* Sections ultra compact */
    .section {
        padding: 2.5rem 0;
    }
    
    .section-header {
        margin-bottom: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
        line-height: 1.2;
    }
    
    .section-header p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    /* Boutons ultra compact */
    .cta-button {
        padding: 0.9rem 1.6rem;
        font-size: 0.95rem;
    }
    
    /* Expérience ultra compact */
    .experience-content {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .experience-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        margin: 1rem 0 1.5rem !important;
        width: 100% !important;
    }
    
    .experience-item {
        padding: 1.2rem !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0.2rem !important;
    }
    
    /* Contact ultra compact */
    .contact-content {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .contact-form {
        padding: 1.3rem 0.8rem;
        margin: 0 0.3rem;
        width: calc(100% - 0.6rem);
        box-sizing: border-box;
    }
    
    .contact-info {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.8rem !important;
        width: 100% !important;
    }
    
    .info-item {
        padding: 0.9rem;
        margin: 0 0.3rem;
        display: flex !important;
        flex-direction: row !important;
        width: calc(100% - 0.6rem) !important;
        box-sizing: border-box;
    }
    
    .info-item i {
        font-size: 1.1rem;
        margin-right: 0.7rem;
        flex-shrink: 0;
    }
    
    .info-item div {
        flex: 1;
        width: 100%;
    }
    
    .info-item h4 {
        font-size: 0.9rem;
        margin-bottom: 0.2rem;
    }
    
    .info-item p {
        font-size: 0.8rem;
        line-height: 1.3;
    }
}


