/* --- VARIABLES & RESET --- */
:root {
    --bg-color: #0a0a0a;
    --secondary-bg: #141414;
    --accent-color: #2962ff;
    /* Bleu électrique */
    --text-color: #ffffff;
    --text-muted: #b3b3b3;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

/* --- TYPOGRAPHY --- */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    text-transform: uppercase;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    display: block;
    width: 50%;
    height: 4px;
    background-color: var(--accent-color);
    margin-top: 10px;
}

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

/* --- LAYOUT --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

/* --- HEADER --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-links a:hover {
    color: var(--accent-color);
}

/* Bouton Langue */
.btn-lang {
    background: transparent;
    border: 1px solid var(--text-muted);
    color: var(--text-color);
    padding: 6px 14px;
    font-weight: bold;
    cursor: pointer;
    font-family: var(--font-heading);
    transition: 0.3s;
    border-radius: 4px;
    font-size: 0.85rem;
}

.btn-lang:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    background: rgba(41, 98, 255, 0.1);
}

.burger-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- HERO --- */
#home {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('img/dj.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

#home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(10, 10, 10, 0.4), rgba(10, 10, 10, 0.6)),
        linear-gradient(rgba(41, 98, 255, 0.15), rgba(41, 98, 255, 0.1));
    backdrop-filter: grayscale(60%) sepia(20%) hue-rotate(180deg) saturate(80%);
    z-index: 1;
}

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

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(41, 98, 255, 0.5);
}

.hero-content p {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    background: var(--accent-color);
    color: #fff;
    box-shadow: 0 0 15px var(--accent-color);
}

/* --- ABOUT --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.style-card {
    background: var(--secondary-bg);
    padding: 40px;
    border-left: 4px solid var(--accent-color);
    margin-top: 20px;
}

.tags span {
    display: inline-block;
    background: rgba(41, 98, 255, 0.1);
    color: var(--accent-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-right: 10px;
    margin-bottom: 10px;
    font-weight: 700;
}

/* --- STATS --- */
#stats {
    background: var(--secondary-bg);
}

.stats-container {
    display: flex;
    justify-content: space-around;
    text-align: center;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    padding: 20px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    color: var(--accent-color);
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

/* --- CARTE INTERACTIVE --- */
#map-section {
    background: var(--bg-color);
    padding: 80px 0;
}

#map {
    width: 100%;
    height: 500px;
    margin-top: 40px;
    background: var(--bg-color);
    outline: none;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Customisation des popups Leaflet */
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
    background: rgba(20, 20, 20, 0.95);
    color: #fff;
    border: 1px solid var(--accent-color);
    border-radius: 0;
    box-shadow: 0 0 15px rgba(41, 98, 255, 0.4);
}

.leaflet-popup-close-button {
    display: none;
}

.leaflet-popup-content {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    text-align: center;
    margin: 12px 20px;
    color: var(--accent-color);
}

.leaflet-control-attribution {
    background: transparent !important;
    color: #444;
    font-size: 10px;
}

.leaflet-control-attribution a {
    color: #444;
    text-decoration: none;
}

/* --- GALERIE (PHOTOS) --- */
#gallery {
    background: var(--secondary-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
    margin-top: 40px;
}

.gallery-item {
    height: 300px;
    overflow: hidden;
    position: relative;
    border: 1px solid #333;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.3s ease;
    filter: grayscale(80%);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(41, 98, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay i {
    font-size: 3rem;
    color: white;
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* --- LIGHTBOX --- */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: rgba(41, 98, 255, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10000;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    transform: translateY(-50%) scale(1.1);
}

/* --- CLIENTS (LOGOS CARROUSEL) --- */
.logo-carousel-wrapper {
    position: relative;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

.logo-carousel {
    overflow: visible;
    padding: 40px 0;
}

.logo-carousel-track {
    display: flex;
    align-items: center;
    gap: 40px;
    transition: transform 0.8s ease;
    padding: 0 50px;
}

.logo-item {
    min-width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    transition: all 0.6s ease;
    opacity: 0.4;
    transform: scale(0.75);
    filter: grayscale(100%);
    flex-shrink: 0;
}

.logo-item.featured {
    opacity: 1;
    transform: scale(1.4);
    filter: grayscale(0%);
    z-index: 10;
}

.logo-item img {
    max-width: 150px;
    max-height: 80px;
    object-fit: contain;
    transition: all 0.6s ease;
}

.logo-item.featured img {
    filter: drop-shadow(0 0 25px rgba(0, 234, 255, 0.6));
}

@media (max-width: 768px) {
    .logo-carousel-track {
        gap: 30px;
        padding: 0 30px;
    }

    .logo-item {
        min-width: 120px;
        height: 80px;
    }

    .logo-item img {
        max-width: 100px;
        max-height: 60px;
    }

    .logo-item.featured {
        transform: scale(1.2);
    }
}

/* --- TESTIMONIALS --- */
#testimonials {
    background: var(--secondary-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--bg-color);
    padding: 30px;
    border: 1px solid #222;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.testimonial-card .author h4 {
    color: var(--text-color);
    margin-bottom: 5px;
    font-family: var(--font-heading);
    text-transform: none;
}

.testimonial-card .author span {
    font-size: 0.85rem;
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
}

/* --- PRESS KIT --- */
#presskit {
    background: var(--bg-color);
}

#presskit p {
    text-align: center;
}

#presskit .btn {
    display: block;
    margin: 0 auto;
    width: fit-content;
}

/* --- CONTACT --- */
#contact {
    background: var(--secondary-bg);
    text-align: center;
}

/* Instagram Cards */
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.insta-card {
    background: var(--bg-color);
    padding: 40px 30px;
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.insta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.insta-card:hover::before {
    opacity: 0.1;
}

.insta-card:hover {
    border-color: #fd1d1d;
    transform: translateY(-5px);
}

.insta-card>* {
    position: relative;
    z-index: 1;
}

.insta-profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    margin: 0 auto 20px;
    position: relative;
}

.insta-profile-pic img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--bg-color);
}

.insta-profile-pic.insta-icon-only {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    padding: 0;
}

.insta-profile-pic.insta-icon-only i {
    font-size: 3rem;
    color: white;
}

.insta-card h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--text-color);
}

.insta-card p {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.insta-label {
    display: inline-block;
    background: rgba(41, 98, 255, 0.2);
    color: var(--accent-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
}

/* Contact Info Cards */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-card {
    background: var(--bg-color);
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid #222;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.contact-card i {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: white;
}

.contact-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-card a {
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: 500;
    display: inline-block;
}

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

.contact-card p {
    color: var(--text-color);
    font-size: 1rem;
}

/* --- FOOTER --- */
footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #222;
    color: var(--text-muted);
}

.social-icons {
    margin: 20px 0;
}

.social-icons a {
    font-size: 1.5rem;
    margin: 0 10px;
}

.social-icons a:hover {
    color: var(--accent-color);
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .about-grid,
    .instagram-grid,
    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .burger-menu {
        display: block;
    }

    .stats-container {
        flex-direction: column;
        gap: 30px;
    }

    /* Carte responsive */
    #map {
        height: 400px;
    }

    /* Lightbox responsive */
    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .gallery-item {
        height: 250px;
    }
}