@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);
}



.image-hover {
    position: relative;
    width: min(90%, 1200px);
    margin: auto;
}

.image-hover img {
    margin-top: clamp(20px, 5vw, 80px);
    width: 100%;
    border-radius: 20px;
    display: block;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(255, 255, 255, 0.85);

    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    transition: 0.3s;

    border-radius: 20px;
    padding: clamp(10px, 2vw, 30px);
    box-sizing: border-box;
}

.image-hover:hover .overlay {
    opacity: 1;
}

.overlay p {
    text-align: center;
    font-size: clamp(0.8rem, 1.4vw, 1.3rem);
    line-height: 1.5;
}


.pampidou {
    display: flex;
    color: white;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    padding: 3%;
    gap: clamp(20px, 4vw, 50px);
    flex-wrap: wrap;
}

.pampidou img {
    width: min(100%, 600px);
    flex: 1 1 300px;
    border-radius: 20px;
}

.pampidou h2 {
    font-size: clamp(1rem, 2vw, 2rem);
    margin-bottom: 16px;
    flex: 1 1 300px;
}



.the-shot {
    display: flex;
    color: white;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 3%;
    gap: clamp(20px, 4vw, 50px);
    flex-wrap: wrap;
}

.the-shot img {
    width: min(100%, 500px);
    flex: 1 1 250px;
    border-radius: 20px;
}

.the-shot h2 {
    font-size: clamp(1rem, 2vw, 2rem);
    margin-bottom: 16px;
    flex: 1 1 300px;
}


.boutton {
    display: flex;
    justify-content: flex-end;
    padding-right: 3%;
    margin-bottom: 35px;
}

.boutton button {
    cursor: pointer;
    font-weight: 700;
    transition: all 0.4s;

    padding: clamp(8px, 1vw, 14px) clamp(16px, 2vw, 28px);

    border-radius: 100px;

    background: rgb(23, 5, 88);

    border: 1px solid transparent;

    font-size: clamp(0.9rem, 1.2vw, 1.1rem);

    color: white;
}

.boutton button:hover {
    background: rgb(89, 54, 209);
}



.footer {
    background-color: white;
    color: black;

    padding: clamp(20px, 4vw, 40px);

    text-align: center;

    margin-top: clamp(40px, 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(1rem, 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;
}