/* Global Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #121212; /* Fond sombre pour le mode sombre */
    color: #e0e0e0; /* Couleur du texte */
    height: 100vh; /* Hauteur pleine fenêtre */
    overflow: hidden; /* Empêche le défilement */
}

.container {
    height: 100vh; /* Hauteur pleine fenêtre */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.header {
    width: 100%;
    padding: 20px;
    background-color: #1f1f1f;
    color: #e0e0e0;
}

.logo {
    font-size: 2.5em;
    font-weight: bold;
    color: #ff5722; /* Couleur feu pour le logo */
    text-shadow: 0 0 10px rgba(255, 87, 34, 0.8), 0 0 20px rgba(255, 87, 34, 0.6), 0 0 30px rgba(255, 87, 34, 0.4); /* Ombre lumineuse */
    animation: glow 0.5s infinite alternate; /* Animation lumineuse rapide */
}

/* Hero Section Styles */
.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #ff5722, #ffcc00); /* Gradient de feu */
    border-radius: 10px;
    width: 100%;
    padding: 20px;
}

.welcome-text h1 {
    font-size: 3em;
    font-weight: bold;
    color: #ffffff; /* Texte en blanc */
    background: linear-gradient(to right, #ffffff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.image-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.hero-image {
    width: 45%;
    border: 5px solid #ff5722; /* Bordure couleur feu */
    border-radius: 10px;
    animation: zoom 5s infinite alternate; /* Animation de zoom répétée */
    opacity: 0.8;
}

@keyframes zoom {
    from {
        transform: scale(1);
        opacity: 0.8;
    }
    to {
        transform: scale(1.1);
        opacity: 1;
    }
}

/* Animation for glowing effect */
@keyframes glow {
    0% {
        text-shadow: 0 0 10px rgba(255, 87, 34, 0.8), 0 0 20px rgba(255, 87, 34, 0.6), 0 0 30px rgba(255, 87, 34, 0.4);
    }
    100% {
        text-shadow: 0 0 15px rgba(255, 87, 34, 1), 0 0 30px rgba(255, 87, 34, 0.8), 0 0 45px rgba(255, 87, 34, 0.6);
    }
}

/* Button Styles */
.back-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff5722; /* Couleur feu */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    margin-top: 20px;
}

.back-button:hover {
    background-color: #e64a19; /* Couleur feu plus foncée pour le survol */
}
#pp{
    color:#121212;
}
.back-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
    color: white;
    background-color:#e64a19;
    text-decoration: none;
    border-radius: 5px;
    transition: transform 0.3s ease-in-out;
    animation: zooming 1.5s ease-in-out infinite;
}

/* Animation de zoom */
@keyframes zooming {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.back-button:hover {
    background-color: #555;
}
@media (max-width: 768px) {
    /* Styles pour les écrans plus petits que 768px */
    body {
        font-size: 14px;
    }
}
