/* Réinitialisation de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Avenir", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #ffffff;
    background-color: #000000;
    
    /* Empêche le défilement de la page et la fixe en plein écran */
    overflow: hidden; 
    height: 100vh;
    position: relative; /* Nécessaire pour positionner les éléments */
}

/* Lien Info en haut à droite (orange fluo, taille agrandie) */
.top-right-link {
    position: absolute;
    top: 35px;
    right: 45px;
    color: #ff6600; /* Orange fluo */
    text-decoration: none;
    font-family: "Avenir", sans-serif;
    font-weight: 800; /* Gras */
    font-size: 2rem; /* Taille agrandie */
    text-transform: uppercase;
    letter-spacing: 1.5px;
    z-index: 1000;
    transition: all 0.3s ease;
}

.top-right-link:hover,
.top-right-link:active {
    text-decoration: underline;
}

/* Section Pleine Page (Accueil avec image) */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-end; /* Aligne le contenu vers le bas de l'écran */
    text-align: center;
    
    /* Image de fond par défaut */
    background-image: url('fond-accueil.jpg');
    
    /* Couverture de l'écran */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    /* Filtre sombre pour assurer la lisibilité */
    background-color: rgba(0, 0, 0, 0.2);
    background-blend-mode: overlay;
    
    padding-bottom: 40px;
}

/* Conteneur des boutons en bas (sans fond ni contour) */
.image-buttons {
    display: flex;
    gap: 30px;
    z-index: 1000;
    background: transparent;
    padding: 0;
}

/* Styles des boutons (Avenir Bold Majuscule, même taille que Info) */
.image-buttons button {
    background: transparent;
    border: none; /* Suppression du contour */
    color: #ff6600; /* Orange fluo */
    font-family: "Avenir", sans-serif;
    font-weight: 800; /* Gras */
    font-size: 2rem; /* Même taille que le bouton Info */
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
    text-decoration: none;
}

.image-buttons button:hover,
.image-buttons button:active {
    text-decoration: underline; /* Surligné au clic et au survol */
}

/* Signature en bas à droite */
.signature {
    position: absolute;
    bottom: 25px;
    right: 30px;
    color: #ffffff;
    font-family: "Avenir", sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    z-index: 1000;
    opacity: 0.8;
}

/* Adaptation pour les tablettes et smartphones */
@media (max-width: 768px) {
    .top-right-link {
        top: 20px;
        right: 20px;
        font-size: 1.3rem;
    }

    .image-buttons {
        gap: 20px;
        margin-bottom: 25px;
    }

    .image-buttons button {
        font-size: 1.3rem;
    }

    .signature {
        bottom: 15px;
        right: 15px;
        font-size: 0.75rem;
    }
}