/* Réinitialisation des marges et paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #111;
    color: #fff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    height: 100vh;
    position: relative;
}

/* Menu discret */
.menu-discret {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100;
}

.menu-discret ul {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 10px;
}

.menu-discret ul li {
    margin-bottom: 10px;
}

.menu-discret ul li a {
    color: #ffcc00;
    text-decoration: none;
    font-size: 18px;
    padding: 5px 10px;
    transition: color 0.3s;
}

.menu-discret ul li a:hover {
    color: #fff;
}

/* Effet de pluie */
.rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    background: rgba(0, 0, 0, 0.3);
}

.rain::before, .rain::after {
    content: '';
    position: absolute;
    top: -200px;
    width: 100%;
    height: 200%;
    background-image: url('raindrops.png'); /* Utilisez une image de gouttes de pluie ou un sprite */
    background-size: cover;
    animation: rainfall 2s linear infinite;
}

.rain::after {
    animation-delay: 1s;
}

@keyframes rainfall {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(100%);
    }
}

/* Tempête (éclairs dans le fond) */
.stormy-background {
    background-color: #111;
    animation: stormy 10s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes stormy {
    0%, 100% { background-color: #111; }
    30%, 70% { background-color: #444; } /* Éclairs subtils */
}

/* Styles généraux */
header {
    text-align: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.7);
}

header h1 {
    font-size: 36px;
    color: #ffcc00;
    margin-bottom: 10px;
}

header p {
    font-size: 18px;
    color: #ddd;
}

.content {
    padding: 40px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
}

p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #ddd;
}

.footer {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    text-align: center;
    font-size: 16px;
    color: #ddd;
}

.email {
    color: #ffcc00;
}

/* Responsive */
@media (max-width: 768px) {
    header h1 {
        font-size: 28px;
    }

    p {
        font-size: 16px;
    }

    .menu-discret ul {
        padding: 5px;
    }

    .menu-discret ul li {
        margin-bottom: 5px;
    }

    .menu-discret ul li a {
        font-size: 16px;
    }
}
