@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@100;200;300&display=swap');

body {
    margin: 0;
    font-family: "LemonMilk";
    background-color: #131314;
    overflow-x: hidden;
    color: #a00019;
   
}

a {
    color: #ffffff;
    text-decoration: none;
    font-family: "LemonMilk";
    
}

.blood-drop {
            position: absolute;
            width: 20px;
            height: 40px;
            background-color: #ffffff;
            border-radius: 50% 50% 50% 50%; /* Forme arrondie en haut */
            transform: rotate(45deg);
            animation: fall 3s infinite ease-in-out;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
        }

        .blood-drop::before {
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 70px; /* Ajustement de la taille */
            height: 20px; /* Ajustement de la taille */
            background-color: #8B0000;
            border-radius: 90%; /* Forme ronde */
        }

        @keyframes fall {
            0% {
                transform: translateY(0) rotate(45deg);
                opacity: 1;
            }
            80% {
                opacity: 1;
            }
            100% {
                transform: translateY(100vh) rotate(45deg);
                opacity: 0;
            }
        }

        /* Création de plusieurs gouttes */
        .blood-drop:nth-child(1) {
            left: 10%;
            animation-delay: 0s;
        }

        .blood-drop:nth-child(2) {
            left: 20%;
            animation-delay: 0.5s;
        }

        .blood-drop:nth-child(3) {
            left: 30%;
            animation-delay: 1s;
        }

        .blood-drop:nth-child(4) {
            left: 40%;
            animation-delay: 1.5s;
        }

        .blood-drop:nth-child(5) {
            left: 50%;
            animation-delay: 2s;
        }

        .blood-drop:nth-child(6) {
            left: 60%;
            animation-delay: 2.5s;
        }

        .blood-drop:nth-child(7) {
            left: 70%;
            animation-delay: 3s;
        }

        .blood-drop:nth-child(8) {
            left: 80%;
            animation-delay: 3.5s;
        }

        .blood-drop:nth-child(9) {
            left: 90%;
            animation-delay: 4s;
        }

        .blood-drop:nth-child(10) {
            left: 95%;
            animation-delay: 4.5s;
        }

.titre {
text-align: center;
align-items: center;
margin-top: 310px;
margin-bottom: 200px;
color: #a00019;
font-family: 'Gotham';
font-size: 3rem;
}

*::-webkit-scrollbar {
    width: 1px;
}

*::-webkit-scrollbar-track {
    background-color: #000000;
}

*::-webkit-scrollbar-thumb {
    background-color: #ffffff;
}

header {
    background-color: #fff;
    text-align: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    height: 5rem;
    padding: 0 2rem;
    background-color: #8b0000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: #332e82;
}

/* couteau qui tombe de la page  */
/* CSS de base pour l'image du couteau */
#couteau {
    position: absolute;
    top: -100px; /* Position initiale au-dessus de la page */
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    display: none; /* Caché au départ */
}

/* Animation de chute */
@keyframes fall {
    0% {
        top: -100px;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    100% {
        top: 100vh; /* Tombe jusqu'au bas de la page */
        opacity: 0;
    }
}

.falling-knife {
    animation: fall 2s ease-in-out forwards; /* Animation de 2 secondes */
}







.navbar a {
    padding: 10px 40px;
   font-family: "Gotham";
   font-size: 1.5rem ;
}

nav ul {
    list-style: none;
    display: flex;
}

nav li {
    margin-right: 20px;
}

.un {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.billet {
    width: 300px;
    margin: 20px;
    background-color: rgb(54, 54, 54);
    padding: 0 0 40px 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 50px;
}

.billet img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    margin-bottom: 2rem;
}

.billet h2 {
    font-size: 1rem;
    padding: 0 2.5rem 1rem 2.5rem;
}

.billet p {
    text-align: center;
}

.billet button {
    background-color: #333;
    color: white;
    padding: 8px 12px;
    margin: 0 0 1rem 3rem;
    border: none;
    cursor: pointer;
}

.billet button:hover {
    background-color: #555;
}

.comments {
    display: none;
    margin-top: 10px;
}

.comments p {
    margin-bottom: 5px;
}

section {
    padding-top: 12rem;
}

section h1 {
    padding-left: 5rem;
}
.inscription {
    max-width: 590px;
    background-color: #2a2a2a; /* Arrière-plan sombre */
    color: #ff0000; /* Texte rouge sang */
    margin: 0 auto;
    padding: 60px;
    box-shadow: 0 0 15px rgba(139, 0, 0, 0.8); /* Ombre rouge foncé */
    border: 2px solid #8b0000; /* Bordure rouge sang */
    border-radius: 10px;
    margin-top: 10rem;
    background-image: url('blood_texture.png'); /* Ajoute une texture sanglante */
    background-size: cover;
}

.inscription h1 {
    text-align: center;
    font-family: 'Gotham', sans-serif;
    color: #ff4500; /* Rouge vif pour attirer l'attention */
    text-shadow: 2px 2px 8px #8b0000; /* Effet de texte en relief */
}

label {
    margin-bottom: 8px;
    color: #ff6347; /* Rouge plus clair pour contraster avec le fond */
    font-family: 'Inter Tight', sans-serif;
}

input {
    padding: 8px;
    margin: 5px 0 15px 0;
    background-color: #8b0000; /* Rouge sang foncé pour les champs */
    color: #fff;
    border: 2px solid #4b0000; /* Bordure foncée pour un effet sinistre */
    box-sizing: border-box;
    width: 100%;
    border-radius: 5px;
}

input[type="submit"] {
    background-color: #ff0000;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 0 5px #8b0000, 0 0 10px #ff0000 inset;
}

input[type="submit"]:hover {
    background-color: #8b0000;
    box-shadow: 0 0 20px #ff4500;
}

footer {
    background-color: #a00019;
    color: #fff;
    text-align: center;
    padding: 45px 0;
    margin-top: 70px;
}

.salut {
    position: absolute;
    z-index: -1;
    top: 8rem;
    left: 5rem;
}

.article img {
    width: 100vw;
    height: 70vw;
    object-fit: cover;
    filter: brightness(40%);
    z-index: -10;
    position: relative;
    bottom: 450px;
}

.article h1, .article p {
    padding: 0 0 0 3rem;
}

.article h1 {
    margin-bottom: 0;
    margin-top: 2.5rem;
}

.article p {
    margin-top: 5px;
}

.h2, .bon {
    padding-left: 3rem;
}

.commentaire {
    background-color: #1d1c1c;
    border: 1px solid #1d1c1c;
    border-radius: 5px;
    margin: 1rem 0 0 3rem;
    padding: 20px;
    width: 50vw;
}

.commentaire p {
    margin: 0;
    font-size: 14px;
    color: #b70a0a;
}

.meta {
    font-style: italic;
    color: #888;
}

.area {
    margin: 0 0 1rem 3rem;
    padding: 20px;
    resize: none;
    width: 50vw;
}

.area-2 {
    margin-left: 3rem;
    padding: 20px;
    width: 200px;
}

.kelis {
    padding: 3rem 0 3rem 3rem !important;
    width: 80vw;
}

.bon-1 {
    padding: 1rem 0 0 10rem;
}

@font-face {
    font-family: 'Lemonmilk';
    src: url('fonts/LEMONMILK.otf') format('opentype');
}

@font-face {
    font-family: 'Gotham';
    src: url('fonts/Gotham.ttf') format('truetype');
}
