@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap');

body {
    margin: 0;
    padding: 0;
    background-color: rgb(15, 0, 69);
    font-family: "Poppins";
    overflow-x: hidden;
}


.header {
    background-color: white;
    padding: clamp(10px, 2vw, 20px);
}

.header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(10px, 2vw, 30px);
    flex-wrap: wrap;
}

.nav-links {
    display: flex;
    gap: clamp(10px, 2vw, 25px);
    flex-wrap: wrap;
    justify-content: center;
}

.header nav a {
    text-decoration: none;
    color: black;
    font-size: clamp(0.8rem, 1.5vw, 1.2rem);
    white-space: nowrap;
}

.header nav img {
    width: clamp(50px, 6vw, 72px);
    height: auto;
    display: block;
}

.header a:hover {
    color: rgb(180, 180, 180);
}



video {
    width: 100%;
    height: auto;
    display: block;
}



.images-top {
    display: flex;
    justify-content: center;
    gap: clamp(15px, 3vw, 50px);

    margin-top: clamp(30px, 6vw, 80px);

    flex-wrap: wrap;

    padding: 0 3%;
}

.image-hover,
.image-hover2,
.image-hover3 {
    width: min(100%, 400px);
    display: grid;
}

.image-hover img,
.image-hover2 img,
.image-hover3 img {
    grid-area: 1 / 1;

    width: 100%;

    border-radius: 20px;

    transition: opacity 0.5s ease;
}

.image-hover .img2,
.image-hover2 .img4,
.image-hover3 .img6 {
    opacity: 0;
}

.image-hover:hover .img1,
.image-hover2:hover .img3,
.image-hover3:hover .img5 {
    opacity: 0;
}

.image-hover:hover .img2,
.image-hover2:hover .img4,
.image-hover3:hover .img6 {
    opacity: 1;
}

.magasin {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: clamp(20px, 4vw, 50px);

    color: white;

    padding: 3%;
}

.magasin img {
    width: min(100%, 600px);

    flex: 1 1 300px;

    border-radius: 20px;
}

.magasin h2 {
    flex: 1 1 300px;

    font-size: clamp(1rem, 2vw, 2rem);

    line-height: 1.5;
}


.just-do-it {
    display: flex;
    flex-direction: row-reverse;

    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: clamp(20px, 4vw, 50px);

    color: white;

    padding: 3%;
}

.just-do-it img {
    width: min(100%, 600px);

    flex: 1 1 300px;

    border-radius: 20px;
}

.just-do-it h2 {
    flex: 1 1 300px;

    font-size: clamp(1rem, 2vw, 2rem);

    line-height: 1.5;
}


.footer {
    background-color: white;
    color: black;

    padding: clamp(20px, 4vw, 40px)
             clamp(10px, 3vw, 20px);

    text-align: center;

    margin-top: clamp(30px, 6vw, 80px);
}

.footer-logo img {
    width: clamp(60px, 8vw, 90px);

    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;

    gap: clamp(10px, 3vw, 30px);

    flex-wrap: wrap;

    margin-bottom: 20px;
}

.footer-links a {
    color: black;
    text-decoration: none;

    font-size: clamp(0.9rem, 2vw, 1.6rem);

    transition: 0.3s;
}

.footer-links a:hover {
    color: rgb(180, 180, 180);
}

.footer p {
    font-size: clamp(0.8rem, 1.5vw, 1.2rem);

    opacity: 0.8;

    color: black;
}