/* --- 1. CONFIGURATION GÉNÉRALE --- */
body, html {
    height: 100%;
    margin: 0;
    font-family: sans-serif; 
}

/* --- LE LOGO (Taille Desktop) --- */
.logo-container img {
    height: 130px;
    width: auto;  
}
/* --- 2. L'IMAGE DE FOND ET LE CONTENEUR PRINCIPAL --- */
.hero-section {
    
    min-height: 100vh; 
    
    /* Le linear-gradient sert à assombrir l'image pour que le texte blanc soit lisible */
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4)), 
                url('../img/fond-domino.jpg'); 
    /* Pour que l'image couvre tout l'écran sans se déformer */
    background-size: cover;
    background-position: center;
    /* Position relative pour gérer les éléments à l'intérieur */
    position: relative; 
}

/* ---  RESEAUX SOCIAUX --- */
.social-icons a {
    font-size: 2rem; /* Taille plus grande (environ 32px) */
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2); /* Grossit de 20% au survol */
    opacity: 0.9;
}

/* --- 3. TYPOGRAPHIE SPÉCIFIQUE --- */

/* Le grand titre "Le Domino" */
.main-title {
    font-family: 'The Nautigal', cursive;
    font-size: 10rem; 
    font-weight: 400;
    line-height: 1; 
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
/* Le sous-titre en majuscules avec la police Vidaloka */
.tracking-wide {
    font-family: 'Vidaloka', serif;
    letter-spacing: 3px; 
    font-size: 0.9rem;
    font-weight: 400; 
}

/* --- 4. LES BOUTONS --- */
.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.8); 
    padding: 15px 30px;
    letter-spacing: 2px; 
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.4s ease;
    background: transparent; 
}

.btn-outline-light:hover {
    background-color: white;
    color: black;
    border-color: white;
    transform: translateY(-3px);
}

/* --- 5. LE LIEN DU BAS (Découvrir notre carte) --- */
footer a {
    font-family: sans-serif; /* Retour à une police simple pour ce lien */
    letter-spacing: 3px; 
    font-size: 0.8rem;
    font-weight: 700; /* Gras */
    border-bottom: 2px solid white !important; /* Ligne de soulignement plus épaisse */
    padding-bottom: 5px; /* Espace entre le texte et la ligne */
    transition: opacity 0.3s;
}

footer a:hover {
    opacity: 0.8; /* Légère transparence au survol */
    color: white; /* Garde le blanc */
    transform: translateY(-3px); 
}

/* --- 5. ADAPTATION MOBILE (Responsive) --- */
@media (max-width: 768px) {
    /* On réduit un peu le grand titre sur mobile */
    .main-title {
        font-size: 5rem; /* Ajusté pour que ça tienne sur l'écran */
    }
    
    /* On ajuste le logo pour le mobile */
    .logo-container img {
        height: 100px; /* Plus grand qu'avant (60px), mais pas géant */
    }
    
    /* On réduit un peu les marges sur mobile */
    header {
        padding: 1rem !important; /* Moins d'espace en haut */
    }
}