/* Variables CSS */
:root {
    --rose-principal: #F5A8B7;
    --rose-pale: #FDE8ED;
    --rose-fonce: #E88FA0;
    --violet-aeesq: #3D2E5E;
    --vert-aeesq: #7FCC2B;
    --blanc: #FFFFFF;
    --noir: #2C2C2C;
    --gris-clair: #F8F8F8;
    --font-titres: 'Montserrat', sans-serif;
    --font-texte: 'Open Sans', sans-serif;
}

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

body {
    font-family: var(--font-texte);
    color: var(--noir);
    line-height: 1.6;
    background-color: var(--blanc);
}

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

/* Header */
.header {
    background-color: var(--rose-principal);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

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

.logo img {
    height: 80px;
    width: auto;
}

/* Navigation Desktop */
.nav-desktop {
    display: none;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--blanc);
    font-family: var(--font-titres);
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--rose-pale);
}

/* Menu Hamburger */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger-line {
    width: 30px;
    height: 3px;
    background-color: var(--blanc);
    transition: all 0.3s ease;
}

.hamburger[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.hamburger[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

/* Navigation Mobile */
.nav-mobile {
    display: none;
    background-color: var(--rose-fonce);
}

.nav-mobile.active {
    display: block;
}

.nav-mobile-list {
    list-style: none;
    padding: 20px;
}

.nav-mobile-list li {
    margin-bottom: 15px;
}

.nav-mobile-link {
    text-decoration: none;
    color: var(--blanc);
    font-family: var(--font-titres);
    font-weight: 600;
    font-size: 18px;
    display: block;
    padding: 10px;
    transition: background-color 0.3s ease;
}

.nav-mobile-link:hover,
.nav-mobile-link.active {
    background-color: var(--rose-principal);
}

/* Section Hero */
.hero {
    position: relative;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    padding: 0 20px;
}

.hero-title {
    font-family: var(--font-titres);
    font-size: 48px;
    font-weight: 700;
    color: var(--blanc);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

/* Section Principale */
.main-section {
    padding: 60px 0;
    background-color: var(--rose-pale);
}

.section-title {
    font-family: var(--font-titres);
    font-size: 36px;
    font-weight: 700;
    color: var(--rose-fonce);
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.section-content {
    max-width: 800px;
    margin: 0 auto;
}

.section-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--noir);
}

.section-content p:last-child {
    margin-bottom: 0;
}

/* Footer */
.footer {
    background-color: var(--rose-principal);
    color: var(--blanc);
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-section {
    flex: 1;
}

.footer-title {
    font-family: var(--font-titres);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-logo-aeesq {
    margin-bottom: 15px;
}

.footer-logo-aeesq img {
    max-width: 200px;
    height: auto;
}

.footer-text {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

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

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.social-link {
    color: var(--blanc);
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--rose-pale);
}

.social-link svg {
    width: 30px;
    height: 30px;
}

/* Responsive - Tablette */
@media (min-width: 768px) {
    .logo img {
        height: 100px;
    }

    .hero-image {
        height: 500px;
    }

    .hero-title {
        font-size: 64px;
    }

    .section-title {
        font-size: 42px;
    }

    .section-content p {
        font-size: 19px;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .footer-copyright {
        text-align: right;
    }

    .footer-social {
        justify-content: flex-end;
    }
}

/* Responsive - Desktop */
@media (min-width: 1024px) {
    .hamburger {
        display: none;
    }

    .nav-desktop {
        display: block;
    }

    .nav-mobile {
        display: none !important;
    }

    .hero-image {
        height: 600px;
    }

    .hero-title {
        font-size: 72px;
    }

    .section-title {
        font-size: 48px;
    }

    .section-content p {
        font-size: 20px;
    }
}
