* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #FFFFFF;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    padding-left: 5%;
}

.logoheader {
    border-radius: 55%;
    height: 75px;
    width: 75px;
}

.titre {
    font-size: 20px;
    font-weight: 500;
    margin-left: 15px;
}

.nav-links {
    display: flex;
    align-items: center;
    padding-right: 5%;
}

.nav-links a {
    margin-left: 20px;
    text-decoration: none;
    color: black;
    font-weight: 500;
}

.nav-links a:hover {
    color: #C77B3A;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.btn-newsletter {
    background-color: #C77B3A;
    color: #FFFFFF !important;
    padding: 12px 24px !important;
    border-radius: 5px;
    text-decoration: none !important;
    font-weight: 700 !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(199, 123, 58, 0.3);
}

.btn-newsletter:hover {
    transform: translateY(-2px);
    background-color: #b56c32;
    box-shadow: 0 6px 12px rgba(199, 123, 58, 0.4);
    color: #FFFFFF !important;
}

.burger-menu {
    display: none;
    cursor: pointer;
    padding-right: 5%;
    flex-direction: column;
    gap: 6px;
}

.burger-menu span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #2c1e16;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

.banniere {
    width: 100%;
    height: 600px;
    background-image: linear-gradient(to bottom, rgba(199, 123, 58, 0.4), rgba(169, 105, 48, 0.7)), url('https://th.bing.com/th/id/R.66ef9304372012c341cbfba59222ebdf?rik=fH9bV0pLBg1sjg&pid=ImgRaw&r=0');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
}

.festival-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 80px auto;
    padding: 20px;
    gap: 60px;
    max-width: 1100px;
    text-align: center;
}

.infos-pratiques {
    padding: 60px 5%;
    background-color: #ffffff;
}

.infos-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.info-card {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.icon-circle {
    width: 65px;
    height: 65px;
    background-color: #EED7C5;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 1.1rem;
    color: #3a2618;
    margin-bottom: 10px;
    font-weight: 600;
}

.info-card p {
    font-size: 0.95rem;
    color: #8c827a;
    line-height: 1.5;
}

.festival-container h2 {
    font-size: 2rem;
    color: #2c1e16;
    margin-bottom: 24px;
}

.festival-container p {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #2c1e16;
    margin-bottom: 20px;
}

.banniere2 {
    width: 100%;
    height: 600px;
    background-image: linear-gradient(to bottom, rgba(138, 199, 58, 0.4), rgba(102, 199, 48, 0.7)), url('img/Gemini_Generated_Image_n6yxq9n6yxq9n6yx.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
}

.banniere-texte {
    padding-left: 5%;
    display: flex;
    flex-direction: column;
    text-align: left;
    color: #FFFFFF;
    gap: 20px;
    max-width: 800px;
}

.banniere-texte h1 {
    font-size: 50px;
    font-weight: 700;
}

.banniere-texte p {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
}

.banniere-texte button {
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 20px;
    margin-right: 15px;
}

.banniere-texte1 {
    background-color: #4A9C59;
    color: #FFFFFF;
    border-radius: 5px;
    border: 2px solid #4A9C59;
}

.banniere-texte2 {
    background-color: transparent;
    color: #FFFFFF;
    border-radius: 5px;
    border: 2px solid #FFFFFF;
}

.banniere-texte1:hover,
.banniere-texte2:hover {
    transition: all 0.3s ease;
    transform: scale(1.05);
}

.mission-container {
    display: flex;
    max-width: 1100px;
    margin: 80px auto;
    padding: 20px;
    gap: 60px;
    align-items: center;
}

.mission-text {
    flex: 1;
}

.mission-text h2 {
    font-size: 2rem;
    color: #2c1e16;
    margin-bottom: 24px;
}

.mission-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #5c504a;
    margin-bottom: 20px;
}

.mission-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #2c1e16;
    font-weight: 500;
}

.badge svg {
    width: 20px;
    height: 20px;
}

.mission-image {
    flex: 1;
    width: 100%;
}

.mission-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    display: block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.mission {
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
    text-align: center;
}

.mission h2 {
    font-size: 2rem;
    color: #2c1e16;
    margin-bottom: 15px;
}

.mission p {
    font-size: 1.1rem;
    color: #5c504a;
}

.articles-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
    flex-wrap: wrap;
}

.Ateliers-card {
    display: flex;
    flex-direction: column;
    width: 30%;
    min-width: 300px;
    background-color: #fcf8f2;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.Ateliers-card:hover {
    transform: translateY(-5px);
}

.card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content h3 {
    font-size: 1.25rem;
    color: #2c1e16;
    margin-bottom: 15px;
    line-height: 1.4;
}

.card-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #5c504a;
    margin-bottom: 20px;
    flex-grow: 1;
}

.imgcard {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.footer-site {
    background-color: #291810;
    color: #fcf8f2;
    padding: 60px 10% 40px 10%;
    font-family: 'Montserrat', sans-serif;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h3 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-col p {
    color: #dfd5c9;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

.footer-col a {
    color: #dfd5c9;
    font-size: 0.95rem;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    line-height: 1.8;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.footer-line {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0 0 30px 0;
}

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

.footer-bottom p {
    color: #a89d92;
    font-size: 0.9rem;
    margin: 0;
}

.titre-page-ateliers {
    text-align: center;
    padding-top: 150px;
    color: #2c1e16;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cc-forms-section {
    background-color: #fdf5eb;
    padding: 100px 20px;
    color: #2c1e16;
    font-family: 'Montserrat', sans-serif;
}

.cc-forms-container {
    display: flex;
    gap: 40px;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
}

.cc-form-card {
    background: #ffffff;
    border: 1px solid #2c1e16;
    border-radius: 24px;
    padding: 40px;
    flex: 1;
    min-width: 320px;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.cc-form-title {
    font-size: 1.5rem;
    margin: 0 0 15px 0;
    color: #000000;
}

.cc-form-desc {
    font-size: 0.95rem;
    color: #7a7a7a;
    margin: 0 0 30px 0;
    line-height: 1.5;
    font-weight: 500;
}

.cc-form-element {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.cc-form-group {
    margin-bottom: 20px;
}

.cc-form-label {
    display: block;
    font-weight: 600;
    margin: 0 0 8px 0;
    font-size: 0.95rem;
    color: #000000;
}

.cc-form-input {
    width: 100%;
    border: 1px solid #000000;
    border-radius: 20px;
    padding: 12px 16px;
    font-size: 1rem;
    outline: none;
    background-color: transparent;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

.cc-form-input:focus {
    border-color: #e8b886;
}

.cc-form-textarea {
    resize: vertical;
    min-height: 120px;
    border-radius: 16px;
}

.cc-submit-btn {
    background-color: #e8b886;
    color: #ffffff;
    border: 1px solid #000000;
    border-radius: 25px;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: block;
    margin: auto auto 0 auto;
    transition: transform 0.2s ease, background-color 0.2s ease;
    font-family: 'Montserrat', sans-serif;
}

.cc-submit-btn:hover {
    transform: translateY(-2px);
    background-color: #d8a571;
}

.titre-programme {
    text-align: center;
    padding-top: 150px;
    color: #2c1e16;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.titre-card {
    text-align: center;
    padding-top: 10px;
    color: #2c1e16;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.p-card {
    padding-top: 40px;
    color: #2c1e16;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.filtres-ateliers {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.btn-filtre {
    background-color: transparent;
    color: #C77B3A;
    border: 2px solid #C77B3A;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-filtre:hover,
.btn-filtre.actif {
    background-color: #C77B3A;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.text {
    font-size: 1.1rem;
    color: #5c504a;
    margin-bottom: 20px;
}

.cookie-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #2d3436;
    color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: none;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.accept {
    background: #00b894;
    color: white;
}

.accept:hover {
    background: #55efc4;
}

.reject {
    background: #dfe6e9;
    color: #2d3436;
}

.reject:hover {
    background: #b2bec3;
}

.programme-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.programme-container {
    background-color: #F4C08B;
    border-radius: 33px;
    border: 2px solid #000000;
    padding: 40px 20px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.programme-container .titre-programme {
    padding-top: 0;
    margin-bottom: 40px;
}

.programme-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    width: 100%;
    max-width: 1050px;
}

.programme-card {
    background-color: #ffffff;
    border-radius: 33px;
    border: 2px solid #000000;
    padding: 30px;
    width: calc(50% - 10px);
    min-height: 350px;
    display: flex;
    flex-direction: column;
}

@media screen and (max-width: 900px) {
    .burger-menu {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #FFFFFF;
        flex-direction: column;
        align-items: center;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
        transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    }

    .nav-links.active {
        max-height: 400px;
        padding: 20px 0;
    }

    .nav-links a {
        margin: 15px 0;
        font-size: 1.2rem;
    }

    .nav-links .btn-newsletter {
        margin: 20px 0;
        display: inline-block;
    }

    .burger-menu.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

@media screen and (max-width: 768px) {

    .banniere,
    .banniere2 {
        height: 400px;
    }

    .banniere-texte h1 {
        font-size: 35px;
    }

    .banniere-texte p {
        font-size: 16px;
    }

    .banniere-texte button {
        width: 100%;
        margin-bottom: 10px;
        margin-right: 0;
    }

    .mission-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .mission-badges {
        justify-content: center;
    }

    .Ateliers-card {
        width: 100%;
        min-width: unset;
    }

    .cc-forms-container {
        flex-direction: column;
        align-items: center;
    }

    .cc-form-card {
        width: 100%;
    }

    .footer-top {
        flex-direction: column;
        text-align: center;
    }

    .titre-page-ateliers,
    .titre-programme {
        font-size: 2rem;
        padding-top: 120px;
    }

    .cookie-container {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .programme-section {
        padding: 40px 15px;
    }

    .programme-container {
        padding: 30px 15px;
    }

    .programme-card {
        width: 100%;
        min-height: auto;
    }
}