:root {
    --primary-color: #f1c98d;
    --secondary-color: #e0a860;
    --text-color: #5d4037;
    /* 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: 1.2rem 3rem;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    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.8rem 3rem;
    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: 65px;
    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: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    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);
}

.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;
}

.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;
}

/* 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);
}

.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: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

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

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

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

/* 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: 1001;
}

.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;
    }

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

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