/* ================================
   GOOGLE FONTS
================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Poppins:wght@300;400;500;600&display=swap');

/* ================================
   RESET & BASE
================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #faf7f5;
    color: #2f2f2f;
    line-height: 1.7;
}

/* ================================
   HEADER (LOGO + BRAND)
================================ */
header {
    background: linear-gradient(135deg, #7a1230, #b21f5c);
    text-align: center;
    padding: 35px 20px 30px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.3);
}

header img {
    width: 95px;
    margin-bottom: 12px;
}

header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #ffffff;
    letter-spacing: 1.4px;
}

header p {
    color: #ffe4ee;
    font-size: 14px;
    margin-top: 6px;
}

/* ================================
   NAVIGATION BAR
================================ */
nav {
    background: #4f0d24;
    display: flex;
    justify-content: center;
    gap: 32px;
    padding: 12px 10px;
    position: sticky;
    top: 0;
    z-index: 99;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

nav a:hover {
    background: #ffffff;
    color: #4f0d24;
    font-weight: 600;
}

/* ================================
   SECTIONS (LAYOUT)
================================ */
section {
    padding: 65px 20px;
}

section:nth-child(even) {
    background: #ffffff;
}

section:nth-child(odd) {
    background: #fff3f7;
}

/* ================================
   PREMIUM SECTION HEADINGS
================================ */
h2 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    color: #7a1230;
    text-align: center;
    margin-bottom: 32px;
    letter-spacing: 1.2px;
    position: relative;
}

h2::after {
    content: "";
    display: block;
    width: 90px;
    height: 3px;
    background: linear-gradient(
        to right,
        #7a1230,
        #d4af37,
        #7a1230
    );
    margin: 14px auto 0;
    border-radius: 6px;
}

/* SECTION TEXT */
section > p {
    max-width: 780px;
    margin: -10px auto 0;
    text-align: center;
    font-size: 15px;
    color: #555;
}

/* ================================
   PRODUCT CARDS
================================ */
.cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 30px;
}

.card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.14);
    border-top: 5px solid #b21f5c;
    transition: all 0.35s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 36px rgba(0,0,0,0.2);
}

.card h3 {
    font-size: 18px;
    color: #7a1230;
    margin-bottom: 10px;
}

/* ================================
   GALLERY
================================ */
.gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 30px;
}

.gallery img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.22);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery img:hover {
    transform: scale(1.06);
    box-shadow: 0 14px 30px rgba(0,0,0,0.3);
}

/* ================================
   CUSTOMER REVIEWS
================================ */
.review-box {
    background: linear-gradient(135deg, #ffffff, #ffe6ef);
    padding: 28px 26px;
    border-radius: 20px;
    max-width: 720px;
    margin: 35px auto 0;
    text-align: center;
    box-shadow: 0 14px 34px rgba(0,0,0,0.18);
}

.review-box p {
    font-size: 16px;
    font-style: italic;
    color: #444;
}

.review-box span {
    display: block;
    margin-top: 14px;
    font-weight: 600;
    color: #7a1230;
}

/* ================================
   MAP
================================ */
iframe {
    width: 100%;
    height: 360px;
    border-radius: 18px;
    margin-top: 20px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.2);
}

/* ================================
   WHATSAPP FLOAT BUTTON
================================ */
.whatsapp {
    position: fixed;
    bottom: 22px;
    right: 22px;
    background: #25d366;
    color: #ffffff;
    padding: 15px 20px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(0,0,0,0.35);
    transition: transform 0.3s ease;
    z-index: 50;
}

.whatsapp:hover {
    transform: scale(1.08);
}

/* ================================
   FOOTER
================================ */
footer {
    background: #2b0b17;
    color: #ffd6e4;
    text-align: center;
    padding: 18px;
    font-size: 13px;
}

/* ================================
   RESPONSIVE (TABLET & DESKTOP)
================================ */
@media (min-width: 768px) {
    header img {
        width: 120px;
    }

    header h1 {
        font-size: 38px;
    }

    section {
        max-width: 1180px;
        margin: auto;
    }

    .cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .cards {
        grid-template-columns: repeat(4, 1fr);
    }

    .gallery {
        grid-template-columns: repeat(4, 1fr);
    }
}
