:root {
    --primary-color: #f1c98d;
    --secondary-color: #e0a860;
    --text-color: rgb(93, 64, 55);
    /* Warm brown text */
    --bg-color: #fdfbf7;
    /* Creamy background */
    --card-bg: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --shadow-soft: 0 10px 30px rgba(93, 64, 55, 0.08);
    --radius-lg: 24px;
    --radius-md: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.7;
    background-color: var(--bg-color);
    -webkit-font-smoothing: antialiased;
}

/* Header & Nav */
header {
    background-color: #F1C98D;
    padding: 0.8rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1001;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 0.5rem 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    /* Optional: keep content centered on very large screens */
}

.logo-container .logo {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-container .logo:hover {
    transform: scale(1.05);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* Use a warmer, cozier hero image overlay */
    background: linear-gradient(rgba(93, 64, 55, 0.2), rgba(93, 64, 55, 0.1)), url('https://images.unsplash.com/photo-1558961363-fa8fdf82db35?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: #fff;
    margin-top: 80px;
    /* Reset margin since header is overlay or fixed */
}

.hero-content {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    padding: 3rem 4rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 800px;
}

.coming-soon-badge {
    display: inline-block;
    background-color: var(--secondary-color);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(224, 168, 96, 0.4);
    animation: fadeInDown 1s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    color: #fdfbf7;
}

.btn {
    display: inline-block;
    padding: 1.2rem 2.8rem;
    background-color: var(--primary-color);
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(241, 201, 141, 0.4);
}

.btn:hover {
    background-color: #fff;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(241, 201, 141, 0.6);
}

/* Products Section */
.products {
    padding: 8rem 2rem;
    text-align: center;
    background-color: var(--bg-color);
}

.products h2,
.contact h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    position: relative;
    display: inline-block;
}

.products h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 1rem auto 4rem;
    border-radius: 2px;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    border: 1px solid rgba(241, 201, 141, 0.1);
    flex: 0 1 340px;
    /* Don't grow, allow shrink, basis 340px */
    width: 100%;
    /* Ensure it takes width up to basis */
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(93, 64, 55, 0.12);
    border-color: rgba(241, 201, 141, 0.4);
}

.product-image {
    width: 100%;
    height: 240px;
    background-color: #f0e6d2;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
    object-fit: cover;
}

.product-card:hover .product-image {
    transform: scale(1.02);
}



.product-card h3 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    font-size: 1.8rem;
    color: var(--text-color);
}

.product-card p {
    color: #7d6e68;
    font-size: 1.05rem;
}

/* Story Section */
.story-section {
    padding: 8rem 2rem;
    background-color: #fff;
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.story-content {
    flex: 1;
    min-width: 300px;
}

.story-content h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    position: relative;
    display: inline-block;
}

.story-content h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin-top: 0.5rem;
    border-radius: 2px;
}

.story-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #7d6e68;
    line-height: 1.8;
}

.story-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.story-image img {
    max-width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(241, 201, 141, 0.2);
    transition: transform 0.3s ease;
}

.story-image img:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .story-container {
        flex-direction: column;
        text-align: center;
    }

    .story-content h2::after {
        margin: 0.5rem auto;
    }
}

/* Contact Form Section */
.contact-form-section {
    padding: 6rem 2rem;
    background-color: #fff;
    text-align: center;
}

.contact-form-section h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-color);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(241, 201, 141, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.btn-submit {
    width: 100%;
    border: none;
    cursor: pointer;
}

#form-message {
    margin-top: 1rem;
    font-weight: 600;
}

#form-message.success {
    color: green;
}

#form-message.error {
    color: red;
}

/* Contact Section */
.contact {
    padding: 8rem 2rem;
    text-align: center;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

/* Decorative circle background */
.contact::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 800px;
    height: 800px;
    background-color: rgba(241, 201, 141, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.contact h2,
.contact p,
.social-links {
    position: relative;
    z-index: 1;
}

.contact p {
    margin-bottom: 3rem;
    font-size: 1.2rem;
    color: #7d6e68;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.social-links {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.social-links .icons {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--bg-color);
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(241, 201, 141, 0.2);
}

@media (hover: hover) {
    .social-links a:hover {
        transform: translateY(-5px);
        color: #fff;
        border-color: transparent;
    }

    /* Brand Colors on Hover */
    .social-links a[aria-label="TikTok"]:hover {
        background-color: #000000;
    }

    .social-links a[aria-label="Instagram"]:hover {
        background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    }

    .social-links a[aria-label="Facebook"]:hover {
        background-color: #1877F2;
    }

    .social-links a[aria-label="YouTube"]:hover {
        background-color: #FF0000;
    }

    .social-links a[aria-label="Pinterest"]:hover {
        background-color: #E60023;
    }
}

/* Footer */
footer {
    background-color: var(--text-color);
    color: #fdfbf7;
    text-align: center;
    padding: 4rem 2rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo {
    height: 60px;
    width: auto;
}

.footer-content p {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #f1c98d;
}

.footer-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    align-items: center;
}

.footer-links a {
    color: #f1c98d;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #c69c6d;
    /* Darker shade of #f1c98d */
    text-decoration: underline;
}

.footer-links .separator {
    color: #f1c98d;
    font-size: 0.9rem;
}

/* Scroll Interaction */
.header-hidden {
    transform: translateY(-100%);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1002;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Hamburger Animation */
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero-content {
        padding: 2rem;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background-color: var(--bg-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding-top: 60px;
        z-index: 1001;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 1.5rem 0;
    }

    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* Scroll to Top Button */
#scrollToTopBtn {
    display: none;
    /* Hidden by default */
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: var(--secondary-color);
    color: white;
    cursor: pointer;
    width: 50px;
    height: 50px;
    /* display: flex; Removed to prevent overriding display: none. JS will set to flex. */
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

@media (hover: hover) {
    #scrollToTopBtn:hover {
        background-color: var(--primary-color);
        transform: translateY(-5px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    }
}

/* Contact Info Row */
.contact-info-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

/* Contact Number */
.contact-number {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0;
    /* Removed margin since it's in a flex row */
    color: var(--text-color);
}

.contact-number a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.contact-number a:hover {
    color: var(--secondary-color);
}

/* WhatsApp Inline Button */
.whatsapp-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #25d366;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.whatsapp-inline:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.whatsapp-inline i {
    font-size: 1.2rem;
}