/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #3E5D42;
    --accent-yellow: #FFD23F;
    --secondary-coral: #F96E46;
    --dark-charcoal: #1B1B1E;
    --light-cream: #FCF6F5;
    --font-primary: 'Merriweather', serif;
    --font-secondary: 'Raleway', sans-serif;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--dark-charcoal);
    background-color: var(--light-cream);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes wave {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(10px);
    }
}

/* Wave Dividers */
.wave-divider {
    height: 60px;
    background: linear-gradient(45deg, var(--accent-yellow), var(--secondary-coral));
    position: relative;
    overflow: hidden;
}

.wave-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 20px,
        rgba(255, 255, 255, 0.1) 20px,
        rgba(255, 255, 255, 0.1) 40px
    );
    animation: wave 3s linear infinite;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-green);
    color: var(--light-cream);
    padding: 15px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    font-size: 14px;
}

.cookie-content a {
    color: var(--accent-yellow);
    text-decoration: underline;
}

.cookie-form {
    margin: 0;
}

.cookie-accept-btn {
    background: var(--accent-yellow);
    color: var(--dark-charcoal);
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-accept-btn:hover {
    background: var(--secondary-coral);
    color: var(--light-cream);
    transform: scale(1.05);
}

/* Header */
.header {
    background: var(--primary-green);
    color: var(--light-cream);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-svg {
    transition: transform 0.3s ease;
}

.logo:hover .logo-svg {
    transform: rotate(10deg) scale(1.1);
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-yellow);
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--light-cream);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-yellow);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-yellow);
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, var(--primary-green), #2a4530);
    color: var(--light-cream);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,210,63,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(249,110,70,0.1)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,210,63,0.1)"/></svg>');
    animation: wave 10s linear infinite;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--accent-yellow);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, var(--accent-yellow), var(--secondary-coral));
    color: var(--dark-charcoal);
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.4s both;
    box-shadow: 0 4px 15px rgba(255, 210, 63, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 210, 63, 0.4);
    animation: pulse 2s infinite;
}

.hero-image {
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.hero-img:hover {
    transform: scale(1.05);
}

/* Section Titles */
.section-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-green);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, var(--accent-yellow), var(--secondary-coral));
    border-radius: 2px;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: var(--light-cream);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-yellow);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.benefit-card h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, var(--light-cream));
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.product-card h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--primary-green);
    padding: 20px 20px 10px;
}

.product-card p {
    padding: 0 20px 15px;
    color: #666;
}

.product-features {
    padding: 0 20px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature {
    background: var(--accent-yellow);
    color: var(--dark-charcoal);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: var(--primary-green);
    color: var(--light-cream);
}

.pricing-section .section-title {
    color: var(--accent-yellow);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: white;
    color: var(--dark-charcoal);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.pricing-card.featured {
    border-color: var(--accent-yellow);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-coral);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-green);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-coral);
    margin-bottom: 25px;
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
}

.features-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.features-list li:last-child {
    border-bottom: none;
}

.pricing-btn {
    display: inline-block;
    background: linear-gradient(45deg, var(--accent-yellow), var(--secondary-coral));
    color: var(--dark-charcoal);
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 210, 63, 0.4);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: var(--light-cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid var(--accent-yellow);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-author {
    margin-top: 15px;
    font-weight: 600;
    color: var(--primary-green);
}

/* Herbs Section */
.herbs-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-green), #2a4530);
    color: var(--light-cream);
}

.herbs-section .section-title {
    color: var(--accent-yellow);
}

.herbs-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.herbs-text h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--accent-yellow);
}

.herbs-list {
    list-style: none;
    margin-top: 20px;
}

.herbs-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.herbs-visual {
    font-size: 5rem;
    text-align: center;
    animation: pulse 3s infinite;
}

/* Why Us Section */
.why-us-section {
    padding: 80px 0;
    background: var(--light-cream);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.why-us-item {
    text-align: center;
    padding: 30px 20px;
    transition: all 0.3s ease;
}

.why-us-item:hover {
    transform: translateY(-5px);
}

.why-us-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-coral);
    margin-bottom: 20px;
    font-family: var(--font-primary);
}

.why-us-item h3 {
    font-family: var(--font-primary);
    color: var(--primary-green);
    margin-bottom: 15px;
}

/* Order Form Section */
.order-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, var(--light-cream));
}

.order-form-container {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--accent-yellow);
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-field {
    flex: 1;
}

.form-field input,
.tea-options select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-field input:focus,
.tea-options select:focus {
    outline: none;
    border-color: var(--accent-yellow);
    box-shadow: 0 0 5px rgba(255, 210, 63, 0.3);
}

.tea-options select {
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="8" viewBox="0 0 12 8"><path fill="%233E5D42" d="M1 1l5 5 5-5"/></svg>');
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.form-consent {
    font-size: 0.9rem;
}

.form-consent label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.form-consent input[type="checkbox"] {
    margin-top: 3px;
}

.form-consent a {
    color: var(--primary-green);
    text-decoration: underline;
}

.form-consent a:hover {
    color: var(--secondary-coral);
}

.submit-btn {
    background: linear-gradient(45deg, var(--accent-yellow), var(--secondary-coral));
    color: var(--dark-charcoal);
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(255, 210, 63, 0.3);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--primary-green);
    color: var(--light-cream);
}

.contact-section .section-title {
    color: var(--accent-yellow);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-info-detailed h3 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--accent-yellow);
}

.contact-info-detailed p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contact-info-detailed a {
    color: var(--accent-yellow);
    text-decoration: none;
}

.contact-cta h3 {
    font-family: var(--font-primary);
    margin-bottom: 15px;
    color: var(--accent-yellow);
}

.contact-btn {
    display: inline-block;
    background: var(--accent-yellow);
    color: var(--dark-charcoal);
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: var(--secondary-coral);
    color: var(--light-cream);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--dark-charcoal);
    color: var(--light-cream);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    font-family: var(--font-primary);
    margin-bottom: 20px;
    color: var(--accent-yellow);
}

.contact-info p,
.legal-links a {
    margin-bottom: 10px;
    display: block;
}

.legal-links a {
    color: var(--light-cream);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--accent-yellow);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav {
        gap: 20px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .benefits-grid,
    .products-grid,
    .pricing-grid,
    .testimonials-grid,
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    
    .herbs-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .order-form-container {
        margin: 0 15px;
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .order-form-container {
        padding: 20px;
        margin: 0 10px;
    }
} 