/* Style de base */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif; /* Police de secours */
    height: 100%;
}
main{
    background-color: #fabc1d;
}
footer{
    background-color: #fabc1d;
}



.acceuil-background {
    height: 100vh; /* Hauteur de la fenêtre */
    width: 100vw;  /* Largeur de la fenêtre */
    overflow: hidden; /* Évite les barres de défilement */
}

.acceuil-background img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    position: absolute;
    top: 0;
    left: 0;
}

.text-acceuil {
    position: absolute;
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%); /* Ajuste la position au centre */
    text-align: center; 
    color: #ffffff; 
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

.text-acceuil h1 {
    font-family: 'Lilita One', cursive; /* Titre avec Lilita One */
    font-size: 52px; 
    margin: 0 0 20px 0; 
}

.text-acceuil p {
    font-size: 19.2px; /* Taille du paragraphe */
    margin: 0 0 20px 0; /* Espacement sous le paragraphe */
}

/* Style général pour les sections de cocktails */
.nouveautes-section {
    padding-top: 0 !important;
    padding: 40px 20px; 
    background-color: #fabc1d; 
    text-align: center; /* Centre le texte de la section */
}

/* Titre de la section des nouveautés */
.nouveautes-section h2 {
    font-family: 'Lilita One', cursive; /* Applique la police Lilita One */
    font-size: 36px; 
    margin-bottom: 80px;
    margin-top: 0px;
}

/* Conteneur pour les éléments des cocktails */
.nouveautes-content {
    display: flex; 
    flex-wrap: wrap; /* Permet de passer à la ligne si l'espace est insuffisant */
    justify-content: space-around; /* Répartit l'espace entre les éléments */
}

/* Style pour chaque élément de cocktail */
.cocktail-item {
    width: 22%; /* Largeur de chaque élément */
    margin: 10px; /* Marge entre les éléments */
    background-color: #fff; /* Fond blanc pour chaque élément */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden; /* Masque les débordements */
    text-decoration: none;
    border: 3px solid black;
    border-radius: 12px;
}

/* Uniformisation des images au format 1:1 */
.cocktail-image img {
    width: 100%; 
    height: 200px; /* Hauteur fixe pour un format carré */
    object-fit:cover; 
}

/* Alignement du texte */
.cocktail-text {
    padding: 20px; /* Espacement interne */
}

/* Styles pour les titres et les paragraphes */
.cocktail-text h3 {
    font-family: 'Lilita One', cursive; /* Applique la police Lilita One */
    font-size: 20px; 
    margin-bottom: 10px;
}

.cocktail-text p {
    font-size: 14px; 
    line-height: 1.5; /* Augmente l'espacement entre les lignes */
}

/* Responsive Design pour petits écrans */
@media (max-width: 768px) {
    .cocktail-item {
        width: 45%; /* Ajuste la largeur pour les petits écrans */
    }

    .cocktail-image img {
        height: 150px; /* Ajuste la hauteur sur mobile */
    }

    .text-acceuil h1 {
        font-size: 36px; /* Réduit la taille du titre sur mobile */
    }

    .text-acceuil p {
        font-size: 16px; /* Réduit la taille du paragraphe sur mobile */
    }
}










/* Styles pour les articles Margarita Glacé et Sunset Martini */
.article-cocktails {
    display: flex;
    justify-content: center;
    padding: 50px 20px;
    background-color: #fabc1d;
}

.article-cocktails-content {
    max-width: 800px;
    text-align: center;
}

.article-cocktails h1 {
    font-family: 'Lilita One', cursive;
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 40px;
}

.article-cocktails h2 {
    font-family: 'Lilita One', cursive;
    font-size: 28px;
    color: #ffffff;
    margin-top: 40px;
    margin-bottom: 20px;
}

.article-cocktails p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 20px;
}

.cocktail-article-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.cocktail-article-image {
    max-width: 100%;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 400px;
    height: 400px;
    object-fit:cover; 
    border: 3px solid black;
    border-radius: 12px;
}
@media (max-width: 768px) {
    .cocktail-article-image {
        width: 200px;
        height: 200px;
    }
}

/* Styles CTA alignement vertical */
.nouveautes-content .cocktail-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.nouveautes-content .cocktail-item .cta {
    margin: 20px 0;
    align-self: center;
}


