/* Import Google Fonts (Backup if not in HTML) */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600&family=Poppins:wght@300;400;500&display=swap');

html, body {
    height: 100%; /* Permet à l'arrière-plan de prendre toute la hauteur du contenu */
    margin: 0;
    padding: 0;
}

/* Background and Font */
body {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), /* Overlay */
    url('../img/wall.jpg'); 
    background-size: cover; 
    background-repeat: no-repeat; 
    background-position: left center; 
    background-attachment: fixed; 
    /*background-color: #000;*/
    font-family: 'Poppins', Arial, sans-serif;
    color: #fff;
    position: relative; /* Nécessaire pour le pseudo-élément */
    overflow-x: hidden; /* Empêche tout débordement horizontal */
}

.container {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.slogan {
    padding-top: 40px;
    padding-bottom: 40px;
}

/* Logo Styling */
.logo-img {
    max-width: 100px;
    height: auto;
    margin: 0 auto;
    display: block;
}

/* Slogan and Title Fonts */
h1, h2, h3 {
    font-family: 'Poppins', Arial, sans-serif;
    letter-spacing: 5px;
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 40px; /* 40px spacing between title and buttons */
}

/* General Text Fonts */
p, a, .btn {
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 400;
}

/* Buttons */
.links {
    display: flex;
    flex-direction: column; /* Ensure vertical alignment of buttons */
    align-items: center;    /* Center align buttons */
    gap: 20px;              /* 30px spacing between buttons */
}

.links .btn-custom {
    background-color: #F15A29;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 1rem;
    font-weight: 400;
    border: none;
    padding: 12px 20px;
    border-radius: 50px;
    width: 100%;
    max-width: 400px;
    transition: all 0.3s ease;
}

.links .btn-custom:hover {
    background-color: #F15A29;
    color: #fff;
    transform: scale(1.05);
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center; /* Centrer les icônes */
    gap: 20px; /* Espacement entre les icônes */
    margin-top: 40px; /* Espacement au-dessus des icônes */
    padding-bottom: 20px; /* Espacement en bas de la page */
}

.social-icon {
    text-decoration: none; /* Supprimer la décoration des liens */
    display: flex; /* Pour centrer l'icône dans le cercle */
    justify-content: center;
    align-items: center;
    width: 64px; /* Diamètre du cercle */
    height: 64px; /* Diamètre du cercle */
    border-radius: 50%; /* Rend le conteneur circulaire */
    background-color: #fff; /* Couleur de fond du cercle */
    font-size: 24px; /* Taille de l'icône */
    color: #000; /* Couleur de l'icône */
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
    background-color: #fff; /* Couleur de fond au survol */
    color: #F15A29; /* Couleur de l'icône au survol */
    transform: scale(1.1); /* Légère augmentation de taille au survol */
}


