/* Importation de la police Barlow Condensed */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700&display=swap');

/* Variables CSS */
:root {
    --bg-color: #FFFFFF;
    --text-color: #000000;
    --highlight-color: #D0AA00; /* Doré prestigieux */
    --accent-dark: #1A1A1A; /* Noir profond */
}

/* Reset de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Barlow Condensed', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3 {
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

p {
    font-size: 1.1rem;
}

/* =========================================
   HEADER & NAVIGATION (Mobile First)
   ========================================= */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    border-bottom: 2px solid var(--text-color);
    position: relative;
    background-color: var(--bg-color);
    z-index: 1000;
}

.logo a img {
    height: 40px;
}

/* Bouton Hamburger */
.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--text-color);
    transition: 0.3s ease;
}

/* Menu de navigation mobile */
nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-color);
    border-bottom: 2px solid var(--text-color);
    display: none; /* Caché par défaut */
    padding: 20px 0;
    z-index: 999;
}

nav.active {
    display: block;
}

nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1.5rem;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
}

/* Couleur de la page active dans le menu */
nav a.active-page {
    color: var(--highlight-color) !important;
}

/* Adaptation du Header pour Écrans Larges */
@media (min-width: 1150px) {
    header {
        padding: 10px 50px;
    }
    
    .logo img {
        height: 60px;
    }
    
    .hamburger {
        display: none; /* On cache le hamburger */
    }
    
    nav {
        position: static;
        display: block;
        width: auto;
        border: none;
        padding: 0;
    }
    
    nav ul {
        flex-direction: row;
        gap: 30px;
        font-size: 1.2rem;
    }
}

/* =========================================
   SYSTÈME DE BOUTONS (Gala & Esport)
   ========================================= */

/* Structure commune */
.btn {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 1px;
    padding: 12px 30px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border: none;
    position: relative;
    transition: all 0.3s ease;
}

/* Variante : Or */
.btn-gold {
    background-color: var(--highlight-color);
    color: var(--accent-dark);
}

.btn-gold:hover {
    background-color: var(--accent-dark);
    color: var(--highlight-color);
}

/* Variante : Sombre */
.btn-dark {
    background-color: var(--accent-dark);
    color: var(--highlight-color);
}

.btn-dark:hover {
    background-color: var(--highlight-color);
    color: var(--accent-dark);
}

/* Variante : Éclairage (Animation) */
.btn-glow {
    background-color: var(--text-color);
    color: var(--bg-color);
    clip-path: none; 
    border: 1px solid var(--text-color);
    overflow: hidden;
    z-index: 1;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--highlight-color);
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-glow:hover::before {
    left: 0; 
}

.btn-glow:hover {
    color: var(--accent-dark);
    border-color: var(--highlight-color);
    box-shadow: 0 0 15px var(--highlight-color);
}

/* Modificateur de taille */
.btn-large {
    font-size: 1.6rem;
    padding: 20px 40px;
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

/* =========================================
   FOOTER
   ========================================= */
footer {
    background-color: var(--accent-dark);
    color: var(--bg-color);
    padding: 40px 20px;
    text-align: center;
    margin-top: 50px;
}

footer h3 {
    color: var(--highlight-color);
    margin-bottom: 15px;
}

footer p {
    font-size: 1.2rem;
}


footer p a {
    color: var(--bg-color);
} 

.social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

footer .social-links a{
    color: var(--highlight-color);
    text-decoration: none;
    font-size: 1.1rem;
    border: 1px solid var(--highlight-color);
    padding: 10px 20px;
    text-transform: uppercase;
    margin: 10px;
    transition: all 0.3s ease;
    width: 130px;
}

footer .social-links a:hover {
    background-color: var(--highlight-color);
    color: var(--accent-dark);
}


/* Conteneur deux colonnes */
.two-wide {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* Adaptation pour écrans larges (2 colonnes) */
@media (min-width: 768px) {
    .two-wide {
        grid-template-columns: repeat(2, 1fr);
    }
}

.text-description {
    padding: 30px 20px;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}


h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.text-description p {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.center {
    text-align: center;
}