/*
Theme Name: Avada Child
Theme URI: https://yourwebsite.com/
Description: Child Theme for Avada
Author: Nathaniel
Author URI: https://yourwebsite.com/
Template: Avada
Version: 1.0.0
*/

@import url("../Avada/style.css");
@import url('https://fonts.googleapis.com/css2?family=Lobster&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&display=swap');


/* ----------- Footer full width ----------- */
.custom-footer {
    width: 100vw; /* Largeur totale sans affecter le reste du site */
    max-width: 100%; /* Assure qu'il prend toute la largeur */
    margin: 0;
    padding: 50px 0;
    background-color: #E76F3A;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: "Arial", sans-serif;
    position: relative;
    z-index: 10;
}

/* ----------- Conteneur interne du footer ----------- */
.footer-container {
    width: 100%;
    max-width: 1200px; /* Garde un bon alignement */
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 20px;
}

/* ----------- Supprime les marges qui pourraient causer un décalage ----------- */
body, #wrapper, #main, .fusion-row, .fullwidth-box {
    margin: 0;
    padding: 0;
}

/* ----------- Section Logo ----------- */
.footer-logo img {
    max-width: 150px;
    margin-bottom: 10px;
}
.footer-logo p {
    font-size: 16px;
    font-weight: bold;
}

/* ----------- Section Réseaux Sociaux ----------- */
.footer-social p {
    font-weight: bold;
    margin-bottom: 10px;

}
.social-icons a {
    color: white;
    font-size: 24px;
    margin: 0 10px;
    transition: 0.3s;
}
.social-icons a:hover {
    color: #FFD700;
}

/* ----------- Section Adresse et Newsletter ----------- */
.footer-address p {
    font-size: 16px;
    margin-bottom: 10px;
}
.newsletter-btn {
    background: white;
    color: #E76F3A;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
    transition: 0.3s;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
}
.newsletter-btn:hover {
    background: #FFD700;
    color: #E76F3A;
}

/* ----------- Bas de page aligné ----------- */
.footer-bottom {
    width: 100% !important;
    text-align: center;
    font-size: 14px;
    margin-top: 20px;
    margin-left: -150px;
}
.footer-bottom a {
    color: white;
    text-decoration: underline;
}
.footer-bottom a:hover {
    color: #FFD700;
}

/* ----------- Responsive Design ----------- */
@media screen and (max-width: 1024px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-address,
    .footer-logo,
    .footer-social {
        margin-bottom: 30px;
    }
}
/* ----------- Styles généraux ----------- */
.sib-newsletter-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
    font-family: "Arial", sans-serif;
}

/* ----------- Titre ----------- */
.sib-newsletter-form h3 {
    color: #E76F3A;
    font-size: 22px;
    margin-bottom: 15px;
}

/* ----------- Champ email ----------- */
.sib-email-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
    font-weight: bold;
    color: #333;
}

.sib-email-area input[type="email"] {
    width: 100%;
    padding: 12px;
    border: 2px solid #E76F3A;
    border-radius: 5px;
    font-size: 16px;
    text-align: center;
    transition: 0.3s;
}

.sib-email-area input[type="email"]:focus {
    border-color: #FFD700;
    outline: none;
}

/* ----------- Checkbox RGPD ----------- */
.sib-checkbox-container {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #333;
    margin-bottom: 15px;
}

.sib-checkbox-container input[type="checkbox"] {
    margin-right: 8px;
    accent-color: #E76F3A;
}

/* ----------- Bouton S'abonner ----------- */
.sib-default-btn {
    background: #E76F3A;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}

.sib-default-btn:hover {
    background: #FFD700;
    color: #E76F3A;
}

/* ----------- Responsive ----------- */
@media screen and (max-width: 768px) {
    .sib-newsletter-form {
        max-width: 90%;
    }
}

/* --------- Modal Container --------- */
.sib-modal {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.1);
    max-width: 450px;
    margin: auto;
    text-align: center;
    font-family: "Arial", sans-serif;
}

/* --------- Logo --------- */
.sib-logo {
    max-width: 120px;
    margin-bottom: 15px;
}

/* --------- Titre et Description --------- */
.sib-modal h3 {
    color: #E76F3A;
    font-size: 22px;
    margin-bottom: 10px;
}

.sib-description {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
}

/* --------- Champ Email --------- */
.sib-email-area {
    text-align: left;
    margin-bottom: 15px;
}

.sib-email-area label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.sib-email-area input {
    width: 100%;
    padding: 12px;
    border: 2px solid #E76F3A;
    border-radius: 5px;
    font-size: 16px;
    text-align: left;
    transition: 0.3s;
}

.sib-email-area input:focus {
    border-color: #FFD700;
    outline: none;
}

/* --------- Checkbox RGPD --------- */
.sib-checkbox-container {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #333;
    margin-bottom: 15px;
}

.sib-checkbox-container input[type="checkbox"] {
    margin-right: 8px;
    accent-color: #E76F3A;
}

/* --------- Bouton d'Inscription --------- */
.sib-default-btn {
    background: #E76F3A;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}

.sib-default-btn:hover {
    background: #FFD700;
    color: #E76F3A;
}

/* --------- Responsive --------- */
@media screen and (max-width: 768px) {
    .sib-modal {
        max-width: 90%;
    }
}
/* --------- Style général --------- */
.modal_ydu {
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 12px;
    max-width: 450px;
    width: 100%;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    font-family: "Arial", sans-serif;
}

/* --------- Logo --------- */
.modal_ydu-logo {
    max-width: 120px;
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* --------- Titre et Description --------- */
.modal_ydu h3 {
    color: #E76F3A;
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: bold;
}

.modal_ydu-description {
    font-size: 14px;
    color: #333;
    margin-bottom: 20px;
}

/* --------- Champ Email --------- */
.modal_ydu-email-area {
    text-align: left;
    margin-bottom: 15px;
}

.modal_ydu-email-area label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.modal_ydu-email-area input {
    width: 100%;
    padding: 12px;
    border: 2px solid #E76F3A;
    border-radius: 5px;
    font-size: 16px;
    transition: 0.3s;
    background-color: #fff;
    color: #333;
}

.modal_ydu-email-area input:focus {
    border-color: #FFD700;
    outline: none;
}

/* --------- Checkbox RGPD --------- */
.modal_ydu-checkbox-container {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #333;
    margin-bottom: 15px;
}

.modal_ydu-checkbox-container input[type="checkbox"] {
    margin-right: 8px;
    accent-color: #E76F3A;
}

/* --------- Bouton d'Inscription --------- */
.modal_ydu-btn {
    background: #E76F3A;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}

.modal_ydu-btn:hover {
    background: #FFD700;
    color: #E76F3A;
}

/* --------- Responsive --------- */
@media screen and (max-width: 768px) {
    .modal_ydu {
        max-width: 90%;
    }
}



/* Correction du centrage de .footer-bottom */
.footer-bottom {
    width: 100% !important;
    display: flex;
    flex-direction: column; /* Alignement vertical */
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 15px 0;
    margin: 0 auto;
}

/* Centrage parfait du texte */
.footer-bottom p {
    width: 100%;
    text-align: center !important;
    margin: 5px 0;
}

/* Slogan en Lobster bien centré */
.footer-bottom .lobster {
    font-family: 'Lobster', cursive !important;
    font-size: 26px;
    text-align: center;
    line-height: 1.4;
    max-width: 80%;
    margin: 0 auto;
    margin-top: 50px;
}

/* Correction des liens en pied de page */
.footer-bottom a {
    text-align: center !important;
    display: inline-block;
}

/* ✅ Responsive : Ajustement sur les petits écrans */
@media screen and (max-width: 768px) {
    .footer-bottom .lobster {
        font-size: 18px; /* Taille réduite en mobile */
        max-width: 90%;
    }
    .footer-bottom p {
        font-size: 14px;
    }
}


.entry-title.fusion-post-title {
    text-transform: uppercase  !important;; /* Met le texte en majuscules */
    text-align: center  !important;; /* Centre le texte */
    font-weight: bold  !important;; /* Rend le texte plus visible */
    font-size: 48px !important;; /* Taille définie */
    line-height: 1.2 !important;; /* Espacement correct */
}

/* ydu_rgpd_inline_display - 07/07/2025 - fait par Nathaniel YDU */
#nf-field-10-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

#nf-field-10-wrap .nf-field-element {
  flex-shrink: 0;
}

#nf-description-10 {
  display: inline;
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  color: #333;
}

