/* =============================================
   DESIGN SYSTEM
   ============================================= */
:root {
    --primary: #1a2e26;
    --primary-light: #2a4a3d;
    --primary-dark: #0f1c17;
    --accent: #d4af37;
    --accent-hover: #e6c34a;
    --bg-light: #f9f9f7;
    --bg-white: #ffffff;
    --text-dark: #111111;
    --text-muted: #666666;
    --text-light: #999999;
    --white: #ffffff;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.06);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 15px;
    --radius-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3 { font-weight: 700; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.section-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.accent-text { color: var(--accent); }

/* =============================================
   NAVIGATION
   ============================================= */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    padding: 0.8rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

header.scrolled {
    padding: 0.4rem 5%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.logo img {
    height: 55px;
    display: block;
    object-fit: contain;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

nav ul {
    display: flex;
    gap: 0.3rem;
}

nav ul li a {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

nav ul li a:hover {
    color: var(--accent);
    background: rgba(26, 46, 38, 0.05);
}

nav ul li a.active {
    background: var(--primary);
    color: var(--white);
}

.social-icons {
    display: flex;
    gap: 0.8rem;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary);
    color: var(--white);
}

.social-icons i { font-size: 0.9rem; }

/* =============================================
   HERO / ACCUEIL
   ============================================= */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(15,28,23,0.7), rgba(26,46,38,0.5)), url('assets/hero.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

.hero-content { z-index: 2; }

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 4px 20px rgba(0,0,0,0.4);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--accent);
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(212,175,55,0.4);
    animation: fadeInUp 1s ease 0.4s both;
    transition: var(--transition);
}

.hero-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212,175,55,0.5);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 120px;
    background: var(--bg-light);
    clip-path: ellipse(55% 100% at 50% 100%);
}

/* =============================================
   QUI SOMMES-NOUS
   ============================================= */
.about-section {
    padding: 6rem 5%;
    background: var(--bg-light);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-lg);
    width: 100%;
    height: 500px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent);
    color: var(--primary-dark);
    padding: 1.5rem;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow);
    font-weight: 700;
}

.about-badge span { font-size: 2.2rem; line-height: 1; }
.about-badge small { font-size: 0.7rem; text-align: center; }

.about-text h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    line-height: 1.3;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.stat-item { text-align: center; }

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-suffix {
    font-size: 2rem;
    color: var(--accent);
    font-weight: 700;
}

.stat-item small {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
}

/* =============================================
   NOTRE ENSEIGNE
   ============================================= */
.enseigne-section {
    background: var(--bg-white);
}

.enseigne-hero {
    background: linear-gradient(135deg, rgba(15,28,23,0.75), rgba(26,46,38,0.6)), url('assets/hero.png');
    background-size: cover;
    background-position: center;
    padding: 5rem 5%;
    text-align: center;
    color: var(--white);
    position: relative;
}

.enseigne-hero h2 {
    font-size: 3rem;
    font-style: italic;
}

/* Cards */
.cards-section {
    padding: 4rem 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.card:hover { transform: translateY(-10px); box-shadow: var(--shadow); }
.card img { width: 100%; height: 250px; object-fit: cover; transition: var(--transition); }
.card:hover img { transform: scale(1.08); }

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
    text-align: center;
}

.card-content h3 { font-size: 1.4rem; }

/* Specialties */
.specialties-section {
    padding: 5rem 5%;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.specialty-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.specialty-item:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.specialty-img img { width: 100%; height: 280px; object-fit: cover; }
.specialty-info { padding: 1.8rem; }
.specialty-info h4 { font-size: 1.3rem; margin-bottom: 0.5rem; color: var(--primary); }
.specialty-info p { font-size: 0.95rem; color: var(--text-muted); }

/* Values */
.values-section {
    background: var(--primary);
    color: var(--white);
    padding: 5rem 5%;
    text-align: center;
}

.values-section .section-label { color: var(--accent); }

.values-section h3 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.value-card {
    background: var(--white);
    color: var(--text-dark);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.value-card:hover { transform: scale(1.05); box-shadow: var(--shadow-lg); }

.value-card i {
    font-size: 2.5rem;
    color: #27ae60;
    margin-bottom: 1.2rem;
    display: block;
}

.value-card h4 { margin-bottom: 0.8rem; font-size: 1.15rem; }
.value-card p { font-size: 0.9rem; color: var(--text-muted); }

/* =============================================
   OUVRIR MON KIOSQUE
   ============================================= */
.kiosque-section {
    padding: 6rem 5%;
    background: var(--bg-light);
}

.kiosque-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.kiosque-text h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.kiosque-text > p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.kiosque-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.benefit {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    padding: 1.2rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.benefit:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow);
}

.benefit i {
    font-size: 1.8rem;
    color: var(--accent);
    min-width: 40px;
    margin-top: 4px;
}

.benefit h5 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: var(--primary);
}

.benefit p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.kiosque-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition);
}

.kiosque-btn:hover {
    background: var(--accent);
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212,175,55,0.3);
}

.kiosque-image img {
    border-radius: var(--radius-lg);
    width: 100%;
    height: 550px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

/* =============================================
   CONTACT
   ============================================= */
.contact-section {
    padding: 6rem 5%;
    background: var(--bg-white);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.3rem;
    color: var(--accent);
    min-width: 30px;
    margin-top: 4px;
}

.contact-item h5 {
    font-size: 0.95rem;
    color: var(--primary);
    margin-bottom: 0.2rem;
}

.contact-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Contact Form */
.contact-form {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.form-group { margin-bottom: 1.2rem; }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    background: var(--white);
    transition: var(--transition);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
}

.form-group textarea { resize: vertical; }

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background: var(--accent);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.submit-btn i { margin-right: 0.5rem; }

/* =============================================
   FOOTER
   ============================================= */
footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.8);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary-dark);
}

.footer-links h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-links ul { display: flex; flex-direction: column; gap: 0.6rem; }

.footer-links li {
    font-size: 0.9rem;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-links li a:hover { opacity: 1; color: var(--accent); }
.footer-links li i { margin-right: 0.5rem; font-size: 0.8rem; }

.footer-bottom {
    text-align: center;
    padding: 1.5rem 5%;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    opacity: 0.6;
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 992px) {
    .about-container,
    .kiosque-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle { display: flex; }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: var(--white);
        box-shadow: -5px 0 30px rgba(0,0,0,0.1);
        padding: 5rem 2rem;
        transition: right 0.4s ease;
        z-index: 1000;
    }

    nav.open { right: 0; }

    nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }

    nav ul li a {
        display: block;
        padding: 1rem;
        font-size: 1rem;
    }

    .social-icons { display: none; }

    .hero h1 { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1rem; }

    .about-image img { height: 350px; }

    .about-badge {
        bottom: -10px;
        right: 10px;
        width: 90px;
        height: 90px;
        padding: 1rem;
    }

    .about-badge span { font-size: 1.6rem; }

    .about-stats { flex-wrap: wrap; gap: 1rem; }

    .enseigne-hero h2 { font-size: 2rem; }

    .kiosque-image img { height: 350px; }
}
