/* General reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styling */
body {
    font-family: "Poppins", sans-serif;
    background-color: #fff7fb;
    color: #333;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: #ffffff;
    padding: 0.8rem 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.logo {
    font-family: "Playfair Display", serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ff4f8b;
    letter-spacing: 1px;
}

.logo span {
    color: #333;
}

.navbar nav a {
    margin-left: 1.5rem;
    text-decoration: none;
    color: #555;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease, border-bottom 0.2s ease;
    padding-bottom: 2px;
}

.navbar nav a:hover,
.navbar nav a.active {
    color: #ff4f8b;
    border-bottom: 2px solid #ff4f8b;
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
}

/* Hero Section (Home only) */
.hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    padding: 4rem 7%;
    align-items: center;
    gap: 2.5rem;
}

.tagline {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: #ff4f8b;
    font-weight: 600;
    margin-bottom: 0.7rem;
}

.hero h1 {
    font-family: "Playfair Display", serif;
    font-size: 2.6rem;
    margin-bottom: 1rem;
    color: #222;
}

.hero-subtitle {
    max-width: 550px;
    color: #666;
    margin-bottom: 1.6rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.4rem;
    border-radius: 999px;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}

.primary-btn {
    background: linear-gradient(135deg, #ff4f8b, #ff94c2);
    color: #fff;
    box-shadow: 0 8px 20px rgba(255, 79, 139, 0.3);
}

.whatsapp-btn {
    background-color: #25d366;
    color: #fff;
}

.whatsapp-btn i {
    margin-right: 0.4rem;
}

.whatsapp-btn.large {
    padding: 1rem 1.8rem;
    font-size: 1rem;
    margin-top: 0.5rem;
}

/* Hero image / card */
.hero-image {
    display: flex;
    justify-content: center;
}

.food-card {
    position: relative;
    background-color: #ffffff;
    padding: 2.2rem 2rem;
    border-radius: 2rem;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
    max-width: 360px;
    text-align: center;
}

.food-card .circle {
    position: absolute;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: radial-gradient(circle at top, #ff94c2, #ff4f8b);
    opacity: 0.15;
    top: -40px;
    right: -40px;
    z-index: -1;
}

.food-card h2 {
    font-family: "Playfair Display", serif;
    margin-bottom: 0.6rem;
    color: #222;
}

.food-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Generic Section */
.section {
    padding: 3.5rem 7%;
}

.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-title h2 {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    margin-bottom: 0.4rem;
    color: #222;
}

.section-title span {
    color: #ff4f8b;
}

.section-title p {
    color: #777;
    font-size: 0.95rem;
}

/* Page header (for About, Products, Gallery, Contact) */
.page-header {
    padding: 3rem 7% 1rem;
    text-align: left;
}

.page-header h1 {
    font-family: "Playfair Display", serif;
    font-size: 2.3rem;
    color: #222;
    margin-bottom: 0.4rem;
}

.page-header p {
    color: #777;
    font-size: 0.95rem;
}

/* About page layout */
.about-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
    align-items: start;
}

.about-text h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #222;
}

.about-text p {
    margin-bottom: 0.7rem;
    color: #555;
}

.about-highlight-card {
    background-color: #ffffff;
    border-radius: 1.5rem;
    padding: 1.6rem 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    border-top: 3px solid #ff94c2;
}

.about-highlight-card h4 {
    margin-bottom: 0.9rem;
    font-size: 1.1rem;
    color: #ff4f8b;
}

.about-highlight-card ul {
    list-style: none;
    padding-left: 0; /* added for consistency */
}

.about-highlight-card li {
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
    color: #555;
}

/* Products & Services */
.products-wrapper {
    padding: 1.5rem 7% 3.5rem;
}

.products-intro {
    max-width: 650px;
    margin: 0 auto 2rem auto; /* center horizontally */
    color: #555;
    text-align: center; /* ensures text is centered */
}

.products-section {
    margin-bottom: 2.5rem;
}

.products-section h2 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #ff4f8b;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.6rem;
}

.card {
    background-color: #ffffff;
    border-radius: 1.3rem;
    padding: 1.4rem 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    border-bottom: 3px solid #ff94c2;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.card h3 {
    margin-bottom: 0.6rem;
    font-size: 1.08rem;
    color: #222;
}

.card p {
    font-size: 0.93rem;
    color: #555;
    margin-bottom: 0.9rem;
}

.tag {
    display: inline-block;
    background-color: #ffe0f0;
    color: #ff4f8b;
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Simple menu list */
.menu-list {
    margin-top: 1rem;
}

.menu-list h4 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
    color: #222;
}

.menu-list ul {
    list-style: none;
    padding-left: 0;
}

.menu-list li {
    margin-bottom: 0.3rem;
    font-size: 0.93rem;
    color: #555;
}

/* Gallery */
.gallery-wrapper {
    padding: 1.5rem 7% 3.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
}

.gallery-item {
    border-radius: 1.2rem;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.gallery-item img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.gallery-caption {
    padding: 0.7rem 1rem 1rem;
    font-size: 0.9rem;
    color: #555;
}

/* Contact */
.contact-wrapper {
    padding: 1.5rem 7% 3.5rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
    align-items: start;
}

.contact-details h3,
.contact-whatsapp-box h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #222;
}

.contact-details p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #555;
}

.contact-details i {
    color: #ff4f8b;
    margin-right: 0.4rem;
}

.contact-details a {
    text-decoration: none;
    color: #444;
}

.contact-details a:hover {
    color: #ff4f8b;
}

.contact-whatsapp-box {
    background-color: #ffeaf5;
    border-radius: 1.5rem;
    padding: 1.7rem 1.6rem;
    border: 1px dashed #ff94c2;
}

.contact-whatsapp-box p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0.8rem;
}

.note {
    margin-top: 0.8rem;
    font-size: 0.9rem;
    color: #777;
}

/* Footer */
.footer {
    text-align: center;
    padding: 1.2rem 7%;
    font-size: 0.85rem;
    color: #777;
    background-color: #fff;
    border-top: 1px solid #f4c4dd;
    margin-top: 2rem;
}

/* RESPONSIVE STYLES */
@media (max-width: 992px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .hero-image {
        order: -1;
        margin-bottom: 1.5rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.7rem 6%;
    }

    .navbar nav {
        position: absolute;
        top: 60px;
        right: 6%;
        background-color: #ffffff;
        padding: 0.8rem 1.2rem;
        border-radius: 0.8rem;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        display: none;
        flex-direction: column;
    }

    .navbar nav.show {
        display: flex;
    }

    .navbar nav a {
        margin: 0.4rem 0;
    }

    .nav-toggle {
        display: block;
        color: #333;
    }

    .hero {
        padding: 3rem 6%;
    }

    .section,
    .products-wrapper,
    .gallery-wrapper,
    .contact-wrapper {
        padding: 3rem 6%;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
