/*AUTHOR: MATISSE L-LEBLANC */
        :root {
            --noir: #000000;
            --blanc: #ffffff;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--noir);
            background-color: var(--blanc);
            line-height: 1.6;
        }
        
        
        
        /* HEADER */
        header {
            background-color: var(--noir);
            color: var(--blanc);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1.5rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        
        
        .logo img {
           max-height: 70px;
           width: 50px;
           transition: opacity 0.3s;
}

        .logo img:hover {
          opacity: 0.85;
}
        nav ul {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            flex-wrap: wrap;
        }
        
        nav a {
            color: var(--blanc);
            text-decoration: none;
            font-weight: 500;
            transition: opacity 0.3s;
        }
        
        nav a:hover {
            opacity: 0.7;
        }
        
        /* HERO */
        #hero {
            min-height: 100vh;
            background-color: var(--blanc);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 4rem 2rem;
            flex-direction: column;
        }
        
        .hero-content {
            max-width: 800px;
        }
        
        .hero-content h1 {
            font-size: 5rem;
            margin-bottom: 1rem;
            color: var(--noir);
        }
        
        .hero-content p {
            font-size: 1.5rem;
            margin-bottom: 3rem;
            color: var(--noir);
        }
        
        .btn {
            display: inline-block;
            background-color: var(--noir);
            color: var(--blanc);
            padding: 1rem 3rem;
            border-radius: 0;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .btn:hover {
            background-color: #222;
            transform: translateY(-3px);
        }
        
        /* SECTIONS */
        section {
            padding: 6rem 2rem;
        }
        
        .section-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        /* COLLECTION */
        #collection {
            background-color: var(--noir);
            color: var(--blanc);
        }
        
        .products-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: center;
        }
        
        .product-card {
            background-color: var(--noir);
            color: var(--blanc);
            width: 280px;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            transition: transform 0.3s;
            border: 3px solid #ffffff;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }
        
        .product-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 15px 30px rgba(224, 224, 224, 0.25);
        }
        
        .product-card img {
            width: 100%;
            height: 320px;
            object-fit: cover;
        }
        
        .product-info {
            padding: 1.5rem;
            text-align: center;
        }
        strong {
            font-size: 40px;
        }
        
        
        #about {
            background-color: var(--blanc);
            color: var(--noir);
        }
        
        /* MEDIA (section avec JS) */
        #media {
            background-color: var(--noir);
            color: var(--blanc);
        }
        
        .carousel {
            max-width: 900px;
            margin: 2rem auto;
            position: relative;
            overflow: hidden;
            
        }
        
        .slides {
            display: flex;
            transition: transform 1.5s ease-in-out;
        }
        
        .slides img {
            min-width: 100%;
            height: 520px;
            object-fit: cover;
        }
        
        .carousel-btn {
            position: absolute;
            top: 50%;
            color: var(--noir);
            background-color: #000000;
            transform: translateY(-50%);
            background-color: none;
            color: var(--blanc);
            border: none;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.0rem;
            cursor: pointer;
            z-index: 10;
            border-radius: 50%;
        }
        
        .carousel-btn.left { left: 20px; }
        .carousel-btn.right { right: 20px; }
        
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 1rem;
        }
        
        .dot {
            width: 12px;
            height: 12px;
            background-color: #555;
            border-radius: 50%;
            cursor: pointer;
        }
        
        .dot.active {
            background-color: var(--blanc);
        }
        
        /* FOOTER */
        footer {
            background-color: var(--noir);
            color: var(--blanc);
            padding: 3rem 2rem 1.5rem;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 3rem;
        }
        
        .footer-col {
            flex: 1;
            min-width: 220px;
        }
        
        .social-icons a {
            color: var(--blanc);
            font-size: 1.6rem;
            margin-right: 1.2rem;
            transition: color 0.3s;
        }
        
        .social-icons a:hover {
            color: #ccc;
        }
        
        /* RESPONSIVE (Flexbox adaptatif) */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                gap: 1rem;
            }
            
            nav ul {
                gap: 1.5rem;
            }
            
            #hero h1 {
                font-size: 3.5rem;
            }
            
            .products-grid {
                flex-direction: column;
                align-items: center;
            }
        }
