/* ===== VARIABLES ===== */
:root {
    --gold-yellow: #FFD700;
    --dark-blue: #0A1931;
    --gold-orange: #FFA500;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --medium-gray: #E0E0E0;
    --dark-gray: #333333;
    --text-color: #444444;
}

/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    padding-top: 80px; /* Header fixe */
    padding-bottom: 60px; /* Footer fixe */
    min-height: 100vh;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER FIXE ===== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 25, 49, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.5rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    gap: 0.75rem;
}

.logo-placeholder {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold-yellow), var(--gold-orange));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-placeholder i {
    color: var(--dark-blue);
    font-size: 1.2rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--gold-yellow);
    font-size: 1.2rem;
    line-height: 1;
}

.logo-tagline {
    color: rgba(255,255,255,0.8);
    font-size: 0.6rem;
    line-height: 1;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-list a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--gold-yellow);
}

.btn-nav {
    background: linear-gradient(135deg, var(--gold-yellow), var(--gold-orange));
    color: var(--dark-blue);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== FOOTER COMPACT ===== */
.main-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark-blue);
    color: var(--white);
    z-index: 1000;
    padding: 0.5rem 0;
    height: 60px;
    box-shadow: 0 -1px 5px rgba(0,0,0,0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 120px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold-yellow);
    font-weight: 600;
    font-size: 0.9rem;
}

.footer-logo i {
    font-size: 0.9rem;
}

.footer-tagline {
    color: rgba(255,255,255,0.7);
    font-size: 0.6rem;
    margin: 0;
    line-height: 1;
}

.footer-center {
    flex: 1;
    text-align: center;
}

.footer-links {
    margin-bottom: 0.25rem;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.75rem;
    margin: 0 0.5rem;
}

.footer-links a:hover {
    color: var(--gold-yellow);
}

.separator {
    color: rgba(255,255,255,0.4);
}

.copyright {
    color: rgba(255,255,255,0.6);
    font-size: 0.65rem;
    margin: 0;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 100px;
    justify-content: flex-end;
}

.contact-email {
    color: rgba(255,255,255,0.8);
    font-size: 0.8rem;
}

.social-mini {
    display: flex;
    gap: 0.5rem;
}

.social-mini a {
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
}

.social-mini a:hover {
    color: var(--gold-yellow);
}

/* ===== SLIDER ===== */
.hero-slider {
    margin-top: 20px;
    height: 60vh;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 80%;
    max-width: 800px;
}

.slide-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.slide-desc {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: white;
}

.btn-slide {
    background: var(--dark-blue);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: background 0.3s;
}

.btn-slide:hover {
    background: var(--gold-orange);
    color: var(--dark-blue);
}

.dots-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: var(--gold-yellow);
}

.slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 1rem;
    cursor: pointer;
    z-index: 10;
    font-size: 1.5rem;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

/* ===== SECTIONS ===== */
.page-hero {
    background: linear-gradient(135deg, var(--dark-blue), #1a2a4a);
    color: white;
    padding: 2rem 0;
    text-align: center;
    margin-top: 20px;
}

.page-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.page-subtitle {
    color: var(--gold-yellow);
    opacity: 0.9;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--dark-blue);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--gold-yellow), var(--gold-orange));
}

/* ===== BOUTONS ===== */
.btn-primary {
    background: linear-gradient(135deg, var(--gold-yellow), var(--gold-orange));
    color: var(--dark-blue);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    cursor: pointer;
    transition: transform 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--dark-blue);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: #1a2a4a;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-slider {
        height: 50vh;
        min-height: 350px;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-desc {
        font-size: 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .footer-left,
    .footer-center,
    .footer-right {
        width: 100%;
        justify-content: center;
    }
    
    body {
        padding-bottom: 80px;
    }
    
    .main-footer {
        height: auto;
        padding: 0.75rem 0;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-list {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--dark-blue);
        flex-direction: column;
        padding: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
        z-index: 999;
    }
    
    .nav-list.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .hero-slider {
        height: 40vh;
        min-height: 300px;
    }
    
    .slide-title {
        font-size: 1.5rem;
    }
    
    .slide-desc {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 1.5rem;
    }
    
    .footer-links a {
        font-size: 0.7rem;
        margin: 0 0.25rem;
    }
    
    .contact-email span {
        display: none;
    }
}