* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0f0f0f;
    font-family: Georgia, serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.landing-container {
    text-align: center;
}

.image-link img {
    max-width: 1000px;
    width: 90%;
    transition: transform 0.4s ease;
    cursor: pointer;
}

.image-link img:hover {
    transform: scale(1.02);
}

.footer {
    margin-top: 40px;
    color: #777;
    font-size: 13px;
    letter-spacing: 1px;
}

.footer a {
    color: #999;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.footer a:hover {
    color: white;
}
/* TITRE COLLECTION */

.collection h1 {
    font-size: 48px;
    margin-bottom: 80px;
    letter-spacing: 1px;
}

/* CARTES */

.card {
    background: white;
    padding: 30px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.card p {
    font-size: 15px;
    opacity: 0.75;
}
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}