/* Fontes */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: #eef1ef;
    color: #222;
}

/* Header */
header {
    width: 100%;
    padding: 20px 50px;
    background: #9b620d;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(209, 196, 196, 0.08);
    position: fixed;
    top: 0;
    z-index: 100;
}

header .logo {
    font-family: "Playfair Display";
    font-size: 28px;
    font-weight: 600;
}

/* MENU ESTILIZE AK ANKADREMAN */
header nav a {
    margin-left: 20px;
    text-decoration: none;
    font-size: 16px;
    padding: 8px 18px;
    color: #0a0c0a;
    border: 4px solid #fcfbfb;
    border-radius: 8px;
    transition: 0.3s ease-in-out;
    font-weight: 600;
}

header nav a:hover {
    background: #f5cf98;
    color: #fff;
    transform: scale(1.07);
    box-shadow: 0 4px 15px rgba(200, 163, 65, 0.4);
}

header nav .active {
    background: #dacead;
    color: #8b1919;
    box-shadow: 0 4px 15px rgba(200, 163, 65, 0.4);
}

/* Hero */
.hero {
    height: 100vh;
    background: url("https://img.freepik.com/premium-photo/unlabeled-luxury-perfume-bottle-mock-up-cozy-setting-dark-background_552988-6933.jpg") center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    color: #fafaf9;
}

.hero::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    top: 0;
    left: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: "Playfair Display";
    font-size: 60px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 25px;
}

/* Bouton prensipal */
.btn {
    padding: 12px 32px;
    background: transparent;
    color: #c8a341;
    border: 4px solid #f7f4f4;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: 0.3s ease-in-out;
    display: inline-block;
}

.btn:hover {
    background: #c8a341;
    color: #fff;
    transform: scale(1.07);
    box-shadow: 0 5px 20px rgba(200, 163, 65, 0.4);
}

/* Catálogo */
.catalogo {
    padding: 80px 50px;
    background: #855704;
    margin-top: -80px;
}

.catalogo h2 {
    font-family: "Playfair Display";
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #f3f2f1;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.card {
    background: #e9ce99;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(190, 129, 22, 0.1);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 10px;
}

.card h3 {
    font-size: 22px;
    margin-top: 15px;
}

.card p {
    font-size: 14px;
    margin: 10px 0;
}

.preco {
    display: block;
    font-size: 20px;
    margin: 10px 0;
    font-weight: 600;
    color: #b08a1f;
}

.card button {
    padding: 10px 20px;
    background: #c8a341;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.card button:hover {
    background: #1b1301;
}

/* Footer */
footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 25px 10px;
    margin-top: 50px;
}

footer .social a {
    color: #c8a341;
    margin: 0 15px;
    text-decoration: none;
    font-weight: 500;
}

footer .social a:hover {
    text-decoration: underline;
}


/* 🔧 MOBILE FIX — Pou anpeche bouton yo pile youn sou lòt */
@media (max-width: 768px) {

    header {
        padding: 15px 20px;
        flex-direction: column;
        gap: 10px;
    }

    header nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 10px;
        margin-top: 10px;
    }

    header nav a {
        margin: 0;
        width: 80%;
        text-align: center;
        padding: 10px 0;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero p {
        font-size: 16px;
    }

    .catalogo {
        padding: 60px 20px;
    }
}


/* 🔘 Bouton 3 TI PWEN (MENU MOBILE) */
.menu-btn {
    display: none;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    color: #fff;
}

/* Desktop menu */
.menu-desktop a {
    margin-left: 20px;
}

/* Menu mobil */
.menu-mobile {
    display: none;
    flex-direction: column;
    background: #9b620d;
    width: 100%;
    padding: 15px 0;
    position: absolute;
    top: 80px;
    left: 0;
    z-index: 101;
}

.menu-mobile a {
    padding: 12px 0;
    text-align: center;
    border-bottom: 1px solid #ffffff55;
    color: #fff;
}

/* RESPONSIVE: montre bouton 3 ti pwen sou mobil */
@media (max-width: 768px) {

    .menu-desktop {
        display: none;
    }

    .menu-btn {
        display: block;
    }
}
