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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #000;
}

/* En-tête */
/* Centrer l'en-tête */
header.navbar {
    display: flex;
    flex-direction: column; /* Met le contenu en colonne (LOFTCLUB au-dessus de la nav) */
    align-items: center; /* Centre horizontalement */
    padding: 20px 0; /* Espacement vertical */
    background-color: #111; /* Fond noir */
    position: relative;
}

header .logo {
    margin-bottom: 10px; /* Espacement entre le logo et la navigation */
}

header .logo a {
    font-size: 28px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
}

header nav ul {
    list-style: none;
    display: flex; /* Alignement horizontal des liens */
    gap: 50px; /* Espacement entre les liens */
    margin: 0;
    padding: 0;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
}

header nav ul li a:hover,
header nav ul li a.active {
    color: #00bcd4; /* Couleur turquoise */
}

header .phone-number {
    position: absolute;
    right: 30px; /* Alignement à droite */
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #fff;
    font-weight: bold;
}

header .phone-number span {
    color: #e91e63; /* Couleur rose */
}



/* Section principale */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Texte principal */
.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 3rem;
}

.hero-text span {
    color: #ffd700;
    font-weight: bold;
}

/* Flèche de descente */
.arrow-down {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: #fff;
    text-decoration: none;
    animation: bounce 2s infinite;
}

/* Animation de la flèche */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}


.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 3rem;
    color: #fff;
}

.hero-text span {
    color: #ffd700;
}

.arrow-down {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: #fff;
    text-decoration: none;
}

/* Section principale */
.club-section {
    width: 100%;
    background-color: #000; /* Fond noir */
    color: #fff; /* Texte blanc */
    padding: 50px 0;
    font-family: Arial, sans-serif;
}

/* Conteneur principal */
.club-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px; /* Espacement entre image et texte */
}

/* Image */
.club-image {
    flex: 1;
    padding: 10px;
}

.club-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    border-bottom: 4px solid #fdd835; /* Bordure jaune */
}

/* Conteneur des deux blocs de texte */
.club-text-container {
    flex: 2;
    display: flex;
    gap: 20px; /* Espacement entre les deux blocs de texte */
}

.club-text-block {
    flex: 1;
    padding: 10px;
    background-color: #111; /* Fond légèrement différent */
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}

.club-text-block h2,
.club-text-block h3 {
    color: #f03e8a; /* Rose pour les titres */
    font-size: 2rem;
    margin-bottom: 15px;
}

.club-text-block h3 span {
    color: #38d39f; /* Vert turquoise pour les DJ */
}

.club-text-block p,
.club-text-block ul {
    font-size: 1rem;
    line-height: 1.6;
}

.club-text-block strong {
    color: #fdd835; /* Texte important en jaune */
}

/* Responsive Design */
@media (max-width: 768px) {
    .club-container {
        flex-direction: column;
    }

    .club-text-container {
        flex-direction: column;
    }

    .club-image,
    .club-text-block {
        width: 100%;
    }
}


/* Section Soirées */
.soirees {
    text-align: center;
    padding: 4rem 2rem;
    background: #222;
}

.soirees img {
    width: 100%;
    max-width: 800px;
    margin-top: 1rem;
}

/* Section Privatisation */
.privatisation {
    text-align: center;
    padding: 4rem 2rem;
    background: #333;
}

.contact-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 1rem 2rem;
    background: #ffd700;
    color: #000;
    text-decoration: none;
    font-weight: bold;
}

/* Footer global */

/* SECTION PRINCIPALE */
.section-principale {
    position: relative;
    background: url('images/photos/imgage01.png') center/cover no-repeat;
    height: 90vh; /* Augmentation légère de la hauteur */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    font-family: Arial, sans-serif;
}

.section-principale .contenu {
    position: relative;
    z-index: 2;
}

.section-principale h1 {
    font-size: 8.5rem; /* Texte légèrement plus grand */
    font-weight: bold;
    margin-bottom: 20px;
}

.section-principale p {
    font-size: 3.8rem;
    margin-bottom: 30px;
}

.section-principale .btn-contact {
    display: inline-block;
    padding: 18px 30px;
    color: #ffffff;
    background-color: #444444;
    border: 2px solid #ffffff;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease, color 0.3s ease;
}

.section-principale .btn-contact:hover {
    background-color: #ffd700;
    color: #000;
}

.section-principale {
    position: relative;
    margin-bottom: 100px; /* Ajoute un espace pour éviter le chevauchement */
    z-index: 1; /* S'assure que la section est au-dessus */
  }
  
/* Footer Container */
.footer-container {
    display: flex;
    justify-content: space-between; /* Aligne les éléments à gauche, au centre et à droite */
    align-items: center; /* Centre verticalement */
    padding: 20px 50px;
    background-color: #1c1c1c;
    color: #fff;
    font-family: Arial, sans-serif;
    position: relative;
    z-index: 1;
}

/* Section "Nous Trouver" et "Nous Contacter" */
.footer-left, .footer-right {
    flex: 1; /* Prend de l'espace équitablement */
    text-align: center;
}

.footer-left h2, .footer-right h2 {
    font-size: 24px; /* Agrandit le titre */
    margin-bottom: 10px;
}

.footer-left p, .footer-right p {
    font-size: 18px; /* Texte plus grand */
    line-height: 1.5;
}

.footer-button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background: transparent;
    border: 2px solid #fff;
    text-transform: uppercase;
    cursor: pointer;
}

/* Section Centrale avec Polygone */
.footer-center {
    flex: 2; /* Plus d'espace pour le polygone */
    display: flex;
    justify-content: center;
}

.polygone {
    width: 250px;
    height: 250px;
    background-color: #1c1c1c;
    transform: rotate(45deg);
    display: flex;
    justify-content: center;
    align-items: center;
}

.polygone-content {
    transform: rotate(-45deg); /* Rétablit l'orientation du texte */
    text-align: center;
}

.polygone-content h3 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
}

.polygone-content p, .reservation {
    font-size: 16px;
    color: #ffcc00; /* Texte jaune pour la réservation */
}

/* Ajustement Copyright */
.footer-copyright {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #fff;
}


.copyright {
    text-align: center;
    font-size: 12px;
    color: #7e7e7e;
    margin-top: 20px;
}


/* Section principale */
.soirees-section {
    width: 100%;
    background-color: #000; /* Fond noir */
    color: #fff;
    padding: 50px 0;
    font-family: Arial, sans-serif;
}

/* Conteneur */
.soirees-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

/* Texte à gauche */
.soirees-text {
    flex: 1;
    padding-right: 20px;
}

.soirees-text h2 {
    font-size: 3rem;
    color: #fdd835; /* Jaune */
    margin-bottom: 20px;
}

.soirees-text h3 {
    font-size: 1.5rem;
    color: #ddd;
    margin-bottom: 15px;
}

.soirees-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.soirees-text strong {
    color: #f03e8a; /* Rose */
}

/* Slideshow */
.soirees-slideshow {
    flex: 1;
    position: relative;
    max-width: 600px;
    height: 400px;
    overflow: hidden;
    border: 5px solid #f03e8a;
    border-radius: 10px;
}

.soirees-slideshow img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.soirees-slideshow img.active {
    opacity: 1;
}

/* Section ACTU */
.actu-section {
    background-color: #000; /* Fond noir */
    padding: 50px 0;
    text-align: center;
}

.actu-title {
    font-size: 3rem;
    color: #00c8d7; /* Couleur bleue */
    margin-bottom: 30px;
    text-transform: uppercase;
}

.actu-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.actu-card {
    position: relative;
    width: 300px;
    height: 450px;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    transform: rotate(0deg);
    transition: transform 0.5s ease;
}

.actu-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.actu-card .actu-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.5s ease;
    text-align: left;
    font-size: 1rem;
}

.actu-card:hover {
    transform: rotate(-5deg);
}

.actu-card:hover img {
    transform: scale(1.1);
}

.actu-card:hover .actu-overlay {
    transform: translateY(0);
}


/* Section PRIVATISATION */
.privatisation-section {
    background-color: #000; /* Fond noir */
    color: #fff; /* Texte blanc */
    padding: 50px 5%;
    text-align: center;
}

.privatisation-title {
    font-size: 3rem;
    color: #fddd2c; /* Jaune vif */
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: bold;
}

.privatisation-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #ccc;
    text-transform: uppercase;
}

.privatisation-content {
    display: flex;
    justify-content: center;
    gap: 30px;
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
}

.privatisation-text {
    flex: 1;
    background-color: #111; /* Fond sombre */
    padding: 20px 30px;
    border-left: 3px solid #fddd2c; /* Ligne jaune à gauche */
    font-size: 1rem;
    line-height: 1.8;
    color: #ddd;
}

.privatisation-text p {
    margin-bottom: 15px;
}

.privatisation-text strong {
    color: #fff; /* Mots en gras */
}

.privatisation-contact a {
    color: #00c8d7; /* Couleur bleue pour le lien */
    text-decoration: none;
}

.privatisation-contact a:hover {
    text-decoration: underline;
}


/* PAGE GALERIE */

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #111;
    color: #fff;
    line-height: 1.6;
}

/* HEADER */
header {
    background: #000;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

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

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease;
}

nav ul li a.active,
nav ul li a:hover {
    color: #ff007f;
}

/* SECTION GALERIE */
.gallery-section {
    text-align: center;
    padding: 40px 20px;
}

.gallery-section h1 {
    margin-bottom: 20px;
    font-size: 32px;
}

.filter {
    margin-bottom: 30px;
}

.filter label {
    font-size: 16px;
    margin-right: 10px;
}

.filter select {
    padding: 8px;
    font-size: 14px;
    background-color: #333;
    color: #fff;
    border: 1px solid #444;
    border-radius: 5px;
}

/* GALERIE */
.gallery-container {
    display: flex;
    flex-wrap: wrap; /* Permet aux cartes de passer à la ligne */
    justify-content: center;
    gap: 20px; /* Espacement entre les cartes */
}

.photo-card {
    background-color: #222;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
    overflow: hidden;
    width: 23%; /* Largeur des cartes (4 par ligne) */
    text-align: center;
}

.photo-card img {
    width: 100%;
    height: auto;
}

.photo-card h3, .photo-card p {
    color: #fff;
}

.photo-card button {
    background-color: #ff007f;
    color: #fff;
    padding: 10px 20px;
    margin: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.photo-card button:hover {
    background-color: #e6006b;
}

/* Pagination */
.pagination a {
    color: #fff;
    background-color: #333;
    padding: 12px 18px; /* Taille des numéros de page */
    margin: 0 5px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.pagination a.active,
.pagination a:hover {
    background-color: #ff007f;
}


/* PRIVATISATION */

/* Container principal pour les 4 colonnes */
.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* Espacement égal */
    margin: 20px auto;
    max-width: 1200px;
    gap: 20px; /* Espacement entre les colonnes */
}

/* Chaque section club77 */
.club77-section {
    background-color: #111; /* Couleur de fond */
    border: 1px solid #333;
    border-radius: 8px;
    text-align: center;
    color: #fff;
    padding: 20px;
    flex: 1 1 calc(25% - 20px); /* 4 colonnes avec espacement */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease-in-out;
}

/* Effet au survol */
.club77-section:hover {
    transform: scale(1.05);
}

/* Image dans chaque section */
.image-container img {
    width: 100%;
    height: auto;
    max-height: 150px; /* Taille max de l'image */
    object-fit: contain; /* Ajustement de l'image */
    margin-bottom: 10px;
}

/* Texte dans chaque section */
.text-container h2 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #f5f5f5;
}

.text-container p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.5;
    margin: 0;
}

/* Titre principal */
.info-title {
    text-align: center;
    font-size: 1.8rem;
    color: #ffdd00; /* Jaune */
    margin-bottom: 20px; /* Espacement sous le titre */
    font-weight: bold;
    letter-spacing: 1px; /* Espacement des lettres */
}

/* Section principale */
.info-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 90%;
    margin: 40px auto;
    background-color: #111; /* Fond sombre */
    color: #fff; /* Couleur du texte */
    padding: 20px;
    border-radius: 5px;
}

/* Bloc de texte */
.info-box {
    flex: 1;
    padding: 20px;
    border-left: 3px solid #ffdd00; /* Bordure jaune */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    width: 100%; /* Largeur pour s'adapter aux deux colonnes */
}

.info-box p {
    line-height: 1.6;
    margin-bottom: 15px;
}

.info-box strong {
    font-weight: bold;
    color: #fff; /* Texte important en blanc */
}

.email-link {
    color: #00bfff; /* Bleu clair */
    text-decoration: none;
    font-weight: bold;
}

.email-link:hover {
    text-decoration: underline;
}


/* AGENDA */

/* Style global */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
}

.container {
    width: 80%;
    margin: auto;
    text-align: center;
    padding: 50px 0;
}

/* Première Section : Bannière avec overlay */
.agenda-header {
    position: relative;
    background-image: url('images/photos/Untitled\ image\ -\ 2024-12-16T200327.752.png'); /* Remplacez par l'image de la bannière */
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 100px 20px;
}

.banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Overlay assombrissant */
    z-index: 1;
}

.banner .container {
    position: relative;
    z-index: 2;
    text-align: left;
}

.agenda-header h1 {
    font-size: 3em;
    color: #e6007e;
    font-weight: bold;
}

.agenda-header h2 {
    font-size: 2em;
    margin: 20px 0;
}

.agenda-header p {
    font-size: 1.1em;
    line-height: 1.5;
}

/* Conteneur des cartes */
.event-gallery {
    display: flex;
    justify-content: space-evenly; /* Espacement égal entre les cartes */
    flex-wrap: wrap; /* Permet le retour à la ligne */
    gap: 20px; /* Petit espace entre les cartes */
    padding: 20px; /* Espacement interne */
}

/* Style des cartes */
.event-card {
    background-color: #111; /* Fond sombre */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: calc(22% - 20px); /* 4 cartes par ligne avec un petit espace */
    min-height: 500px; /* Hauteur suffisante pour chaque carte */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Contenu équilibré */
}

/* Effet de survol pour les cartes */
.event-card:hover {
    transform: scale(1.05); /* Agrandissement léger au survol */
    box-shadow: 0 6px 12px rgba(255, 20, 147, 0.5); /* Ombre rose au survol */
}

/* Images dans les cartes */
.event-card img {
    width: 100%;
    height: 300px; /* Taille fixe pour l'image */
    object-fit: cover; /* Assure un bon rendu */
}

/* Pied de la carte pour le texte et bouton */
.event-card-content {
    padding: 15px;
    color: #fff;
    font-size: 14px;
}

.event-card-content h3 {
    color: #e6007e;
    font-size: 18px;
    margin-bottom: 10px;
}

.event-card-content button {
    background-color: #e6007e;
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.event-card-content button:hover {
    background-color: #ff3399;
}
