/* Global Styles */
:root {
    --primary-color: #8B4513;
    --secondary-color: #D2B48C;
    --accent-color: #5D4037;
    --light-color: #F5F5DC;
    --dark-color: #2D2D2D;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #FAFAFA;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    margin-bottom: 15px;
    line-height: 1.2;
}

p {
    margin-bottom: 15px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

section {
    padding: 80px 0;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 0;
}

.logo p {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-bottom: 0;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-weight: 500;
    position: relative;
}

nav ul li a:hover {
    color: var(--primary-color);
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

nav ul li a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background-color: var(--light-color);
    padding: 100px 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.hero-content h2 {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.hero-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* Overview Section */
.overview {
    background-color: white;
    text-align: center;
}

.overview h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 40px;
}

.kit-components {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.component {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.component:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.component img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    margin: 0 auto 20px;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: var(--shadow);
}

.component h3 {
    color: var(--primary-color);
}

/* Benefits Section */
.benefits {
    background-color: #F9F5EB;
}

.benefits h2 {
    color: var(--primary-color);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
}

.benefit-card {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 20px;
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.benefit-icon img {
    width: 60px;
    height: 60px;
}

.benefit-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.benefit-content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.benefit-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Ingredients Section */
.ingredients {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.ingredients h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.ingredients p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

.ingredient-highlight {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    margin-top: 40px;
}

.ingredient-highlight p {
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 0;
}

/* Testimonials Section */
.testimonials {
    background-color: white;
    text-align: center;
}

.testimonials h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 40px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.testimonial {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.stars {
    color: gold;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.author {
    font-weight: 600;
    color: var(--accent-color);
    margin-top: 20px;
}

/* CTA Section */
.cta {
    background-color: var(--accent-color);
    color: white;
    text-align: center;
    padding: 100px 0;
}

.cta h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.cta .btn {
    background-color: white;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.cta .btn:hover {
    background-color: var(--light-color);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.footer-links h4, .footer-disclaimer h4 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a:hover {
    color: var(--secondary-color);
}

.footer-disclaimer p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    
    nav ul {
        margin-top: 15px;
    }
    
    nav ul li {
        margin: 0 10px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        text-align: center;
        order: 2;
    }
    
    .hero-image {
        order: 1;
        margin-bottom: 30px;
    }
    
    .benefit-card {
        grid-template-columns: 1fr;
    }
    
    .benefit-icon {
        margin-bottom: 15px;
        text-align: center;
    }
    
    .benefit-icon img {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 5px 10px;
    }
}
