        /* --- CSS VARIABLES & RESET --- */
        :root {
            --primary: #e17055; 
            --primary-dark: #d63031;
            --accent: #fdcb6e; 
            --text-dark: #2d3436;
            --text-gray: #636e72;
            --bg-cream: #fdfbf7;
            --bg-white: #ffffff;
            --shadow-card: 0 10px 30px rgba(0,0,0,0.08);
            --transition: all 0.3s ease;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; outline: none; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Lato', sans-serif;
            background-color: var(--bg-cream);
            color: var(--text-dark);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5 { font-family: 'Playfair Display', serif; color: var(--text-dark); }
        a { text-decoration: none; color: inherit; transition: var(--transition); cursor: pointer;}
        img { width: 100%; height: 100%; object-fit: cover; }
        ul { list-style: none; }

        /* --- UTILITY CLASSES --- */
        .container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
        .section-padding { padding: 100px 0; }
        .text-center { text-align: center; }
        
        .btn {
            display: inline-block; padding: 12px 30px; border-radius: 50px;
            font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
            cursor: pointer; border: none; font-size: 0.85rem; transition: var(--transition);
        }
        .btn-primary {
            background: linear-gradient(45deg, var(--primary), var(--primary-dark));
            color: white; box-shadow: 0 5px 15px rgba(225, 112, 85, 0.3);
        }
        .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(225, 112, 85, 0.5); }
        
        .btn-outline {
            border: 2px solid var(--text-dark); background: transparent; color: var(--text-dark);
        }
        .btn-outline:hover { background: var(--text-dark); color: white; }

        /* --- TOP BAR --- */
        .top-bar {
            background: var(--text-dark); color: white; height: 40px;
            display: flex; align-items: center; overflow: hidden; position: relative;
            z-index: 1001;
        }
        .marquee-content {
            display: flex; gap: 50px; white-space: nowrap;
            animation: marquee 30s linear infinite; font-size: 0.85rem; font-weight: 300;
        }
        @keyframes marquee { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
        .badge-news { background: var(--primary); padding: 2px 8px; border-radius: 4px; font-weight: bold; margin-right: 8px; font-size: 0.7rem; }

        /* --- NAVIGATION --- */
        nav {
            position: sticky; top: 0; z-index: 1000;
            background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0,0,0,0.05); padding: 15px 0; transition: 0.3s;
        }
        .nav-wrapper { display: flex; justify-content: space-between; align-items: center; }
        .logo { font-size: 1.8rem; font-weight: 700; font-family: 'Playfair Display', serif; color: var(--primary-dark); display: flex; align-items: center; gap: 10px; cursor: pointer;}
        .nav-links { display: flex; gap: 30px; }
        .nav-links a { font-weight: 600; font-size: 0.95rem; position: relative; }
        .nav-links a::after {
            content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px;
            background: var(--primary); transition: 0.3s;
        }
        .nav-links a:hover::after { width: 100%; }
        .nav-links a:hover { color: var(--primary); }

        /* --- HERO SECTION --- */
.hero {
    position: relative;
    min-height: 110vh;   /* Increase height here */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
        .hero-content { z-index: 2; max-width: 600px; }
        .hero h1 { font-size: 4.5rem; line-height: 1.1; margin-bottom: 20px; }
        .hero p { font-size: 1.2rem; color: var(--text-gray); margin-bottom: 35px; }
.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}




            .hero-img {
                max-width: 100%;
                height: auto;
                object-fit: contain;
                animation: float 6s ease-in-out infinite;
            }
        
        .floating-item { position: absolute; z-index: 1; opacity: 0.8; animation: floatItem 8s infinite; width: auto; height: auto;}
        .f-1 { top: 10%; left: 50%; width: 80px; animation-delay: 0s; }
        .f-2 { bottom: 20%; left: 40%; width: 60px; animation-delay: 2s; }
        .f-3 { top: 20%; right: 10%; width: 50px; animation-delay: 4s; }

        @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
        @keyframes floatItem { 0%, 100% { transform: translate(0, 0) rotate(0deg); } 50% { transform: translate(10px, -20px) rotate(10deg); } }

        /* --- RECIPE CARDS --- */
        .card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 50px; }
        .recipe-card {
            background: white; border-radius: 20px; overflow: hidden;
            box-shadow: var(--shadow-card); transition: var(--transition); position: relative; cursor: pointer;
        }
        .recipe-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.12); }
        .recipe-img-box { height: 250px; overflow: hidden; position: relative; }
        .recipe-img-box img { transition: 0.5s; width: 100%; height: 100%; object-fit: cover; }
        .recipe-card:hover .recipe-img-box img { transform: scale(1.1); }
        .recipe-badge { position: absolute; top: 15px; left: 15px; background: rgba(255,255,255,0.9); padding: 5px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; }
        .card-body { padding: 25px; }
        .meta-row { display: flex; justify-content: space-between; margin-bottom: 10px; color: var(--text-gray); font-size: 0.85rem; }
        .rating { color: #f1c40f; }

        /* --- OTHER SECTIONS --- */
        .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; }
        .why-card { padding: 40px 20px; background: white; border-radius: 20px; transition: 0.3s; border: 1px solid transparent; box-shadow: var(--shadow-card); cursor: pointer; }
        .why-card:hover { border-color: var(--accent); background: #fffdf5; transform: translateY(-5px); }
        .icon-box { font-size: 3rem; color: var(--primary); margin-bottom: 20px; }

        .video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.video-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 380px;     /* Increased height */
    cursor: pointer;
    box-shadow: var(--shadow-card);
}

        .video-overlay {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.3); display: flex; flex-direction: column;
            justify-content: center; align-items: center; color: white;
            transition: 0.3s; padding: 20px; text-align: center;
        }
        .video-card:hover .video-overlay { background: rgba(225, 112, 85, 0.85); }
        .play-btn { font-size: 3rem; margin-bottom: 15px; transition: 0.3s; }
        .video-card:hover .play-btn { transform: scale(1.2); }
        .vid-desc { opacity: 0; transform: translateY(20px); transition: 0.3s; }
        .video-card:hover .vid-desc { opacity: 1; transform: translateY(0); }
        .video-file {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .blog-section { background: #f1f2f6; }
        .blog-card { background: white; border-radius: 15px; overflow: hidden; box-shadow: var(--shadow-card); transition: 0.3s; height: 100%; display: flex; flex-direction: column;}
        .blog-card:hover { transform: translateY(-5px); }
        .blog-img { height: 200px; overflow: hidden; }
        .blog-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
        .blog-card:hover .blog-img img { transform: scale(1.1); }
        .blog-content { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between;}
        .read-more { font-weight: 700; color: var(--text-dark); margin-top: 15px; display: inline-block; font-size: 0.9rem; cursor: pointer;}
        .read-more:hover { color: var(--primary); }

        /* --- FOOTER --- */
        footer { background: #2d3436; color: white; padding: 80px 0 20px; margin-top: 0; }
        .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
        .footer h4 { color: var(--accent); margin-bottom: 20px; font-family: 'Lato', sans-serif; font-weight: 700; letter-spacing: 1px; }
        .footer ul li { margin-bottom: 12px; }
        .footer ul li a { color: #b2bec3; font-size: 0.95rem; transition: 0.3s; }
        .footer ul li a:hover { color: white; padding-left: 5px; }
        .socials { display: flex; gap: 15px; margin-top: 20px; }
        .socials i { width: 35px; height: 35px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: 0.3s; cursor: pointer; }
        .socials i:hover { background: var(--primary); transform: translateY(-3px); }

                /* --- 11. TESTIMONIALS --- */
        .testimonial-wrapper { background: var(--text-dark); color: white; border-radius: 30px; padding: 60px; position: relative; overflow: hidden; min-height: 400px; display: flex; align-items: center; justify-content: center; flex-direction: column;}
        .test-card { display: none; text-align: center; max-width: 800px; margin: 0 auto; animation: fadeIn 0.8s; }
        .test-card.active { display: block; }
        .user-img { width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 20px; border: 3px solid var(--accent); object-fit: cover;}
        .quote { font-size: 1.5rem; font-family: 'Playfair Display', serif; font-style: italic; margin-bottom: 20px; opacity: 0.9; line-height: 1.4; }
        .test-nav { display: flex; justify-content: center; gap: 10px; margin-top: 30px; position: relative; z-index: 5;}
        .dot { width: 12px; height: 12px; background: rgba(255,255,255,0.3); border-radius: 50%; cursor: pointer; transition: 0.3s;}
        .dot.active { background: var(--accent); transform: scale(1.2); }

        /* --- 12. SUBSCRIBE --- */
        .sub-box {
            background: linear-gradient(135deg, var(--accent) 0%, #f1c40f 100%);
            border-radius: 30px; padding: 60px; text-align: center;
        }
        .input-group {
            margin-top: 30px; display: flex; max-width: 500px; margin-left: auto; margin-right: auto;
            background: white; padding: 5px; border-radius: 50px;
        }
        .input-group input { border: none; flex: 1; padding: 15px 25px; border-radius: 50px; font-family: 'Lato'; }
        .input-group button { border-radius: 50px; padding: 12px 30px; }

        /* --- MODALS --- */
        .modal {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.6); backdrop-filter: blur(5px);
            z-index: 2000; display: none; justify-content: center; align-items: center;
        }
        .modal.open { display: flex; }
        
        .auth-box { background: white; padding: 40px; border-radius: 20px; width: 400px; position: relative; text-align: center; animation: slideUp 0.3s; }
        
        .content-box {
            background: white; padding: 0; border-radius: 20px; width: 90%; max-width: 800px;
            max-height: 85vh; overflow-y: auto; position: relative; animation: slideUp 0.3s;
        }
        .content-body { padding: 40px; }
        .content-title { color: var(--primary); font-size: 2rem; margin-bottom: 10px; }
        .content-subtitle { color: var(--text-gray); font-style: italic; margin-bottom: 20px; border-bottom: 1px solid #eee; padding-bottom: 20px; }
        .content-text { line-height: 1.8; color: var(--text-dark); }
        .content-text h4 { margin-top: 20px; margin-bottom: 10px; color: var(--text-dark); }
        .content-text ul { list-style: disc; padding-left: 20px; margin-bottom: 20px; }

        .close-btn { position: absolute; top: 15px; right: 15px; cursor: pointer; font-size: 1.5rem; background: white; border-radius: 50%; width: 35px; height: 35px; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 10px rgba(0,0,0,0.1); z-index: 10;}
        .form-input { width: 100%; padding: 12px; margin-bottom: 15px; border: 1px solid #ddd; border-radius: 8px; }
        
        @keyframes slideUp { from { transform: translateY(50px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

        @media(max-width: 768px) {
            .hero h1 { font-size: 2.8rem; }
            .hero-img-wrapper { display: none; }
            .nav-links { display: none; }
            .why-grid, .video-grid, .footer-grid { grid-template-columns: 1fr; }
            .card-grid { grid-template-columns: 1fr; }
        }
        /* Show hamburger on mobile */
@media(max-width: 900px) {
    .desktop-menu {
        display: none !important;
    }
    .hamburger {
        display: block;
    }
}

/* Hamburger hidden normally */
.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--primary);
    z-index: 9999;
}

/* Mobile Menu Visible Layer */
.mobile-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 20px;
    z-index: 9999;
    border-top: 1px solid #eee;
}

/* Menu links */
.mobile-menu a {
    padding: 12px 0;
    color: #333;
    font-size: 16px;
}

/* Button full width */
.mobile-menu .btn {
    width: 100%;
    margin-top: 12px;
}

