:root {
    --primary-brown: #3e2723;
    --accent-gold: #d4a017;
    --light-cream: #f9f7f2;
    --leaf-green: #4caf50;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--light-cream);
    color: var(--primary-brown);
    overflow-x: hidden;
}

/* --- Header --- */
header {
    padding: 5px 0;
    background: #fff;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

header img {
    max-height: 80px;
}

/* --- Hero Banner & Parallax --- */
.hero {
    position: relative;
    min-height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('../website-banner.png');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    padding: 40px 5%;
    gap: 40px;
}

.hero-images {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    position: relative;
}

.hero-content {
    flex: 1;
    color: white;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

/* Floating Products in Hero */
.product-float {
    position: absolute;
    width: 200px;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
    animation: float 6s ease-in-out infinite;
}

.chilli-float { left: 20%; bottom: 20%; animation-delay: 0s; }
.coriander-float { right: 20%; bottom: 0; animation-delay: 3s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Animation keyframes */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- About Us --- */
.about {
    padding: 10px 5%;
    background: white;
    position: relative;
    background-image: url('../banner-02.png');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    pointer-events: none;
    z-index: 0;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-image {
    flex: 1;
    animation: slideInLeft 1s ease-out;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    object-fit: cover;
}

.about-content {
    flex: 1;
    animation: slideInRight 1s ease-out;
}

.about h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: var(--primary-brown);
}

.about p {
    line-height: 1.8;
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 20px;
}

/* --- Products Section --- */
.products {
    padding: 10px 5%;
    background: linear-gradient(135deg, #f9f7f2 0%, #fefdfb 100%);
}

.products-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    margin-bottom: 10px;
    color: var(--primary-brown);
    animation: fadeInUp 1s ease-out;
}

.products-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.product-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 1s ease-out;
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

.product-images {
    display: flex;
    height: 400px;
    background: white;
}

.product-image-side {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.product-image-side:first-child {
    background: linear-gradient(135deg, #f5f5f5 0%, #efefef 100%);
}

.product-image-side:last-child {
    background: linear-gradient(135deg, #efefef 0%, #e8e8e8 100%);
    border-left: 1px solid #ddd;
}

.product-image-side img {
    width: 90%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

.product-info {
    padding: 40px;
    text-align: center;
}

.product-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--primary-brown);
    margin-bottom: 10px;
}

.product-info p {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.skus {
    margin-top: 25px;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.sku-tag {
    background: var(--light-cream);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 2px solid var(--accent-gold);
    color: var(--primary-brown);
    transition: all 0.3s ease;
    cursor: pointer;
}

.sku-tag:hover {
    background: var(--accent-gold);
    color: white;
}

/* --- Videos Row --- */
.videos-row {
    padding: 60px 10%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    background: #f0f0f0;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Ratio */
    height: 0;
    border-radius: 15px;
    overflow: hidden;
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- Contact Form --- */
.contact {
    position: relative;
    padding: 100px 10%;
    background: white;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../banner-02.png');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.15;
    z-index: 1;
}

.contact-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-info {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    animation: fadeInUp 0.8s ease-out;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-brown);
    margin-bottom: 30px;
}

.contact-info p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-email {
    font-size: 1.3rem;
    color: var(--accent-gold);
    font-weight: 600;
    margin: 30px 0;
}

.contact-phone {
    font-size: 1.3rem;
    color: var(--accent-gold);
    font-weight: 600;
    margin: 15px 0;
}

.email-button {
    padding: 15px 40px;
    background: var(--primary-brown);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    margin-top: 30px;
    display: inline-block;
}

.email-button:hover {
    background: #5d4037;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(62,39,35,0.3);
}

/* --- Footer --- */
footer {
    padding: 40px 10%;
    background: var(--primary-brown);
    color: white;
    text-align: center;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: #ccc;
    margin: 0 15px;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover { color: white; }

/* Responsive */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        padding: 30px 5%;
        gap: 30px;
        background-attachment: scroll;
    }

    .hero-images {
        min-height: 400px;
        width: 100%;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .about-container {
        flex-direction: column;
        gap: 40px;
    }

    .about h2 {
        font-size: 2.2rem;
    }

    .products-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .hero {
        min-height: auto;
        padding: 20px 5%;
        gap: 20px;
        background-attachment: scroll;
    }

    .hero-images {
        min-height: 250px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .product-float {
        width: 120px;
    }

    .chilli-float {
        left: 10%;
        bottom: 10%;
    }

    .coriander-float {
        right: 10%;
        bottom: 5%;
    }

    .about h2 {
        font-size: 1.8rem;
    }

    .about p {
        font-size: 0.95rem;
    }

    .products-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .product-images {
        flex-direction: column;
        height: auto;
    }

    .product-image-side:last-child {
        border-left: none;
        border-top: 1px solid #ddd;
    }

    .product-info {
        padding: 25px;
    }

    .product-info h3 {
        font-size: 1.5rem;
    }

    .about {
        background-attachment: scroll;
    }

    .contact {
        background-attachment: scroll;
    }

    .contact::before {
        background-attachment: scroll;
    }
}

@media (max-width: 375px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .hero-images {
        min-height: 200px;
    }

    .product-float {
        width: 100px;
    }
}
