/* === Couleurs globales === */
body {
  background-color: #000000 ;
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
}

/* === Textes === */
h1, h2, h3, h4, h5 {
  color: #FFFFFF;
  font-weight: 700;
}
p, a, li, label, span {
  color: #DDDDDD;
}



/* === Liens === */
a {
  text-decoration: none;
  transition: color 0.3s;
}
a:hover {
  color: #FF0000;
}

/* === Boutons === */
.btn {
  border-radius: 6px;
  font-weight: 600;
  padding: 8px 16px;
}
.btn-primary {
  background-color: #FF0000;
  color: white;
}
.btn-red:hover {
  background-color: #C00000;
}
.btn-outline-primary {
    background-color: transparent;
    color: #FF0000;
    border: 2px solid #FF0000;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: #FF0000;
    color: #fff;
}


/* === Cartes === */
.card {
  background-color: #1a1a1a;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.2);
  padding: 20px;
  margin-bottom: 20px;
}

/* === Champs de formulaire === */
input, textarea, select {
  background-color: #222;
  border: 1px solid #555;
  color: white;
  padding: 8px;
  border-radius: 4px;
}
input:focus, textarea:focus {
  outline: none;
  border-color: #FF0000;
}

/* === Classes utilitaires === */
.text-white { color: white !important; }
.text-red { color: #FF0000; }
.bg-red { background-color: #FF0000; }
.bg-dark { background-color: #121212; }




.accueil-background {
    background-image: url("../images/background.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.accueil-background::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.accueil-background .content {
    position: relative;
    z-index: 2;
    color: #FFFFFF;
}

.accueil-background h1 {
    font-size: 48px;
    font-weight: 800;
}

.accueil-background p {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
}
/* Styles pour les carousels */
.carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    border-radius: 15px;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    padding: 20px;
    margin-bottom: 2rem;
}

.carousel-track {
    display: flex;
    gap: 15px;
    transition: transform 0.3s ease;
    width: max-content;
}


.jeu-item, .film-item{
  flex-shrink: 0;
    width: 200px;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #7C1414;}


.film-item:hover, .jeu-item:hover {
    transform: scale(1.05);
    border-color: #FF0000;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
}

.film-item img, .jeu-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.film-item:hover img, .jeu-item:hover img {
    transform: scale(1.05);
}

.item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    color: white;
    padding: 15px 10px 10px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.film-item:hover .item-overlay,
.jeu-item:hover .item-overlay {
    transform: translateY(0);
}

.item-title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #FF0000;
}

.item-info {
    font-size: 12px;
    color: #ccc;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #7C1414, #FF0000);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: linear-gradient(135deg, #FF0000, #FF4444);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.left {
    left: 10px;
}

.carousel-btn.right {
    right: 10px;
}

.section-title {
    color: #FF0000;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: center;
}

.no-items {
    text-align: center;
    color: #ccc;
    font-style: italic;
    padding: 2rem;
}

/* Styles pour les tournois et salles */
.tournoi-item, .salle-item {
    flex-shrink: 0;
    width: 280px;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #7C1414;
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
}

.tournoi-item:hover, .salle-item:hover {
    transform: scale(1.05);
    border-color: #FF0000;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
}

.tournoi-item {
    border-color: #FFD700;
}

.tournoi-item:hover {
    border-color: #FFA500;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.item-content {
    padding: 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
}

.item-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.item-icon {
    font-size: 2rem;
    margin-right: 0.5rem;
}

.tournoi-item .item-title {
    color: #FFD700;
}

.item-footer {
    margin-top: auto;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.salle-cinema {
    border-color: #FF6B6B;
}

.salle-gaming {
    border-color: #4ECDC4;
}

.salle-cinema:hover {
    border-color: #FF5252;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.salle-gaming:hover {
    border-color: #26A69A;
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.3);
}

/* Styles pour les statistiques */
.stat-card {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border: 2px solid #7C1414;
    border-radius: 15px;
    padding: 2rem;
    margin: 1rem 0;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: #FF0000;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.2);
}

.stat-card h3 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .film-item, .jeu-item {
        width: 150px;
        height: 225px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}

        /* Modern Footer Styles */
        .modern-footer {
            background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
            color: #e2e8f0;
            padding: 40px 0 20px;
            margin-top: 60px;
            position: relative;
        }

        .modern-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(139, 38, 53, 0.5), transparent);
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .footer-brand img {
            width: 32px;
            height: 32px;
            border-radius: 6px;
        }

        .footer-brand span {
            font-weight: 600;
            color: #f7fafc;
        }

        .footer-links {
            display: flex;
            gap: 24px;
            list-style: none;
            margin: 0;
            padding: 0;
            flex-wrap: wrap;
        }

        .footer-link {
            color: #cbd5e0;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .footer-link:hover {
            color: #8B2635;
            transform: translateY(-1px);
        }

        .footer-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: #8B2635;
            transition: width 0.3s ease;
        }

        .footer-link:hover::after {
            width: 100%;
        }

        .footer-copyright {
            color: #a0aec0;
            font-size: 0.85rem;
            margin: 0;
        }

        @media (max-width: 768px) {
            .footer-content {
                flex-direction: column;
                text-align: center;
                gap: 16px;
            }

            .footer-links {
                justify-content: center;
                gap: 16px;
            }
        }
