/* =========================================
   RESET & BASE
========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', Arial, sans-serif;
    background-color: #fffaf6;
    color: #4a4a4a;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

/* =========================================
   NAVIGATION
========================================= */
nav {
    position: sticky;
    top: 0;
    background: #fcdede;
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    z-index: 1000;
}

.nav-inner {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo {
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    font-size: 1.8rem;
    color: #7b3f61;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

nav ul a {
    color: #7b3f61;
    font-weight: 500;
    transition: 0.2s;
}

nav ul a:hover {
    color: #a0577a;
}

/* =========================================
   HERO
========================================= */
.hero {
    text-align: center;
    padding: 4rem 1rem 3rem;
    background: linear-gradient(135deg, #ffe4e1, #fffaf6);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #7b3f61;
    margin-bottom: 0.8rem;
}

.hero p {
    color: #6b4a59;
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
}

.small-btn {
    background: #f7c6d5;
    color: white;
    padding: 3px 5px;
    border-radius: 3px;
    font-weight: 600;
    transition: 0.3s;
    display: inline-block;
}

.hero-btn {
    background: #f7c6d5;
    color: white;
    padding: 12px 22px;
    border-radius: 14px;
    font-weight: 600;
    transition: 0.3s;
    display: inline-block;
}

.hero-btn:hover {
    background: #e89ab5;
}

/* =========================================
   MAIN LAYOUT
========================================= */
main {
    max-width: 1100px;
    margin: 2rem auto;
    padding: 0 1.5rem;
}

/* =========================================
   HEART DIVIDER (Improved Visibility)
========================================= */
.heart-divider {
    text-align: center;
    margin: 3rem auto;
    padding: 1.5rem 0;
    background: linear-gradient(90deg, #ffe6ef, #fff8f5, #ffe6ef);
    border-top: 2px solid #f3b8c8;
    border-bottom: 2px solid #f3b8c8;
    border-radius: 30px;
    box-shadow: 0 0 18px rgba(255, 182, 193, 0.25);
    max-width: 900px;
}

.heart-divider span {
    font-size: 1.8rem;
    color: #e06a8c;
    margin: 0 .4rem;
}

/* =========================================
   HOT THIS WEEK
========================================= */
.hot-week {
    text-align: center;
    margin-bottom: 3rem;
}

.hot-week h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #7b3f61;
    margin-bottom: 1.5rem;
}

.carousel {
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-item {
    flex: 0 0 100%;
    padding: 2rem;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #f7c6d5;
    border: none;
    color: white;
    font-size: 2rem;
    padding: .3rem .8rem;
    border-radius: 10px;
    cursor: pointer;
}

#prevBtn { left: 10px; }
#nextBtn { right: 10px; }

.carousel-btn:hover {
    background: #e89ab5;
}

/* =========================================
   ABOUT / FEATURED / TESTIMONIALS / CTA
========================================= */
section {
    text-align: center;
    margin: 3rem auto;
}

.featured-card {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 800px;
    margin: auto;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.featured-card img {
    width: 160px;
    height: 220px;
    object-fit: cover;
    border-radius: 14px;
}

.stars {
    color: gold;
    font-size: 1.2rem;
}

.quotes {
    display: grid;
    gap: 1rem;
    font-style: italic;
    max-width: 600px;
    margin: auto;
}

.cta-btn {
    background: #7b3f61;
    color: white;
    padding: 12px 24px;
    border-radius: 14px;
    font-weight: 600;
    transition: 0.3s;
    display: inline-block;
}

.cta-btn:hover {
    background: #5f2e49;
}

/* =========================================
   FOOTER
========================================= */
footer {
    background: #fcdede;
    color: #7b3f61;
    padding: 2rem;
    text-align: center;
    margin-top: 3rem;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 700px) {
    .featured-card {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 2.2rem;
    }
}
