html, body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 20px;
    padding-top:0px;
    width: 100%;
    min-height: 100vh;
    display: flex;
    line-height: 2;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    box-sizing: border-box;
    background-color: #fff;
}

/*--------------------------------------------------------------
# Airtable
--------------------------------------------------------------*/
.airtable-embed {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    max-width: 100vw;
    border: 0;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
.content {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align content à gauche */
    width: 100%;
    max-width: 1100px;
    background-color: #fff;
}

.titre-texte {
    line-height: 1.5;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
    display: flex;
    gap: 10px;
    align-items: center;
    width: 100%;
    background-color: #fff;
    color: #000;
    position: sticky;
    z-index: 1000;
    box-sizing: border-box;
    top:0;
    padding: 20px;
    font-size:14px;
}

.logo img {
    height: 40px;
}

.navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    flex:auto;
    gap: 15px;
    line-height: 1.8;
    
    text-align:center;
    transition: max-height 0.3s ease-in-out;
}

.navigation ul li a {
    color: #000;
    text-decoration: none;
    padding: 10px;
    transition: background-color 0.3s;
}

.navigation ul li a:hover {
    background-color: #FCC21E;
    border-radius: 4px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    height: 3px;
    width: 33px;
    background-color: #000;
    margin: 4px 0;
    transition: transform 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(3px, 3px);
}

.menu-toggle.active span:nth-child(2) {
    transform: rotate(-45deg) translate(3px, -3px);
}

.menu-toggle.active span:nth-child(3) {
    transform: scale(0); /* Pour rendre la troisième ligne invisible */
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.footer {
    display: flex;
    justify-content: space-between;
    color: #191919;
    padding: 10px;
    color: #000;
    text-decoration: none; 
    gap:130px;
    overflow-x: hidden;
}

.footer-left, .footer-right {
    width: 100%;
     box-sizing: border-box;
    
}

.footer h3 {
    margin-top: 0;
}

.footer p, .footer ul {
    margin: 10px 0;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin: 5px 0;
}

.footer a {
    color: #000;
    text-decoration: none;
}

/*--------------------------------------------------------------
# Typographies
--------------------------------------------------------------*/

h1 {   
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    text-transform: uppercase;
}
p {
    font-family: "Poppins", sans-serif;
    font-style: normal;
}
/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/

.button-container {
    width: 100%;
    height: 100%;
    flex-grow: 1; 
    border-radius: 8px;
    display: inline-flex; 
    gap: 10px; /* espacement entre buttons */
    overflow-x: auto; /* horizontal scrolling */
    margin-top:2em;
    margin-bottom:2em;
}

.wp-block-button__link {
    border-radius: 10px;
    padding: 1em;
    align-items: baseline;
    text-shadow: none;
    text-transform: none;
    background-color: #FFF; 
    color: #000000; 
    text-decoration: none; 
    transition: background-color 0.3s, color 0.3s; 
    width: 227px;
    display: inline-block;
    line-height: 1.5;
    border: 1px solid #ccc; 
}

.wp-block-button__link br {
    margin: 0.3em;
}

.wp-block-button__link.has-base-background-color:hover {
    background-color: #FCC21E !important;
    color: #000 !important;
    border: 1px solid #bababa; 
    box-shadow: 0 2px 8px rgb(171, 171, 171, 0.2); 
}

/* Hover state for the button */
.wp-block-button__link:hover {
    background-color: #fff;
    color: #000;
    border: 1px solid #b88f00; 
    box-shadow: 0 2px 8px rgba(171, 171, 171, 0.2); 
}

.button-icon {
    margin-right: 180px; /* Espacement entre icon et label */
    height: 80px; /* Hauteur de l'icon */
    width: 92px; /* Largeur de l'icon */
}

/*--------------------------------------------------------------
# Point rouge
--------------------------------------------------------------*/
h1::after, h2::after, title::after {
    content: "."; /**"\f111"**/
    display: inline-flex;
    color: red;
    font-size: 1em;
    font-weight: 800;
    line-height: 1;
    margin-left: 2px; /* Espace entre le texte et le point */
}

/* Quand tu séléctionnes le contenu de la page */
::selection {
background: #ffb7b7; /* couleur du background */
color: #000; /* couleur du texte */
}

/* For Firefox */
::-moz-selection {
background: #ffb7b7; /* couleur du background */
color: #000; /* couleur du texte */
}


/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (max-width: 1200px) {
    html, body {
        padding: 5px; 
    }

    .content {
        padding: 5px;
    }

    .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        position:sticky;
    }

    .navigation ul {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 69px;
        left: 0;
        background-color: #FCC21E;
        text-align:left;
    }

    .navigation ul.active {
        display: flex;
    }

    .navigation ul.open {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .footer {
        /*flex-direction: column;*/
        align-items: flex-start;
        line-height: 1.5; 
        gap:20px;
        width:100%;
        box-sizing: border-box;
        overflow-x: hidden;   
    }

    .footer-left, .footer-right {
        width: 100%;
        text-align: left;
        margin: 10px;
        box-sizing: border-box;
        overflow-x: hidden;   
    }

    .wp-block-button__link {
        width: auto;
        display: inline-block;
    }

    .button-container {
        overflow-x: auto;

    }

    .button-icon {
        margin-right: 10px; 
        height: 40px; 
        width: 40px; /* Ajuster l'icon pour mobile */
    }
}

@media (max-width: 550px) {
    html, body {
        padding: 2px; 
    }

    .content {
        padding: 2px;
    }

    .footer {
        flex-direction: column;
        align-items: center;
        line-height: 1.5; 
        box-sizing: border-box;
        overflow-x: hidden;    
    }

    .footer-left, .footer-right {
        width: 100%;
        text-align: center;
        margin: 10px;
        box-sizing: border-box;
        overflow-x: hidden;  

    }
}