/* ===== RESET ET BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Georgia', serif;
    color: #5a5a5a;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
    width: 100%;
}

/* ===== ANIMATIONS ===== */
@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(5deg); }
    66% { transform: translate(-20px, 20px) rotate(-5deg); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes imageReveal {
    0% { opacity: 0; transform: scale(1.1); }
    100% { opacity: 1; transform: scale(1); }
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    background: linear-gradient(135deg, #f5f3f0 0%, #e8e6e1 50%, #d4d9d4 100%);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 215, 200, 0.3) 0%, transparent 70%);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: float 20s ease-in-out infinite;
    z-index: 5;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: 30%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(220, 220, 210, 0.25) 0%, transparent 90%);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: float 25s ease-in-out infinite reverse;
    z-index: 5;
}

/* ===== HEADER ===== */
header {
    position: relative;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    opacity: 0;
    animation: fadeInDown 1s ease-out 1.5s forwards;
    flex-shrink: 0;
}

.header-left,
.header-right {
    display: flex;
    align-items: center;
}

.logo-link {
    text-decoration: none;
    display: block;
    transition: transform 0.3s;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    display: block;
}

nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #5a5a5a;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

nav a:hover {
    color: #a89968;
}

.nav-ateliers {
    background: #6a6a6a;
    color: white !important;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
}

.nav-ateliers:hover {
    background: #5a5a5a;
    color: white !important;
}

.profile-pic-container {
    cursor: pointer;
    transition: transform 0.3s;
}

.profile-pic-container:hover {
    transform: scale(1.05);
}

.profile-pic {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* ===== MAIN CONTENT ===== */
.main-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 0 2rem;
    align-items: center;
    max-width: 1400px;
    width: 100%;
    margin: auto;
    flex: 1;
}

.left-section {
    opacity: 0;
    animation: fadeInLeft 1s ease-out 2s forwards;
}

.left-section h1 {
    font-size: 4.5rem;
    color: #a89968;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.left-section .subtitle {
    font-size: 1.1rem;
    color: #a89968;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 400;
}

.right-section {
    padding: 2rem;
    opacity: 0;
    animation: fadeInRight 1s ease-out 2.3s forwards;
}

.right-section h2 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #5a5a5a;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.right-section p {
    font-size: 1.7rem;
    line-height: 1.5;
    color: #3a3a3a;
    margin-bottom: 2rem;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    background: #2c8fd8;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0 4px 15px rgba(44, 143, 216, 0.3);
}

.cta-button:hover {
    background: #2577b8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 143, 216, 0.4);
}


.decorative-image {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/img/bg.jpg');
    background-size: cover;
    background-position: center;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    animation: imageReveal 1s ease-in-out 0.5s forwards;
    
}

.decorative-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(245, 243, 240, 0.9) 0%, rgba(245, 243, 240, 0.7) 50%, rgba(245, 243, 240, 0.5) 100%);
    z-index: 2;
}

/* ===== MAIN CONTENT ===== */
.main-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 2rem 4rem;
    align-items: center;
    max-width: 1400px;
    margin: auto;
    flex: 1;
}

.left-section {
    opacity: 0;
    animation: fadeInLeft 1s ease-out 2s forwards;
}

.left-section h1 {
    font-size: 4.5rem;
    color: #a89968;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.left-section .subtitle {
    font-size: 1.1rem;
    color: #a89968;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 400;
}

.right-section {
    padding: 2rem;
    opacity: 0;
    animation: fadeInRight 1s ease-out 2.3s forwards;
}

.right-section h2 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #5a5a5a;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.right-section p {
    font-size: 1.8rem;
    line-height: 1.5;
    color: #3a3a3a;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.decorative-image {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/img/bg.jpg');
    background-size: cover;
    background-position: center;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    animation: imageReveal 2s ease-in-out 0.5s forwards;
}

.decorative-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(245, 243, 240, 0.9) 0%, rgba(245, 243, 240, 0.7) 50%, rgba(245, 243, 240, 0.5) 100%);
    z-index: 2;
}
/* ===== HEADER ===== */
header {
    position: relative;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
    opacity: 0;
    animation: fadeInDown 1s ease-out 1.5s forwards;
    flex-shrink: 0;
}

.header-left,
.header-right {
    display: flex;
    align-items: center;
}

.logo-link {
    text-decoration: none;
    display: block;
    transition: transform 0.3s;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .logo-img {
        width: 45px;
        height: 45px;
    }
}
nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #5a5a5a;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

nav a:hover {
    color: #a89968;
}

.nav-ateliers {
    background: #6a6a6a;
    color: white !important;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
}

.nav-ateliers:hover {
    background: #5a5a5a;
    color: white !important;
}

.profile-pic-container {
    cursor: pointer;
    transition: transform 0.3s;
}

.profile-pic-container:hover {
    transform: scale(1.05);
}

.profile-pic {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* ===== MAIN CONTENT ===== */

.left-section {
    opacity: 0;
    animation: fadeInLeft 1s ease-out 2s forwards;
}

.left-section h1 {
    font-size: 4.5rem;
    color: #a89968;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.left-section .subtitle {
    font-size: 1.1rem;
    color: #a89968;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 400;
}

.right-section {
    padding: 2rem;
    opacity: 0;
    animation: fadeInRight 1s ease-out 2.3s forwards;
}

.right-section h2 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #5a5a5a;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.right-section p {
    font-size: 2rem;
    line-height: 1.6;
    color: #3a3a3a;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    background: #2c8fd8;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0 4px 15px rgba(44, 143, 216, 0.3);
}

.cta-button:hover {
    background: #2577b8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 143, 216, 0.4);
}

.calendly {
    font-style: italic;
    font-family: 'Brush Script MT', cursive;
    font-size: 1.1rem;
}

.decorative-image {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/img/bg.jpg');
    background-size: cover;
    background-position: center;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    animation: imageReveal 2s ease-in-out 0.5s forwards;
}

.decorative-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(245, 243, 240, 0.85) 0%, rgba(245, 243, 240, 0.5) 50%, rgba(245, 243, 240, 0.3) 100%);
    z-index: 2;
}

/* ===== SECTION L'ADULTE ===== */
.adulte-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 6rem 2rem;
    overflow: hidden;
    background-color: #D2BA87;
}

.adulte-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/img/adult.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.adulte-header {
    position: relative;
    z-index: 10;
    text-align: left;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 4rem;
}

.adulte-title {
    font-size: 1rem;
    color: #4a4a4a;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    border-bottom: 2px solid #4a4a4a;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.adulte-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 4rem;
    max-width: 1200px;
    width: 100%;
    align-items: start;
}

.adulte-column {
    background: transparent;
    padding: 0;
}

.column-subtitle {
    font-size: 0.75rem;
    color: white;
    background: transparent;
    padding: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    display: block;
    margin-bottom: 1.5rem;
}

.column-title {
    font-size: 1.8rem;
    color: #4a4a4a;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 2rem;
}

.column-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.adulte-divider {
    width: 1px;
    height: 300px;
    background: rgba(255, 255, 255, 0.3);
    align-self: start;
    margin-top: 3rem;
}

/* ===== MODAL POPUP ===== */
.modal-intro {
    font-weight: 500;
    color: #5a5a5a;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.modal-approach {
    margin: 1.5rem 0;
    padding-left: 1rem;
    border-left: 3px solid #a89968;
}

.modal-approach h3 {
    font-size: 1rem;
    color: #a89968;
    font-weight: 600;
    margin-bottom: 0.8rem;
    text-transform: none;
    letter-spacing: 0.5px;
}

.modal-approach p {
    margin-bottom: 0.8rem;
}

.modal-approach p:last-child {
    margin-bottom: 0;
}

.modal-conclusion {
    font-weight: 500;
    color: #5a5a5a;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
}

.modal-conclusion:first-of-type {
    border-top: none;
    padding-top: 0;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    padding: 2rem;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 1200px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    transform: scale(0.9);
    transition: transform 0.4s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100; 
    transition: all 0.3s;
    line-height: 1;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: rotate(90deg);
}

.modal-body {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 0;
    max-height: 90vh;
}

.modal-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px 0 0 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.modal-text {
    padding: 3rem 3rem 3rem 2rem;
    overflow-y: auto;
    max-height: 90vh;
}

/* ===== MODAL MOBILE ===== */
@media (max-width: 768px) {
    .modal-overlay {
        padding: 0;
        align-items: flex-start;
    }
    
    .modal-content {
        border-radius: 0;
        max-height: 100vh;
        height: 100vh;
        margin: 0;
        width: 100%;
    }
    
    .modal-close {
        position: fixed;
        top: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
        font-size: 2rem;
        z-index: 10000;
        background: rgba(0, 0, 0, 0.8);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }
    
    .modal-body {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
        max-height: 100vh;
        height: 100vh;
        overflow: hidden;
    }
    
    .modal-image {
        width: 100%;
        height: auto;
        padding: 0;
        background: white;
    }
    
    .modal-image img {
        width: 100%;
        height: auto;
        object-fit: contain;
        border-radius: 0;
        box-shadow: none;
        display: block;
    }
    
    .modal-text {
        padding: 1.5rem;
        overflow-y: auto;
        flex: 1;
        -webkit-overflow-scrolling: touch;
        width: 100%;
    }
    
    .modal-text h2 {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .modal-description p {
        font-size: 0.85rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
}

/* Version très petits écrans */
@media (max-width: 360px) {
    .modal-text {
        padding: 1rem;
    }
    
    .modal-description p {
        font-size: 0.8rem;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    header {
        padding: 1.5rem 2rem;
    }
    nav {
        gap: 1.5rem;
    }
    .main-content {
        gap: 3rem;
        padding: 3rem 2rem;
    }
    .left-section h1 {
        font-size: 3.5rem;
    }
    .right-section p {
        font-size: 1.8rem;
    }
    .modal-body {
        grid-template-columns: 400px 1fr;
    }
    .adulte-content {
        gap: 3rem;
    }
}

@media (max-width: 1024px) {
    .main-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2rem 1.5rem;
        text-align: center;
    }
    header {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    .left-section h1 {
        font-size: 3rem;
    }
    .right-section {
        padding: 1rem;
    }
    .right-section p {
        font-size: 1.5rem;
    }
    .hero::before {
        width: 400px;
        height: 400px;
    }
    .hero::after {
        width: 500px;
        height: 500px;
    }
    .modal-body {
        grid-template-columns: 1fr;
    }
    .modal-text {
        padding: 2rem;
    }
    .adulte-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .adulte-divider {
        display: none;
    }
    .column-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    body {
        height: auto;
        overflow: auto;
    }
    .hero {
        height: auto;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }
    header {
        padding: 0.8rem;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
        gap: 0.5rem;
        flex-shrink: 0;
    }
    .header-left {
        flex: 0 0 auto;
    }
    .header-right {
        flex: 0 0 auto;
    }
    .logo {
        width: 45px;
        height: 45px;
    }
    .logo-tree {
        width: 30px;
        height: 30px;
    }
    .profile-pic {
        width: 45px;
        height: 45px;
    }
    nav {
        order: 0;
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.3rem;
        flex-wrap: wrap;
        max-width: calc(100% - 120px);
    }
    nav a {
        font-size: 0.55rem;
        letter-spacing: 0.3px;
        padding: 0.3rem 0.4rem;
        white-space: nowrap;
    }
    .nav-ateliers {
        padding: 0.3rem 0.5rem;
        font-size: 0.5rem;
    }
    .main-content {
        padding: 1rem 0.8rem;
        gap: 1rem;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        overflow: hidden;
    }
    .left-section h1 {
        font-size: 1.8rem;
        margin-bottom: 0.3rem;
    }
    .left-section .subtitle {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }
    .right-section {
        padding: 0.5rem;
    }
    .right-section h2 {
        font-size: 0.7rem;
        letter-spacing: 1px;
        margin-bottom: 0.5rem;
    }
    .right-section p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        line-height: 1.4;
    }
    .cta-button {
        padding: 0.7rem 1rem;
        font-size: 0.7rem;
        width: 100%;
        text-align: center;
    }
    .calendly {
        font-size: 0.85rem;
        display: block;
        margin-top: 0.2rem;
    }
    .adulte-section {
        padding: 3rem 1rem;
    }
    .adulte-header {
        margin-bottom: 2rem;
    }
    .adulte-title {
        font-size: 0.9rem;
    }
    .column-subtitle {
        font-size: 0.7rem;
        margin-bottom: 1rem;
    }
    .column-title {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    .column-text p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    .modal-overlay {
        padding: 0;
    }
    .modal-content {
        border-radius: 0;
        max-height: 100vh;
        height: 100vh;
    }
    .modal-close {
        width: 40px;
        height: 40px;
        font-size: 1.8rem;
        top: 1rem;
        right: 1rem;
        z-index: 20;
    }
    .modal-body {
        grid-template-columns: 1fr;
        max-height: 100vh;
        height: 100vh;
        overflow: hidden;
    }
    .modal-image {
        padding: 1.5rem;
        max-height: 35vh;
        min-height: 35vh;
    }
.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: flex;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}
    .modal-text {
        padding: 1.5rem;
        overflow-y: auto;
        max-height: 65vh;
        -webkit-overflow-scrolling: touch;
    }
    .modal-text h2 {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    .modal-description p {
        font-size: 0.85rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
}

@media (max-width: 360px) {
    .left-section h1 {
        font-size: 1.6rem;
    }
    .right-section p {
        font-size: 0.85rem;
    }
    nav a {
        font-size: 0.5rem;
        padding: 0.25rem 0.35rem;
    }
    .nav-ateliers {
        font-size: 0.48rem;
    }
    .modal-description p {
        font-size: 0.8rem;
    }
    .column-title {
        font-size: 1rem;
    }
    .column-text p {
        font-size: 0.8rem;
    }
}
/* ===== SECTION L'ADOLESCENT ===== */
.adolescent-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 6rem 2rem;
    overflow: hidden;
    background-color: #A9B066;
}

.adolescent-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/img/adolescent.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.adolescent-header {
    position: relative;
    z-index: 10;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 3rem;
}

.adolescent-title {
    font-size: 1rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    border-bottom: 2px solid white;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.adolescent-hero {
    position: relative;
    z-index: 10;
    text-align: center;
    margin-bottom: 4rem;
}

.adolescent-main-title {
    font-size: 2.5rem;
    color: white;
    font-weight: 300;
    line-height: 1.3;
    letter-spacing: 1px;
}

.adolescent-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 4rem;
    max-width: 1200px;
    width: 100%;
    align-items: start;
}

.adolescent-column {
    background: transparent;
    padding: 0;
}

.adolescent-column .column-subtitle {
    font-size: 0.75rem;
    color: #4a4a4a;
    background: transparent;
    padding: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    display: block;
    margin-bottom: 1.5rem;
}

.adolescent-column .column-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.adolescent-divider {
    width: 1px;
    height: 300px;
    background: rgba(255, 255, 255, 0.3);
    align-self: start;
    margin-top: 3rem;
}

/* ===== RESPONSIVE ADOLESCENT ===== */
@media (max-width: 1024px) {
    .adolescent-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .adolescent-divider {
        display: none;
    }
    .adolescent-main-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .adolescent-section {
        padding: 3rem 1rem;
    }
    .adolescent-header {
        margin-bottom: 2rem;
    }
    .adolescent-title {
        font-size: 0.9rem;
    }
    .adolescent-hero {
        margin-bottom: 2rem;
    }
    .adolescent-main-title {
        font-size: 1.5rem;
    }
    .adolescent-column .column-subtitle {
        font-size: 0.7rem;
        margin-bottom: 1rem;
    }
    .adolescent-column .column-text p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 360px) {
    .adolescent-main-title {
        font-size: 1.2rem;
    }
    .adolescent-column .column-text p {
        font-size: 0.8rem;
    }
}

/* ===== SECTION L'ENFANT ===== */
.enfant-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 6rem 2rem;
    overflow: hidden;
    background-color: #E4A099;
}

.enfant-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/img/enfant.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.enfant-header {
    position: relative;
    z-index: 10;
    text-align: left;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 3rem;
}

.enfant-title {
    font-size: 1rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    border-bottom: 2px solid white;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.enfant-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    width: 100%;
}

.enfant-intro {
    margin-bottom: 4rem;
    max-width: 600px;
}

.enfant-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: white;
    text-align: left;
}

.enfant-blocks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.enfant-block {
    background: transparent;
}

.enfant-block-title {
    font-size: 0.75rem;
    color: #4a4a4a;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.enfant-block-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* ===== RESPONSIVE ENFANT ===== */
@media (max-width: 1024px) {
    .enfant-blocks {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .enfant-section {
        padding: 3rem 1rem;
    }
    .enfant-header {
        margin-bottom: 2rem;
    }
    .enfant-title {
        font-size: 0.9rem;
    }
    .enfant-intro {
        margin-bottom: 2rem;
    }
    .enfant-intro p {
        font-size: 0.95rem;
    }
    .enfant-block-title {
        font-size: 0.7rem;
        margin-bottom: 1rem;
    }
    .enfant-block-text p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 360px) {
    .enfant-intro p {
        font-size: 0.85rem;
    }
    .enfant-block-text p {
        font-size: 0.8rem;
    }
}

/* ===== SECTION LE CABINET ===== */
.cabinet-section {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    background: #f8f8f8;
}

.cabinet-container {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 0;
    max-width: 100%;
    width: 100%;
    height: auto;
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.cabinet-image {
    position: relative;
    overflow: hidden;
    min-height: 700px;
}

.cabinet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cabinet-content {
    padding: 3rem 4rem 3rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    overflow-y: visible;
    height: auto;
}

.cabinet-block {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 1.5rem;
}

.cabinet-block:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cabinet-section-title {
    font-size: 0.8rem;
    color: #a89968;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 1rem;
    border-bottom: 2px solid #a89968;
    padding-bottom: 0.4rem;
    display: inline-block;
}

.cabinet-content p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #5a5a5a;
    margin-bottom: 0.8rem;
    text-align: justify;
}

.cabinet-subtitle {
    font-style: italic;
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.cabinet-table {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.cabinet-table-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 0.4rem 0;
}

.cabinet-table-col {
    font-size: 0.9rem;
    color: #5a5a5a;
}

.cabinet-table-col strong {
    font-weight: 600;
    color: #4a4a4a;
    font-size: 0.85rem;
}

.cabinet-table-col .hours {
    margin-left: 1rem;
    color: #888;
    font-size: 0.85rem;
}

.cabinet-table-col .price {
    float: right;
    font-weight: 500;
}
/* ===== RESPONSIVE CABINET ===== */
@media (max-width: 1024px) {
    .cabinet-container {
        grid-template-columns: 1fr;
        height: auto;
    }
    .cabinet-image {
        min-height: 50vh;
        max-height: 50vh;
    }
    .cabinet-content {
        padding: 3rem 2rem;
        height: auto;
    }
}

@media (max-width: 768px) {
    .cabinet-section {
        min-height: auto;
    }
    .cabinet-image {
        min-height: 40vh;
        max-height: 40vh;
    }
    .cabinet-content {
        padding: 2rem 1.5rem;
        gap: 1.2rem;
    }
    .cabinet-block {
        padding-bottom: 1rem;
    }
    .cabinet-section-title {
        font-size: 0.7rem;
        margin-bottom: 0.7rem;
    }
    .cabinet-content p {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
    }
    .cabinet-subtitle {
        font-size: 0.75rem;
    }
    .cabinet-table-col {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .cabinet-table-row {
        grid-template-columns: 1fr;
        gap: 0.3rem;
    }
    .cabinet-table-col .price {
        float: none;
        margin-left: 0.5rem;
    }
}

/* ===== SECTION CONTACT ===== */
.contact-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    padding: 0;
    background: #f5f3f0;
}

.contact-container {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 0;
    width: 100%;
    min-height: 100vh;
}

.contact-info {
    background: #f5f3f0;
    padding: 4rem 4rem 4rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-title {
    font-size: 0.9rem;
    color: #a89968;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 3rem;
    border-bottom: 2px solid #a89968;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.contact-block {
    margin-bottom: 3rem;
}

.contact-subtitle {
    font-size: 0.85rem;
    color: #5a5a5a;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.contact-address {
    font-size: 1rem;
    line-height: 1.8;
    color: #5a5a5a;
    margin-bottom: 1rem;
}

.contact-phone {
    font-size: 1rem;
    color: #5a5a5a;
    margin-top: 1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.75rem;
    color: #5a5a5a;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: none;
    border-bottom: 2px solid #d0d0d0;
    background: transparent;
    font-family: 'Georgia', serif;
    font-size: 0.95rem;
    color: #5a5a5a;
    transition: border-color 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom-color: #a89968;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit {
    align-self: flex-start;
    background: #a89968;
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Georgia', serif;
}

.form-submit:hover {
    background: #8a7a50;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(168, 153, 104, 0.3);
}

.contact-map {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100vh;
}

.contact-map iframe {
    display: block;
}

/* ===== RESPONSIVE CONTACT ===== */
@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .contact-info {
        padding: 3rem 2rem;
    }
    .contact-map {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .contact-info {
        padding: 2rem 1.5rem;
    }
    .contact-title {
        font-size: 0.8rem;
        margin-bottom: 2rem;
    }
    .contact-subtitle {
        font-size: 0.75rem;
    }
    .contact-address,
    .contact-phone {
        font-size: 0.9rem;
    }
    .form-group label {
        font-size: 0.7rem;
    }
    .form-group input,
    .form-group textarea {
        font-size: 0.85rem;
        padding: 0.6rem;
    }
    .form-submit {
        width: 100%;
        padding: 0.8rem 2rem;
        font-size: 0.8rem;
    }
    .contact-map {
        min-height: 350px;
    }
}

/* ===== PAGE ATELIERS - HERO ===== */
.ateliers-hero {
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background-color: #f5f3f0;
}

.ateliers-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/img/bg.jpg'); 
    background-size: cover;
    background-position: center;
    filter: blur(0.5px) brightness(1.1);
    opacity: 0.5;
    z-index: 0;
}

.ateliers-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.75) 100%);
    z-index: 1;
}

.ateliers-hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem 3rem;
}

.ateliers-hero-title {
    font-size: 2.5rem;
    color: #7a9b3f;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.9);
}

/* ===== SECTION CONTENU ATELIERS ===== */
.ateliers-content-section {
    position: relative;
    min-height: 100vh;
    padding: 4rem 6rem;
    overflow: hidden;
    background-color: #A6B65C;
}

.ateliers-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/img/workshop.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 0;
    filter: blur(5px);
}

.ateliers-container {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.ateliers-row {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.ateliers-label-box {
    flex-shrink: 0;
}

.ateliers-label {
    font-size: 0.75rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin: 0;
}

.ateliers-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ateliers-quote {
    font-size: 1.5rem;
    line-height: 1.6;
    color: white;
    font-weight: 300;
    margin: 0;
}

.ateliers-text p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin: 0;
    text-align: justify;
}

/* ===== RESPONSIVE ATELIERS ===== */
@media (max-width: 1024px) {
    .ateliers-hero-content {
        padding: 3rem 2rem 2.5rem;
    }
    .ateliers-hero-title {
        font-size: 2rem;
    }
    .ateliers-content-section {
        padding: 3rem 3rem;
    }
    .ateliers-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .ateliers-hero-content {
        padding: 2.5rem 1rem 2rem;
    }
    .ateliers-hero-title {
        font-size: 1.6rem;
    }
    .ateliers-content-section {
        padding: 3rem 1.5rem;
    }
    .ateliers-quote {
        font-size: 1.2rem;
    }
    .ateliers-text p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .ateliers-hero-title {
        font-size: 1.3rem;
    }
    .ateliers-quote {
        font-size: 1rem;
    }
}

/* ===== SECTION EN DÉTAIL ===== */
.ateliers-detail-section {
    position: relative;
    min-height: 100vh;
    padding: 4rem 6rem;
    overflow: hidden;
    background-color: #D1B885;
}

.ateliers-detail-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/img/detail.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 0;
    filter: blur(5px);
}

.ateliers-detail-header {
    position: relative;
    z-index: 10;
    text-align: center;
    margin-bottom: 4rem;
}

.ateliers-detail-title {
    font-size: 0.85rem;
    color: #4a4a4a;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    border-bottom: 2px solid #4a4a4a;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.ateliers-detail-container {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.ateliers-detail-column {
    background: transparent;
}

.detail-column-title {
    font-size: 0.75rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.detail-intro {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.detail-list li {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #4a4a4a;
    padding-left: 1.5rem;
    position: relative;
    text-align: justify;
}

.detail-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #4a4a4a;
}

/* ===== RESPONSIVE DÉTAIL ===== */
@media (max-width: 1024px) {
    .ateliers-detail-section {
        padding: 3rem 3rem;
    }
    .ateliers-detail-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .ateliers-detail-section {
        padding: 3rem 1.5rem;
    }
    .ateliers-detail-header {
        margin-bottom: 2rem;
    }
    .detail-column-title {
        font-size: 0.7rem;
    }
    .detail-intro,
    .detail-list li {
        font-size: 0.85rem;
    }
}
/* ===== FOOTER ===== */
.site-footer {
    background: #f5f3f0;
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid #e0e0e0;
}

.footer-content {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo {
    width: 80px;
    height: 80px;
}

.footer-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.7;
}

.footer-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.footer-text p {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 400;
    margin: 0;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .site-footer {
        padding: 2rem 1rem;
    }
    
    .footer-logo {
        width: 60px;
        height: 60px;
    }
    
    .footer-text p {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }
}
