/* RESET + Base */
body {
    font-family: 'Playfair Display', serif;
    margin: 0;
    padding: 0;
    background-color: #fdf8f6; /* nude calme */
    color: #5c4a4a;
}

/* HEADER */
header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    background-color: #fff;
}

header img {
    width: 180px;
    height: auto;
}

/* NAVIGATION */
nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background: #ffffff;
    padding: 10px 0;
    gap: 20px;
    border-bottom: 1px solid #eee;
}

nav a {
    text-decoration: none;
    color: #7e5b5b;
    padding: 12px 18px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.3s ease;
}

nav a:hover,
nav .active {
    color: #d4a5a5;
    border-bottom: 2px solid #d4a5a5;
}

/* HERO SECTION */
.hero {
    position: relative;
    width: 100%;
    padding: 60px 20px;
    background-color: #f5e9e2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    gap: 20px;
}


.hero .content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #7e5b5b;
}

.feminine-img {
    width: 300px;
    max-width: 90%;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(212, 165, 165, 0.2);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.feminine-img:hover {
    transform: scale(1.03);
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #b98086;
}

/* Voir Plus Button */
.voir-plus-btn {
    background-color: #d4a5a5;
    color: white;
    padding: 12px 28px;
    font-size: 16px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(212, 165, 165, 0.4);
}

.voir-plus-btn:hover {
    background-color: #b98086;
    transform: scale(1.05);
}

/* ICON BAR */
.icon-bar {
    position: fixed;
    right: 20px;
    top: 24%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: white;
    padding: 10px 15px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.icon {
    cursor: pointer;
    position: relative;
    transition: transform 0.3s ease-in-out;
}

.icon:hover {
    transform: scale(1.2);
}

.icon::after {
    content: attr(data-tooltip);
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-160%);
    color: #d4a5a5;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out;
}

.icon:hover::after {
    opacity: 1;
    visibility: visible;
}

.custom-icon {
    width: 28px;
    height: 28px;
    object-fit: cover;
    border-radius: 50%;
}

/* FOOTER */
footer {
    background: #ffffff;
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid #eee;
}

footer .grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: left;
}

footer h3 {
    font-size: 18px;
    color: #b98086;
    margin-bottom: 10px;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 6px;
    font-size: 14px;
    color: #5c4a4a;
}

.copyright {
    margin-top: 20px;
    font-size: 12px;
    color: #aaa;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 26px;
    }

    .voir-plus-btn {
        padding: 10px 22px;
        font-size: 14px;
    }

    footer .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .feminine-img {
        width: 220px;
    }

    .icon-bar {
        right: 10px;
        padding: 8px;
    }
}
.collection-image {
  width: 320px;
  max-width: 90%;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(212, 165, 165, 0.15);
  margin-bottom: 25px;
  transition: transform 0.3s ease-in-out;
  object-fit: cover;
}

