body {
    background: #0b0f1a;
    color: white;
    font-family: 'Poppins', sans-serif;
}

/* NAVBAR */
.navbar {
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
    opacity: 0.8;
}

.navbar a:hover {
    opacity: 1;
}

/* HERO */
.hero-collection {
    height: 100vh;
    background: radial-gradient(circle, #1e293b, #0b0f1a);
}

/* CONTENEUR */
.hero-content {
    position: relative;
}

/* GROS TEXTE */
.big-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    font-size: 150px;
    font-weight: 900;
    opacity: 0.06;
    letter-spacing: 15px;

    z-index: 1;
    pointer-events: none;
}

/* IMAGE PRINCIPALE */
.hero-shoe.main {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 600px;

    transform: rotate(-10deg);
    animation: float 4s ease-in-out infinite;
}

/* IMAGES FLOTTANTES */
.floating-img {
    position: absolute;
    width: 300px;
    border-radius: 15px;
    z-index: 3;
}

/* POSITION IMAGES */
.img1 {
    top: 20%;
    left: 10%;
    animation: float1 5s ease-in-out infinite;
}

.img2 {
    bottom: 15%;
    right: 10%;
    animation: float2 6s ease-in-out infinite;
}

/* SOUS-TITRE */
.subtitle {
    margin-top: 20px;
    font-size: 18px;
    opacity: 0.7;
    position: relative;
    z-index: 2;
}

/* TITRES SECTIONS */
.section-title {
    font-size: 40px;
    font-weight: bold;
}

/* CARD PRODUITS */
.product-card {
    background: #111827;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
}

.product-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.05);
}

/* PETITES IMAGES */
.small img {
    height: 100px;
}

/* GRAND PRODUIT */
.big-product img {
    width: 100%;
    border-radius: 15px;
}

/* ANIMATIONS */
@keyframes float {
    0% { transform: translateY(0) rotate(-10deg); }
    50% { transform: translateY(-20px) rotate(-10deg); }
    100% { transform: translateY(0) rotate(-10deg); }
}

@keyframes float1 {
    0% { transform: translateY(0); }
    50% { transform: translateY(-30px) translateX(10px); }
    100% { transform: translateY(0); }
}

@keyframes float2 {
    0% { transform: translateY(0); }
    50% { transform: translateY(-25px) translateX(-10px); }
    100% { transform: translateY(0); }
}


.footer {
    background: #020617;
    padding: 60px 80px 20px;
    margin-top: 100px;
}

/* CONTAINER */
.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* BOX */
.footer-box h3,
.footer-box h4 {
    margin-bottom: 15px;
}

/* LIENS */
.footer-box a {
    display: block;
    color: white;
    opacity: 0.7;
    text-decoration: none;
    margin-bottom: 8px;
    transition: 0.3s;
}

.footer-box a:hover {
    opacity: 1;
    transform: translateX(5px);
}

/* TEXTE */
.footer-box p {
    opacity: 0.7;
    margin: 5px 0;
}

/* BAS DU FOOTER */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    opacity: 0.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer {
        padding: 40px;
    }
}.footer {
    background: #020617;
    padding: 60px 80px 20px;
    margin-top: 100px;
}

/* CONTAINER */
.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* BOX */
.footer-box h3,
.footer-box h4 {
    margin-bottom: 15px;
}

/* LIENS */
.footer-box a {
    display: block;
    color: white;
    opacity: 0.7;
    text-decoration: none;
    margin-bottom: 8px;
    transition: 0.3s;
}

.footer-box a:hover {
    opacity: 1;
    transform: translateX(5px);
}

/* TEXTE */
.footer-box p {
    opacity: 0.7;
    margin: 5px 0;
}

/* BAS DU FOOTER */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    opacity: 0.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer {
        padding: 40px;
    }
}