/* Styles généraux */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Conception de la page */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f7f1e3; /* Fond crème */
}

.container {
    text-align: center;
    color: #222; /* Texte noir */
    width: 90%;
}

/* Nom du restaurant */
h1 {
    font-size: 2em;
    margin-bottom: 20px;
    font-weight: bold;
}

/* Boutons */
.buttons {
    margin-bottom: 20px;
}

.button {
    display: flex;
    align-items: center; /* Aligne le contenu verticalement au centre */
    justify-content: center; /* Centre le texte dans le bouton */
    position: relative;
    text-decoration: none;
    color: #111;
    border: 1px solid #222;
    border-radius: 5px;
    font-size: 1.2em;
    font-weight: regular;
    height: 48px;
    margin: 10px 0;
    background-color: #f7f1e3;
}

.icon-wrapper {
    position: absolute;
    left: 20%; /* Positionne l'icône à 10px de la bordure gauche */
    display: flex;
    align-items: center;
    width: 24px;
    height: 24px;
}

.button img {
    width: 24px;
    height: 24px;
}


.icon {
    width: 24px;
    height: 24px;
}

.button-text {
    line-height: 1; /* Assure que le texte est bien centré verticalement */
}

/* Style spécifique pour chaque bouton */
.menu-button {
    background-color: #f7f1e3;
}

.google-button {
    background-color: #f7f1e3; /* Couleur Google */
}

.facebook-button {
    background-color: #f7f1e3; /* Couleur Facebook */
}

.instagram-button {
    background-color: #f7f1e3; /* Couleur Instagram */
}

/* Hover effets */
.button:hover {
    opacity: 0.9;
}

.footer {
    position: fixed;
    bottom: 10px; /* À 10px du bas de la fenêtre */
    left: 0;
    width: 100%;
    text-align: center;
}

.footer p {
    font-size: 0.8em; /* Texte en petit */
    color: #555; /* Couleur grise pour le texte */
    margin: 0;
}

