:root {
    /* Colors */
    --color-duck-blue: #3D7579; /* Principale */
    --color-sky-blue: #7EC8BE;  /* Base neutre */
    --color-sky-blue-light: #E0F2EF;  /* Base neutre ligth*/
    --color-melon: #EB8F5F;     /* Accent */
    --color-dark-brown: #B79D8E; /* Principale foncée */
    --color-light-base: #F2ECDF; /* Base light */
    --color-white: #FFFFFF;
    --color-text: #333333;

    /* Fonts */
    --font-title: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--color-light-base);
    color: var(--color-text);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: var(--font-title);
    font-weight: 900; /* Black */
    color: var(--color-duck-blue);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.subtitle {
    font-family: var(--font-title);
    font-weight: 600; /* Semi Bold */
}

p {
    font-weight: 600; /* Semi Bold for body text as requested */
}

.text-secondary {
    font-style: italic;
}

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

/* Construction Banner */
.construction-banner {
    background-color: var(--color-melon);
    color: var(--color-white);
    text-align: center;
    padding: 0.5rem 0;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Header */
header {
    background-color: var(--color-white);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo img {
    height: 60px; /* Adjust size as needed */
    width: auto;
    display: block;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--color-dark-brown);
    font-family: var(--font-title);
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--color-melon);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--color-sky-blue) 0%, var(--color-sky-blue-light) 100%);
    padding: 4rem 0 8rem;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 50% 50% / 4rem;
}



.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
    max-width: 600px;
    text-align: left; /* Align text to left */
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.hero .subtitle {
    font-size: 1.25rem;
    color: var(--color-duck-blue);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-img {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    /* No blend mode needed if background is white, or use multiply if needed */
    /* mix-blend-mode: multiply; */ 
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--font-title);
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--color-melon);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(235, 143, 95, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(235, 143, 95, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-duck-blue);
    border: 2px solid var(--color-duck-blue);
}

.btn-secondary:hover {
    background-color: var(--color-duck-blue);
    color: var(--color-white);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
        gap: 2rem;
    }

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

    .hero-cta {
        justify-content: center;
    }
    
    .hero::before {
        width: 150%;
        right: -25%;
        top: -20%;
    }
}

@media (max-width: 1024px) {
    .character-img {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .character-img {
        display: none; /* Hide on small screens or adjust */
    }
}

/* About Section */
.about {
    background-color: var(--color-light-base);
    padding: 6rem 0;
    text-align: center;
}

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

.about p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

/* Values Section */
.values {
    padding: 6rem 0;
    background-color: var(--color-white);
}

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

.value-card {
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-duck-blue);
}

.card-partage {
    background-color: rgba(126, 200, 190, 0.1); /* Sky blue tint */
}

.card-ecoute {
    background-color: rgba(183, 157, 142, 0.1); /* Dark brown tint */
}

.card-soutien {
    background-color: rgba(235, 143, 95, 0.1); /* Melon tint */
}

/* Footer */
footer {
    background-color: var(--color-duck-blue);
    color: var(--color-white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
    gap: 2rem;
}

.footer-info h3 {
    color: var(--color-white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-contact h4 {
    color: var(--color-sky-blue);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-family: var(--font-title);
}

.footer-contact p {
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}
