/* General Reset and Font Import */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f7f7f7; /* Light background */
}

a {
    text-decoration: none;
    color: inherit;
}

/* === HEADER & NAV === */
header {
    background-color: #A31F1F; /* Deep Red */
    color: white;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.8em;
    font-weight: 900;
    letter-spacing: 2px;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li a {
    padding: 10px 15px;
    margin-left: 10px;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: #C83737; /* Lighter Red on hover */
    border-radius: 5px;
}

/* === HERO SECTION & PRIMARY ANIMATION === */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://source.unsplash.com/random/1200x600/?red,chilli,spice') no-repeat center center/cover;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative; /* Needed for positioning the glow */
    overflow: hidden; /* Hide animation overflow */
}

.hero-content {
    z-index: 2;
}

.hero h1 {
    font-size: 4em;
    margin-bottom: 10px;
    /* Text Animation */
    animation: slideInDown 1s ease-out; 
}

.hero p {
    font-size: 1.5em;
    margin-bottom: 30px;
    font-weight: 700;
}

.cta-button {
    display: inline-block;
    background-color: #FF6347; /* Tomato Red - pop color */
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 900;
    letter-spacing: 1px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #E5533A;
    transform: scale(1.05); /* Slight scale on hover */
}

/* --- CHILLI GLOW/PULSE ANIMATION --- */
.chilli-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 69, 0, 0.5) 0%, rgba(255, 69, 0, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    animation: pulseGlow 4s infinite alternate ease-in-out; /* Main Animation */
}

@keyframes pulseGlow {
    0% {
        transform: scale(0.8) translate(-50%, -50%);
        opacity: 0.5;
        top: 50%;
        left: 50%;
    }
    50% {
        transform: scale(1.1) translate(-50%, -50%);
        opacity: 0.8;
    }
    100% {
        transform: scale(0.9) translate(-50%, -50%);
        opacity: 0.6;
        top: 45%;
        left: 55%;
    }
}

@keyframes slideInDown {
    0% {
        transform: translateY(-50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* === GENERAL SECTION STYLING === */
section {
    padding: 80px 5%;
    text-align: center;
}

section h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #A31F1F;
}

/* === PRODUCT SHOWCASE === */
.product-card {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    text-align: left;
    /* Subtle Entry Animation */
    animation: fadeIn 1.5s ease-out; 
}

.product-image {
    flex: 1;
    min-height: 400px;
    background-color: #E0E0E0; /* Placeholder for image */
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: italic;
}

.product-details {
    flex: 1.5;
    padding: 40px;
}

.product-details h3 {
    font-size: 2em;
    color: #FF4500; /* Orange Red */
    margin-bottom: 15px;
}

.product-details ul {
    list-style: none;
    padding-top: 15px;
}

.product-details ul li {
    padding: 5px 0;
    font-weight: 700;
}

/* === QUALITY SECTION & HOVER ANIMATION === */
.quality-section {
    background-color: #A31F1F;
    color: white;
}

.quality-points {
    display: flex;
    justify-content: space-around;
    gap: 30px;
}

.point {
    flex: 1;
    padding: 30px;
    border: 2px solid white;
    border-radius: 10px;
    transition: transform 0.4s ease-out, background-color 0.4s ease;
}

.point h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

/* Hover Animation: Tilt and subtle color change */
.point:hover {
    transform: translateY(-10px) rotate(1deg); 
    background-color: rgba(255, 255, 255, 0.1);
}

/* === CONTACT & FOOTER === */
.contact-section {
    background-color: #f7f7f7;
}

footer {
    background-color: #333;
    color: white;
    padding: 20px 5%;
    text-align: center;
    font-size: 0.9em;
}

/* --- UTILITY ANIMATIONS --- */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}