/* CSS Document */

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    height: 100vh; /* Prend toute la hauteur de l'écran */
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    overflow: hidden; /* Empêche le scroll si pas nécessaire */
    background-color: #111; /* Fond de secours noir */
    
    /* IMAGE DE FOND */
    background-image: url('bg.jpg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* COUCHE NOIRE SEMI-TRANSPARENTE */
/* Cela permet de lire le texte même si l'image est chargée */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75); /* Noir à 75% d'opacité */
    z-index: 1;
}

/* CONTENEUR CENTRAL */
.container {
    position: relative;
    z-index: 2; /* Au-dessus de l'overlay */
    text-align: center;
    padding: 20px;
    width: 100%;
    max-width: 600px;
    animation: fadeIn 1.5s ease-in-out;
}

/* LOGO */
.logo {
    max-width: 250px; /* Taille du logo */
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.5));
}

/* TEXTE */
h1 {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    display: inline-block;
    padding-bottom: 10px;
}

.subtitle {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
    color: #ccc;
    margin-bottom: 50px;
    font-style: italic;
}

/* BOITE DE CONTACT */
.contact-box {
    background: rgba(255, 255, 255, 0.05); /* Fond très léger */
    backdrop-filter: blur(5px); /* Effet de flou derrière */
    padding: 30px;
    border-radius: 2px; /* Bords légèrement arrondis ou carrés pour archi */
    border: 1px solid rgba(255,255,255,0.1);
}

.contact-item {
    margin: 15px 0;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: 0.3s;
}

.contact-item:hover {
    transform: scale(1.05);
    color: #bfa57d; /* Couleur "Or/Beige" au survol (élégant) */
}

.contact-item a {
    text-decoration: none;
    color: inherit;
    font-weight: 400;
}

.contact-item i {
    font-size: 1.1rem;
}

/* FOOTER */
footer {
    margin-top: 50px;
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ANIMATION D'APPARITION */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE MOBILE */
@media (max-width: 768px) {
    .logo {
        max-width: 180px;
    }
    h1 {
        font-size: 1.2rem;
    }
    .contact-item {
        font-size: 1rem;
        flex-direction: column; /* Icone au dessus du texte sur mobile */
        gap: 5px;
    }
}