/* Container général pour tout le site */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Appliquer container aux sections */
.gallery, .about, .shop, .contact {
    padding: 80px 0;
}

/* Intérieur des sections */
.gallery-grid, .about-container, .shop-grid, .contact-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .gallery-grid, .about-container, .shop-grid, .contact-content {
        padding: 0 15px;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    background: radial-gradient(ellipse at center, #0a0a0a 0%, #000 100%);
}

/* Effets de Glow */
.glow-vert {
    color: #00ff00;
    text-shadow: 
        0 0 10px #00ff00,
        0 0 20px #00ff00,
        0 0 30px #00ff00,
        0 0 40px #00ff00;
    animation: glowVert 2s ease-in-out infinite alternate;
}

.glow-jaune {
    color: #ffff00;
    text-shadow: 
        0 0 10px #ffff00,
        0 0 20px #ffff00,
        0 0 30px #ffff00,
        0 0 40px #ffff00;
    animation: glowJaune 2s ease-in-out infinite alternate;
}

.glow-rouge {
    color: #ff0000;
    text-shadow: 
        0 0 10px #ff0000,
        0 0 20px #ff0000,
        0 0 30px #ff0000,
        0 0 40px #ff0000;
    animation: glowRouge 2s ease-in-out infinite alternate;
}

.glow-mix {
    background: linear-gradient(45deg, #00ff00, #ffff00, #ff0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 
        0 0 10px rgba(0, 255, 0, 0.5),
        0 0 20px rgba(255, 255, 0, 0.5),
        0 0 30px rgba(255, 0, 0, 0.5);
    animation: glowMix 3s ease-in-out infinite alternate;
}

.glow-text {
    text-shadow: 
        0 0 5px rgba(255, 255, 255, 0.8),
        0 0 10px rgba(255, 255, 255, 0.6),
        0 0 15px rgba(255, 255, 255, 0.4);
}

.glow-vert-bg {
    background: linear-gradient(45deg, #00ff00, #00cc00);
    box-shadow: 
        0 0 10px #00ff00,
        0 0 20px #00ff00,
        0 0 30px #00ff00;
}

.glow-jaune-bg {
    background: linear-gradient(45deg, #ffff00, #ffcc00);
    box-shadow: 
        0 0 10px #ffff00,
        0 0 20px #ffff00,
        0 0 30px #ffff00;
}

.glow-rouge-bg {
    background: linear-gradient(45deg, #ff0000, #cc0000);
    box-shadow: 
        0 0 10px #ff0000,
        0 0 20px #ff0000,
        0 0 30px #ff0000;
}

/* Animations de Glow */
@keyframes glowVert {
    from {
        text-shadow: 
            0 0 5px #00ff00,
            0 0 10px #00ff00,
            0 0 15px #00ff00;
    }
    to {
        text-shadow: 
            0 0 10px #00ff00,
            0 0 20px #00ff00,
            0 0 30px #00ff00,
            0 0 40px #00ff00;
    }
}

@keyframes glowJaune {
    from {
        text-shadow: 
            0 0 5px #ffff00,
            0 0 10px #ffff00,
            0 0 15px #ffff00;
    }
    to {
        text-shadow: 
            0 0 10px #ffff00,
            0 0 20px #ffff00,
            0 0 30px #ffff00,
            0 0 40px #ffff00;
    }
}

@keyframes glowRouge {
    from {
        text-shadow: 
            0 0 5px #ff0000,
            0 0 10px #ff0000,
            0 0 15px #ff0000;
    }
    to {
        text-shadow: 
            0 0 10px #ff0000,
            0 0 20px #ff0000,
            0 0 30px #ff0000,
            0 0 40px #ff0000;
    }
}

@keyframes glowMix {
    from {
        text-shadow: 
            0 0 5px rgba(0, 255, 0, 0.5),
            0 0 10px rgba(255, 255, 0, 0.5),
            0 0 15px rgba(255, 0, 0, 0.5);
    }
    to {
        text-shadow: 
            0 0 10px rgba(0, 255, 0, 0.8),
            0 0 20px rgba(255, 255, 0, 0.8),
            0 0 30px rgba(255, 0, 0, 0.8),
            0 0 40px rgba(255, 0, 0, 0.6);
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-glow {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, #00ff00, #ffff00, #ff0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 
        0 0 10px rgba(0, 255, 0, 0.5),
        0 0 20px rgba(255, 255, 0, 0.5),
        0 0 30px rgba(255, 0, 0, 0.5);
    animation: glowMix 3s ease-in-out infinite alternate;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 3px;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 0;
}

.nav-link:hover {
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #00ff00, #ffff00, #ff0000);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 255, 0, 0.5);
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('photos/workstation8.png') center/cover no-repeat;
    filter: brightness(0.4) contrast(1.2);
    z-index: 0;
    animation: floatBackground 20s ease-in-out infinite;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(
            ellipse at center,
            rgba(0, 255, 0, 0.1) 0%,
            rgba(255, 255, 0, 0.05) 25%,
            rgba(255, 0, 0, 0.05) 50%,
            rgba(0, 0, 0, 0.9) 100%
        );
    z-index: 1;
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.title-line {
    display: block;
    animation: slideUp 1s ease-out;
}

.title-line:nth-child(2) {
    animation-delay: 0.3s;
}

.hero-subtitle {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    margin-bottom: 50px;
    letter-spacing: 4px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #ccc;
    letter-spacing: 2px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-line {
    width: 2px;
    height: 60px;
    animation: scrollBounce 2s infinite;
}

/* Gallery Section */
.gallery {
    padding: 80px 30px;
    background: rgba(10, 10, 10, 0.95);
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3àrem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 800;
    letter-spacing: 4px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Conteneur flexible pour garder le ratio */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    max-height: 280px;
}

.gallery-item:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(255, 255, 0, 0.3);
}

.gallery-item img {
    width: auto;
    height: auto;
    max-width: 90%;
    max-height: 90%;
    display: block;
    transition: transform 0.6s ease;
    border-radius: 6px;
    /* Garde le ratio naturel de l'image */
    object-fit: contain;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.95));
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 5px;
    letter-spacing: 1.2px;
}

.gallery-overlay p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    opacity: 0.9;
}

.gallery-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px;
    box-shadow: 
        inset 0 0 20px rgba(0, 255, 0, 0.1),
        inset 0 0 30px rgba(255, 255, 0, 0.1),
        inset 0 0 40px rgba(255, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.gallery-item:hover .gallery-glow {
    opacity: 1;
}

/* Responsive pour la galerie */
@media (max-width: 768px) {
    .gallery {
        padding: 60px 15px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .section-title {
        font-size: 3rem;
        margin-bottom: 40px;
    }
    
    .gallery-item {
        min-height: 180px;
        max-height: 220px;
    }
    
    .gallery-item img {
        max-width: 85%;
        max-height: 85%;
    }
    
    .gallery-overlay {
        padding: 12px;
    }
    
    .gallery-overlay h3 {
        font-size: 1.1rem;
    }
    
    .gallery-overlay p {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 12px;
    }
    
    .gallery-item {
        min-height: 150px;
        max-height: 180px;
    }
    
    .gallery-item img {
        max-width: 80%;
        max-height: 80%;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}
/* About Me Section */
.about {
    padding: 150px 50px;
    background: radial-gradient(ellipse at center, #1a1a1a 0%, #000 100%);
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
}

.about-content {
    text-align: center;
}

.about-text {
    max-width: 800px;
    margin: 0 auto 60px;
}

.about-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.skills {
    max-width: 600px;
    margin: 0 auto;
}

.skill {
    margin-bottom: 25px;
}

.skill-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.skill-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    border-radius: 4px;
    width: 0;
    animation: fillBar 2s ease-out forwards;
}

.skill:nth-child(1) .skill-progress {
    width: 95%;
    animation-delay: 0.5s;
}

.skill:nth-child(2) .skill-progress {
    width: 88%;
    animation-delay: 1s;
}

.skill:nth-child(3) .skill-progress {
    width: 92%;
    animation-delay: 1.5s;
}

/* Shop Section */
.shop {
    padding: 150px 50px;
    background: rgba(10, 10, 10, 0.95);
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.shop-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.shop-item:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.08);
}

.shop-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 22px;
    background: linear-gradient(45deg, #00ff00, #ffff00, #ff0000);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.shop-item:hover .shop-glow {
    opacity: 0.3;
}

.shop-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.shop-item h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.price {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.shop-btn {
    background: linear-gradient(45deg, #00ff00, #ffff00, #ff0000);
    border: none;
    padding: 15px 30px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    color: #000;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s ease;
    width: 100%;
    font-weight: 900;
    letter-spacing: 2px;
}

.shop-btn:hover {
    transform: scale(1.05);
    box-shadow: 
        0 0 20px rgba(0, 255, 0, 0.5),
        0 0 30px rgba(255, 255, 0, 0.5),
        0 0 40px rgba(255, 0, 0, 0.5);
}
/* Shop Section - Vidéos Instagram 4:5 RESPONSIVE */
.video-container.instagram-45 {
    width: 100%;
    aspect-ratio: 4/5; /* Ratio 4:5 */
    max-width: 320px; /* Largeur max pour éviter les vidéos trop grandes */
    margin: 0 auto 20px; /* Centrer horizontalement */
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    background: #000;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

/* Pour desktop - 3 colonnes */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Pour tablette */
@media (max-width: 1024px) {
    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .video-container.instagram-45 {
        max-width: 280px;
    }
}

/* Pour mobile */
@media (max-width: 768px) {
    .shop-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .video-container.instagram-45 {
        max-width: 280px;
        margin: 0 auto 20px;
    }
}

/* Pour très petits mobiles */
@media (max-width: 480px) {
    .video-container.instagram-45 {
        max-width: 250px;
        aspect-ratio: 4/5;
    }
    
    .shop-item {
        padding: 20px 15px;
    }
}

/* Taille très petite */
@media (max-width: 320px) {
    .video-container.instagram-45 {
        max-width: 220px;
    }
}

/* Vidéo elle-même */
.product-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Remplit le conteneur */
    display: block;
}

/* Overlay de glow sur la vidéo */
.video-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 13px;
    pointer-events: none;
    background: 
        radial-gradient(
            circle at center,
            transparent 30%,
            rgba(0, 255, 0, 0.1) 70%,
            rgba(255, 255, 0, 0.05) 90%
        );
    box-shadow: 
        inset 0 0 25px rgba(0, 255, 0, 0.4),
        inset 0 0 35px rgba(255, 255, 0, 0.3),
        inset 0 0 45px rgba(255, 0, 0, 0.2);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.video-container:hover .video-glow {
    opacity: 1;
    animation: pulseGlow 2s infinite alternate;
}

/* Animation du glow */
@keyframes pulseGlow {
    from {
        box-shadow: 
            inset 0 0 25px rgba(0, 255, 0, 0.4),
            inset 0 0 35px rgba(255, 255, 0, 0.3),
            inset 0 0 45px rgba(255, 0, 0, 0.2);
    }
    to {
        box-shadow: 
            inset 0 0 35px rgba(0, 255, 0, 0.6),
            inset 0 0 45px rgba(255, 255, 0, 0.4),
            inset 0 0 55px rgba(255, 0, 0, 0.3);
    }
}

/* Responsive pour les vidéos 4:5 */
@media (max-width: 768px) {
    .video-container.instagram-45 {
        aspect-ratio: 4/5;
        max-height: 350px;
    }
}

@media (max-width: 480px) {
    .video-container.instagram-45 {
        max-height: 300px;
    }
}

/* Pour les très petits écrans */
@media (max-width: 320px) {
    .video-container.instagram-45 {
        max-height: 250px;
    }
}
/* Contact Section */
.contact {
    padding: 150px 50px;
    background: radial-gradient(ellipse at center, #1a1a1a 0%, #000 100%);
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
}

.contact-item i {
    font-size: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.social-link {
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: scale(1.2) translateY(-5px);
}

/* Footer */
.footer {
    text-align: center;
    padding: 50px;
    background: rgba(0, 0, 0, 0.9);
    font-family: 'Montserrat', sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animations */
@keyframes floatBackground {
    0%, 100% {
        transform: scale(1) translateY(0);
    }
    50% {
        transform: scale(1.05) translateY(-20px);
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(15px);
    }
}

@keyframes fillBar {
    from {
        width: 0;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }

    .nav-menu {
        gap: 20px;
    }

    .brand-glow {
        font-size: 1.8rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 3rem;
    }

    .gallery, .about, .shop, .contact {
        padding: 80px 20px;
    }

    .hero-stats {
        gap: 30px;
    }

    .stat-number {
        font-size: 2rem;
    }
}
/* Navigation - Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
    }

    .brand-glow {
        font-size: 2rem;
    }

    .nav-menu {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-link {
        font-size: 1.1rem;
    }
}

/* Hero Section - Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-stats {
        gap: 30px;
        flex-wrap: wrap;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 1.5rem;
    }
}

/* Section Titles - Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
}

/* Gallery Section - Responsive */
@media (max-width: 768px) {
    .gallery {
        padding: 60px 20px;
    }

    .gallery-overlay h3 {
        font-size: 1.1rem;
    }

    .gallery-overlay p {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .gallery {
        padding: 40px 15px;
    }

    .gallery-overlay h3 {
        font-size: 1rem;
    }

    .gallery-overlay p {
        font-size: 0.7rem;
    }
}

/* About Me Section - Responsive */
@media (max-width: 768px) {
    .about {
        padding: 80px 20px;
    }

    .about-description {
        font-size: 1.1rem;
        text-align: left;
    }

    .skill-name {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .about {
        position:center;
        padding: 60px 15px;
    }

    .about-description {
        font-size: 1rem;
    }

    .skill-name {
        font-size: 1rem;
    }
}

/* Shop Section - Responsive */
@media (max-width: 768px) {
    .shop {
        padding: 80px 20px;
    }

    .shop-item h3 {
        font-size: 1.5rem;
    }

    .price {
        font-size: 1.5rem;
    }

    .shop-btn {
        font-size: 1rem;
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .shop {
        padding: 60px 15px;
    }

    .shop-grid {
        grid-template-columns: 1fr;
    }

    .shop-item h3 {
        font-size: 1.3rem;
    }

    .price {
        font-size: 1.3rem;
    }
}

/* Contact Section - Responsive */
@media (max-width: 768px) {
    .contact {
        padding: 80px 20px;
    }

    .contact-item {
        font-size: 1.1rem;
        justify-content: flex-start;
    }

    .contact-item i {
        font-size: 1.5rem;
    }

    .social-link {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 60px 15px;
    }

    .contact-item {
        font-size: 1rem;
    }

    .social-links {
        gap: 20px;
    }

    .social-link {
        font-size: 1.8rem;
    }
}

/* Footer - Responsive */
@media (max-width: 480px) {
    .footer {
        padding: 30px 15px;
        font-size: 0.9rem;
    }
}
/* Meta responsive - Ajustements généraux */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem !important;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.2rem !important;
    }
    
    /* Ajustement des boutons */
    .shop-btn {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    /* Ajustement des sections */
    section {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Petits téléphones */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem !important;
    }
    
    .brand-glow {
        font-size: 1.5rem !important;
    }
    
    .nav-menu {
        gap: 10px;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    /* Shop sur 1 colonne */
    .shop-grid {
        grid-template-columns: 1fr !important;
    }
}
/* ==================== */
/* TOGGLE THEME BUTTON */
/* ==================== */
.theme-toggle {
    margin-left: 30px;
    z-index: 1001;
}

.theme-btn {
    background: linear-gradient(45deg, #222, #333);
    border: none;
    width: 60px;
    height: 30px;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
    transition: all 0.3s ease;
}

.theme-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 255, 0, 0.4);
}

.theme-btn i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    transition: all 0.3s ease;
    color: #fff;
}

.theme-btn .fa-moon {
    left: 10px;
    opacity: 1;
}

.theme-btn .fa-sun {
    right: 10px;
    opacity: 0.5;
    color: #FFD700;
}

.theme-slider {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 26px;
    height: 26px;
    background: linear-gradient(45deg, #00ff00, #ffff00);
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

/* ==================== */
/* THEME CLAIR (LIGHT MODE) */
/* ==================== */
body.light-mode {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #333;
}

/* Light mode - Header & Navigation */
body.light-mode .navbar {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

body.light-mode .nav-link {
    color: #333;
}

body.light-mode .nav-link::after {
    background: linear-gradient(45deg, #00ff00, #ff0000);
}

body.light-mode .brand-glow {
    background: linear-gradient(45deg, #00b894, #fdcb6e, #e17055);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    animation: lightGlowMix 3s ease-in-out infinite alternate;
}

/* Light mode - Hero Section */
body.light-mode .hero {
    background: linear-gradient(135deg, #515c52 0%, #ffe602 100%);
}

body.light-mode .hero-background {
    display: none; /* On cache le background image */
}

body.light-mode .hero-overlay {
    background: 
        radial-gradient(
            ellipse at center,
            rgba(255, 255, 255, 0.3) 0%,
            rgba(255, 255, 255, 0.1) 25%,
            rgba(255, 255, 255, 0.05) 50%,
            transparent 100%
        );
}

/* Light mode - Glow effects */
body.light-mode .glow-vert {
    color: #00b894;
    text-shadow: 
        0 0 10px rgba(0, 184, 148, 0.5),
        0 0 20px rgba(0, 184, 148, 0.3);
}

body.light-mode .glow-jaune {
    color: #fdcb6e;
    text-shadow: 
        0 0 10px rgba(253, 203, 110, 0.5),
        0 0 20px rgba(253, 203, 110, 0.3);
}

body.light-mode .glow-rouge {
    color: #e17055;
    text-shadow: 
        0 0 10px rgba(225, 112, 85, 0.5),
        0 0 20px rgba(225, 112, 85, 0.3);
}

body.light-mode .glow-mix {
    background: linear-gradient(45deg, #00b894, #fdcb6e, #e17055);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

body.light-mode .glow-text {
    color: #333;
    text-shadow: none;
}

/* Light mode - Sections */
body.light-mode .gallery,
body.light-mode .shop {
    background: rgba(255, 255, 255, 0.9);
}

body.light-mode .about,
body.light-mode .contact {
    background: linear-gradient(135deg, #fdfcfb 0%, #e2d1c3 100%);
}

/* Light mode - Gallery items */
body.light-mode .gallery-item {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

body.light-mode .gallery-item:hover {
    border-color: rgba(0, 184, 148, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Light mode - Shop items */
body.light-mode .shop-item {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

body.light-mode .shop-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

body.light-mode .shop-glow {
    background: linear-gradient(45deg, #00b894, #fdcb6e, #e17055);
}

/* Light mode - Buttons */
body.light-mode .shop-btn {
    background: linear-gradient(45deg, #00b894, #fdcb6e);
    color: #dfd6d6;
    font-weight: bold;
}

body.light-mode .shop-btn:hover {
    box-shadow: 
        0 0 15px rgba(0, 184, 148, 0.5),
        0 0 25px rgba(253, 203, 110, 0.3);
}

/* Light mode - Footer */
body.light-mode .footer {
    background: rgba(255, 247, 247, 0.651);
    color: #333;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Light mode - Progress bars */
body.light-mode .skill-bar {
    background: rgba(0, 0, 0, 0.1);
}

/* Light mode - Theme button active state */
body.light-mode .theme-btn {
    background: linear-gradient(45deg, #fdcb6e, #e17055);
}

body.light-mode .theme-btn .fa-moon {
    opacity: 0.5;
    color: #2d3436;
}

body.light-mode .theme-btn .fa-sun {
    opacity: 1;
    color: #252323;
}

body.light-mode .theme-slider {
    left: calc(100% - 28px);
    background: linear-gradient(45deg, #fff, #fdcb6e);
}

/* Animation pour light mode */
@keyframes lightGlowMix {
    from {
        filter: brightness(1);
    }
    to {
        filter: brightness(1.2);
    }
}

/* ==================== */
/* RESPONSIVE POUR TOGGLE */
/* ==================== */
@media (max-width: 768px) {
    .theme-toggle {
        margin-left: 15px;
        margin-top: 10px;
        align-self: center;
    }
    
    .theme-btn {
        width: 55px;
        height: 28px;
    }
    
    .theme-slider {
        width: 24px;
        height: 24px;
    }
    
    .theme-btn .fa-moon {
        left: 8px;
        font-size: 12px;
    }
    
    .theme-btn .fa-sun {
        right: 8px;
        font-size: 12px;
    }
}

/* Petit ajustement pour mobile */
@media (max-width: 480px) {
    .theme-toggle {
        position: absolute;
        top: 15px;
        right: 15px;
        margin: 0;
    }
}
