:root {
    --cream: #f5ede0;
    --cream-light: #faf4e8;
    --cream-dark: #ebe0cc;
    --gold: #b8945a;
    --gold-dark: #8b6f47;
    --gold-light: #d4b88a;
    --text-dark: #3a2e1f;
    --text-medium: #5c4a30;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--cream);
    color: var(--text-dark);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Section background — applied to every main section */
section {
    background-image: url('bg.png');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}

h1,
h2,
h3,
h4,
h5,
.serif {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
}

/* ============ NAVBAR ============ */
.navbar-custom {
    background-color: var(--cream-light);
    border-bottom: 1px solid var(--gold-light);
    padding: 15px 0;
}

.navbar-custom .navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-dark) !important;
    letter-spacing: 1px;
}

.navbar-custom .nav-link {
    color: var(--text-medium) !important;
    font-weight: 500;
    margin: 0 8px;
    font-size: 0.95rem;
}

.navbar-custom .nav-link:hover {
    color: var(--gold) !important;
}

/* ============ BUTTONS ============ */
.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #fff !important;
    padding: 12px 35px !important;
    border: none;
    border-radius: 50px !important;
    font-weight: 500 !important;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(139, 111, 71, 0.25);
    transition: all 0.3s ease !important;
    text-decoration: none;
    display: inline-block !important;
    font-size: 1.6rem !important;
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-dark) 0%, #6b5235 100%);
    color: #fff;
    transform: translateY(-2px);
    text-decoration: none;
}

/* ============ ORNAMENT ============ */
.ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0 30px;
    color: var(--gold);
}

.ornament::before,
.ornament::after {
    content: '';
    display: inline-block;
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 0 15px;
}

.ornament i {
    font-size: 0.8rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-medium);
    font-style: italic;
    margin-bottom: 30px;
}

/* ============ HERO SECTION ============ */
.hero-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.hero-text {
    font-size: 1.7rem;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.hero-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.hero-list li {
    display: flex;
    align-items: center;
    font-size: 1.7rem;
    color: var(--text-medium);
    margin-bottom: 12px;
}

.hero-list li i {
    color: var(--gold-dark);
    margin-right: 12px;
    font-size: 1.7rem;
    width: 25px;
}

/* Hero photo */
.hero-photo {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(139, 111, 71, 0.3);
    display: block;
}

/* ============ WHY SECTION ============ */
.why-section {
    padding: 80px 0;
    position: relative;
}

.why-card {
    background-color: #ece2e0;
    border: 1px solid var(--gold-light);
    border-radius: 8px;
    padding: 35px 20px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 111, 71, 0.15);
}

.why-icon {
    width: 70px;
    height: 70px;
    border: 1.5px solid var(--gold);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--gold-dark);
    font-size: 1.8rem;
}

.why-card h4 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.why-card p {
    font-size: 1.5rem;
    color: var(--text-medium);
    margin-bottom: 0;
}

.why-wrapper {
    background-color: #eee1d8;
    border: 1px solid var(--gold-light);
    border-radius: 10px;
    padding: 50px 30px;
    backdrop-filter: blur(2px);
}

/* ============ PRODUCTS SECTION ============ */
.products-section {
    padding: 80px 0;
}

.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(139, 111, 71, 0.12);
    transition: all 0.3s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(139, 111, 71, 0.2);
}

.product-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.product-body {
    padding: 25px;
    text-align: center;
    background-image: linear-gradient(to bottom, #fafafa, #dec5b7);
}

.product-body h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-body p {
    font-size: 1.5rem;
    color: var(--text-medium);
    margin-bottom: 18px;
    min-height: 50px;
}

/* ============ STORY SECTION ============ */
.story-section {
    padding: 80px 0;
    position: relative;
}

.story-img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    display: block;
}

.story-content h2 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.story-content p {
    font-size: 1.7rem;
    color: var(--text-medium);
    margin-bottom: 18px;
    line-height: 1.7;
}

.story-content .signature {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--gold-dark);
    margin: 25px 0;
}

/* ============ MOMENTS SECTION ============ */
.moments-section {
    padding: 80px 0;
    position: relative;
}

.moment-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(139, 111, 71, 0.12);
    transition: all 0.3s ease;
    cursor: pointer;
    background: var(--cream-light);
}

.moment-card:hover {
    box-shadow: 0 12px 30px rgba(139, 111, 71, 0.22);
    transform: translateY(-4px);
}

.moment-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* ============ TESTIMONIAL SECTION ============ */
.testimonial-section {
    padding: 80px 0;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 25px;
    position: relative;
    box-shadow: #f5e4dc 0px 15px 10px;
}

.testimonial-stars {
    color: #d4a843;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-medium);
    margin-bottom: 12px;
    line-height: 1.7;
    font-size: 1.7rem;
}

.testimonial-author {
    text-align: right;
    font-weight: 600;
    color: var(--text-dark);
}

.cta-text {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-medium);
    margin: 30px 0 20px;
}

.btn-whatsapp {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #fff !important;
    padding: 15px 45px;
    border: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1.6rem;
    box-shadow: 0 6px 18px rgba(139, 111, 71, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(139, 111, 71, 0.4);
    text-decoration: none;
}

/* ============ FLOATING WHATSAPP ============ */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 999;
    text-decoration: none;
}

.whatsapp-float:hover {
    color: #fff;
    background-color: #1ebe5d;
    text-decoration: none;
}

/* ============ FOOTER ============ */
.footer {
    background-color: #2e2418;
    color: var(--gold-light);
    padding: 50px 0 20px;
}

.footer h5 {
    color: var(--gold-light);
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
}

.footer p,
.footer a {
    color: #b8a587;
    font-size: 0.9rem;
    text-decoration: none;
}

.footer a:hover {
    color: var(--cream);
}

.footer-bottom {
    border-top: 1px solid #4a3a2a;
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .story-content h2 {
        font-size: 2.2rem;
    }

    .moment-card {
        flex-direction: column;
        text-align: center;
    }

    .moment-icon {
        width: 90px;
        height: 90px;
        font-size: 2rem;
    }

    .gift-illustration {
        height: 280px;
        margin-top: 40px;
    }
}