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

body {
    font-family: 'archersemibold', sans-serif;
    background-color: #f4f4f4;
    color: #222;
    line-height: 1.6;
}

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

/* === HEADER & NAVIGATION === */
header {
    background-color: #f97ac0;
    padding: 1rem 2rem;
}

#logo img {
    width: 12.5rem;
}

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

#lien {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

#lien li a {
    color: #171515;
    text-decoration: none;
    font-weight: bold;
    font-size: 2rem;
    padding: 4rem;
    transition: color 0.3s ease;
}

#lien li a:hover {
    color: #141314;
}

/* === SECTION INTRO (conheader) === */
#conheader {
    background: #fff;
    padding: 4rem;
    border-bottom: 3px solid #ddd;
}

#conheader img {
    margin-bottom: 1rem;
    border-radius: 5px;
}

#conheader #text {
    max-width: 900px;
    font-size: 1rem;
    margin: auto;
}

#conheader #text p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

#conheader #text h1,
#conheader #text h2 {
    font-size: 2rem;
    font-family: 'ArcherSemibold', serif;
    
}

/* === PROGRAMME SECTION === */
#programme {
    background-color: #e96cb1;
    padding: 4rem;
}

#image {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

#programme h1 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 3.5em;
    margin-bottom: 20px;
    font-family: 'ArcherSemibold', serif;
    color: #222;
}


article {
    background: #fff;
    padding: 1rem;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

article:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

article img {
    border-radius: 4px;
    margin-bottom: 1rem;
}

article p {
    margin-bottom: 0.4rem;
    font-size: 1rem;
    color: #333;
}

/* === NEWSLETTER SECTION === */
/* SECTION NEWSLETTER */
#newsletter {
    background-color: #f4f4f4;
    padding: 50px 20px;
    text-align: center;
    font-family: archersemibold, sans-serif;
}

#newsletter h1 {
    text-align: center;
    font-size: 3.5em;
    margin-bottom: 20px;
    font-family: 'ArcherSemibold', serif;
    color: #222;
}

@font-face {
    font-family: 'ArcherSemibold';
    src: url('fonts/ArcherSemibold.woff2') format('woff2'),
         url('fonts/ArcherSemibold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


#newsletter p {
    font-size: 1.6em;
    margin-bottom: 40px;
    color: #0d0c0c;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    border: 4px solid #e96cb1;
    padding: 15px;
    border-radius: 9px;
}


#newsletter form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

#newsletter label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #090909;
}

#newsletter input[type="text"],
#newsletter input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 1em;
}

#newsletter button {
    background-color: #222;
    color: #fff;
    padding: 12px 25px;
    font-size: 2em;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#newsletter button:hover {
    background-color: #444;
}


/* === CONTACT SECTION === */
#contact {
    padding: 4rem;
}

.nom {
    border: solid 3px #e96cb1;
    max-width: 400px;
    margin: auto;
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 1.2rem;
}

#contact h1 {
    text-align: center;
    font-family: 'ArcherSemibold', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
}

#contact p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.bb {
    border: solid 3px #e96cb1;
    max-width: 900px;
    margin: 1rem auto;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 2.4rem;

}


/* === FOOTER SECTION === */
#footer {
    background-color: #f97ac0;
    color: #fff;
    text-align: center;
    padding: 2rem;
}

html {
    scroll-behavior: smooth;
  }
  

#footer h1 {
    margin-bottom: 1rem;
    font-family: 'ArcherSemibold', serif;
}

#footer p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

#footer img {
    width: 90px;
    margin: 0 10px;
    transition: transform 0.3s;
}

#footer img:hover {
    transform: scale(1.1);
}

/* === RESPONSIVE === */
@media screen and (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: flex-start;
    }

    #lien {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
    }

    #image {
        grid-template-columns: 1fr;
    }

    .nom,
    .bb {
        font-size: 1rem;
        margin: 1rem auto;
    }
}
