:root {
    --backgroundColor: #F9F6E9;
    --BackgroundColorTransparent: rgba(132, 86, 62, 0.7);
    --contentColor: #84563E;
    --contentColorLight: hsl(21, 21%, 58%);
    --textColor: #F9F6E9;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--backgroundColor);
    color: #ffffff;
    text-align: center;
    min-height: 100vh;
}

#hero {
    margin-top: 40px;
}

#header-btn {
    text-decoration: none;
    cursor: pointer;
    background-color: var(--backgroundColor);
    width: 100%;
    color: var(--contentColor);
    justify-content: center;
    align-items: center;
    font-size: clamp(2rem, 8vw, 5rem);
    text-transform: uppercase;
    border: none;
    padding: 10px;
    border-style: solid;
    border-width: 1px;
}


button {
    margin-top: 40px;
    font-size: 17px;
    padding: 1em 2.7em;
    font-weight: 500;
    background-color: var(--contentColor);
    color: var(--textColor);
    border: none;
    position: relative;
    overflow: hidden;
    border-radius: 0.6em;
    cursor: pointer;
    transition-duration: 0.4s;
}

button:hover {
    font-size: 17px;
    padding: 1em 2.7em;
    font-weight: 500;
    background-color: white;
    color: var(--contentColor);

}

.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    color: #444;
}

.grid-contents-img {
    img {
        width: 100%;
        filter: blur(8px) grayscale(100%);
    }
}

.grid-contents-txt {
    margin: 25px;
    color: white;
    font-size: 1.1rem;

}

.grid-contents-txt-double {
    margin: 25px;
    color: white;
    font-size: 1.1rem;
    column-span: all;
    align-items: center;

}

footer {
    position: fixed;
    bottom: 0;
    text-align: center;
    width: 100%;
}


/* Style du bloc principal */
.card-block {
    background-color: var(--contentColor);
    /* Fond sombre */
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Bordure subtile */
    border-radius: 16px;
    padding: 40px 30px;
    max-width: 600px;
    margin: 40px auto;
    text-align: center;
    /* Centre tous les éléments à l'intérieur */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    height: 200px;
    margin-bottom: 10px;


}

/* Style du titre */
.block-title {
    font-size: 1.5rem;
    /* Titre en grand */
    font-weight: 700;
    color: var(--textColor);
    margin: 0 0 16px 0;
    /* Espacement en bas pour séparer du contenu */
    text-transform: uppercase;
    letter-spacing: 2px;
    transition-duration: 0.4s;
}

/* Style du contenu */
.block-content {
    font-size: clamp(0.6rem, 0.7rem + 0.5vw, 1rem);
    color: rgba(255, 255, 255, 0.7);
    /* Couleur plus claire pour le texte */
    line-height: 1.6;
    margin: 0;
    transition-duration: 0.4s;
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: var(--contentColor);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.dot:hover {
    background-color: var(--contentColorLight);
    height: 10px;
    width: 10px;
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

.reception {
    margin-top: 40px;
    width: 90%;
    display: inline-block;
    text-align: center;
    filter: grayscale(100%) brightness(75%) sepia(0.7);
    border-radius: 10px;
}


.carousel-cell {
    width: 90%;
    height: 250px;
    margin-right: 50px;
    background: var(--contentColor);
    border-radius: 5px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.5);
    margin-top: 20px;
    margin-bottom: 20px;
}

/* cell number */
.carousel-cell:before {
    display: block;
    text-align: center;
    line-height: 200px;
    color: white;
}



/* Style your text overlay */
.carousel-text-overlay {
    text-align: center;
    color: var(--textColor);
    padding: 20px;
    border-radius: 5px;
}

.carousel-text-overlay h2 {
    margin: 0 0 10px 0;
}