body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0f172a;
    color: #f8fafc;
    line-height: 1.6;
}

/* 1. CONFIGURATION DU CONTENEUR GLOBAL*/
.container {           
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

   /* 2. HEADER & NAVIGATION */
      header {
        background-color: black;
        padding: 1.5rem 0;
        border-bottom: 2px solid #00d2ff;
    }
    
    .navbar {
     display: flex;
     justify-content: space-between;
     align-items: center;
     width: 95%;
     margin: 0 auto;
     }
    
    .logo { 
        font-size: 1.8rem; 
        font-weight: bold; 
        color: #f8fafc;
    }
    
    .logo span { 
        color: #00d2ff; 
    }
    
    .nav-links {
        list-style: none;
        display: flex;
        align-items: center;
        margin: 0;
        padding: 0;
    }
    
    .nav-links > li { 
        margin-left: 30px; 
        position: relative; 
    }
    
    .nav-links a {
        text-decoration: none;
        color: #f8fafc;
        font-weight: 500;
        transition: 0.3s ease;
    }
    
    .nav-links a:hover, 
    .nav-links a.active { 
        color: #00d2ff; 
    }
    
    /* --- DESIGN DU MENU DÉROULANT (DROPDOWN) --- */
    .dropdown-trigger {
        display: flex;
        align-items: center;
        gap: 6px;
        cursor: pointer;
    }
    
    .arrow-down {
        display: inline-block;
        width: 0;
        height: 0;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 5px solid #ffffff; 
        transition: transform 0.3s ease;
    }
    
    .dropdown-menu {
        display: none; 
        position: absolute;
        top: 90%; 
        left: 50%;
        transform: translateX(-50%) translateY(10px); 
        background-color: #1e293b; 
        min-width: 160px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
        border-radius: 6px;
        padding: 8px 0;
        list-style: none;
        margin: 0;
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    }
    
    .dropdown-menu li {
        margin-left: 0 !important; 
        display: block;
        width: 100%;
    }
    
    .dropdown-menu li a {
        padding: 10px 20px;
        display: block;
        font-size: 14px;
        color: #cbd5e1;
        white-space: nowrap; 
        text-align: left;
        transition: background-color 0.2s ease, color 0.2s ease;
    }
    
    .dropdown-menu li a:hover {
        background-color: #00d2ff; 
        color: #0f172a;
    }
    
    .nav-links li.dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0px); 
    }
    
    .nav-links li.dropdown:hover .arrow-down {
        transform: rotate(180deg);
    }
    
    

/* STYLES POUR LA PAGE INFOS*/
.info-section {
    margin: 60px 0;
}

.info-card {
    background: #1e293b; 
    padding: 40px;
    border-radius: 15px;
    border-left: 1px solid #334155;
    border-top: 1px solid #334155;
    border-right: 1px solid #334155;
    border-bottom: 1px solid #334155;
}

.info-card h2 {
    color: #00d2ff; 
    margin-bottom: 20px;
}

.profile-text p {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 15px;
}

/* Grille des mentions légales */
.legal-section {
    margin-bottom: 80px;
}

.legal-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.legal-item {
    background: #1e293b;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #334155;
}

.legal-item h3 {
    color: #00d2ff;
    font-size: 1.1rem;
    margin-bottom: 15px;
    border-bottom: 1px solid #334155;
    padding-bottom: 10px;
}

.legal-item p {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.5;
    margin-bottom: 8px;
}

.legal-item p:last-child {
    margin-bottom: 0;
}

/* FOOTER*/
footer {
    text-align: center;
    padding: 25px;
    background-color: #020617;
    color: #64748b;
    border-top: 1px solid #1e293b;
    margin-top: auto; 
}

.btn-pdf-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: transparent;
    color: #00d2ff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;   
    padding: 6px 14px;       
    border: 1.5px solid #00d2ff; 
    border-radius: 6px;
    margin-top: 12px;
    transition: all 0.2s ease;
    cursor: pointer;
    width: max-content;     
}

.btn-pdf-download:hover {
    background-color: #00d2ff;
    color: #0f172a; 
    box-shadow: 0 0 10px rgba(0, 210, 255, 0.3);
    transform: translateY(-1px);
}
