/* Global Styles and Variables */
:root {
    --color-green: #81B622;
    --color-pink: #FFCAD4;
    --color-beige: #DAD3C8;
    --color-black: #1F1F1F;
    --color-white: #FDFDFB;
    --font-primary: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--color-black);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: var(--color-green);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: #6a9a1c;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--color-green);
    color: var(--color-white);
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn:hover {
    background-color: #6a9a1c;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-accent {
    background-color: var(--color-pink);
    color: var(--color-black);
}

.btn-accent:hover {
    background-color: #ffb1c0;
}

section {
    padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 20px;
}

/* Background animation */
@keyframes gradientBg {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes floatingLeaves {
    0% {
        transform: translateY(0) rotate(0);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0);
    }
}

/* Header Styles */
.site-header {
    background: linear-gradient(120deg, var(--color-white), rgba(223, 247, 214, 0.5));
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: block;
}

.main-nav ul {
    display: flex;
    gap: 20px;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    padding: 10px 0;
    color: var(--color-black);
    font-weight: 500;
}

.main-nav a:hover,
.main-nav li.active a {
    color: var(--color-green);
}

.main-nav li.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-green);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #e9f4d9, #f0f9e7, #e1f1d2);
    background-size: 400% 400%;
    animation: gradientBg 15s ease infinite;
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50,10 Q70,0 60,30 T50,50 Q30,60 40,30 T50,10' fill='%2381B622' fill-opacity='0.1'/%3E%3C/svg%3E");
    width: 100px;
    height: 100px;
    animation: floatingLeaves 8s ease-in-out infinite;
}

.hero::before {
    top: 10%;
    left: 15%;
}

.hero::after {
    bottom: 10%;
    right: 15%;
    animation-delay: 2s;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    color: var(--color-black);
    margin-bottom: 30px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

/* About Section */
.about {
    background-color: var(--color-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Benefits Section */
.benefits {
    background-color: rgba(129, 182, 34, 0.05);
}

.benefits-title {
    text-align: center;
    margin-bottom: 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background-color: var(--color-white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(129, 182, 34, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

/* Products Section */
.products {
    background-color: var(--color-white);
}

.products-title {
    text-align: center;
    margin-bottom: 60px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.product-card {
    background-color: var(--color-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-green);
    margin: 10px 0;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--color-beige);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '"';
    position: absolute;
    font-size: 400px;
    color: rgba(255, 255, 255, 0.1);
    top: -100px;
    left: 50px;
    font-family: serif;
}

.testimonials-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--color-white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
}

/* Benefits Extended Section */
.benefits-extended {
    background-color: var(--color-white);
}

.benefits-extended-title {
    text-align: center;
    margin-bottom: 60px;
}

.benefits-extended-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-extended-card {
    padding: 20px;
    border-left: 3px solid var(--color-green);
    background-color: rgba(129, 182, 34, 0.05);
    border-radius: 0 var(--radius) var(--radius) 0;
}

/* FAQ Section */
.faq {
    background-color: rgba(218, 211, 200, 0.2);
}

.faq-title {
    text-align: center;
    margin-bottom: 60px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    background-color: var(--color-white);
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    border-left: 3px solid var(--color-green);
}

.faq-answer {
    background-color: var(--color-white);
    padding: 0 20px 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Order Form Section */
.order-form {
    background: linear-gradient(135deg, #f7faf2, #edf6e4);
    background-size: 400% 400%;
    animation: gradientBg 15s ease infinite;
}

.order-form-title {
    text-align: center;
    margin-bottom: 60px;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--color-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, var(--color-green), var(--color-pink));
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--color-beige);
    border-radius: var(--radius);
    font-family: var(--font-primary);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-green);
    box-shadow: 0 0 0 3px rgba(129, 182, 34, 0.1);
}

.form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.form-check input {
    margin-top: 5px;
    margin-right: 10px;
}

.form-check label {
    font-size: 0.9rem;
}

.form-submit {
    margin-top: 30px;
}

/* Footer Styles */
.site-footer {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-company h3,
.footer-contact h3,
.footer-links h3 {
    color: var(--color-green);
    margin-bottom: 20px;
}

.footer-contact ul li {
    margin-bottom: 10px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--color-white);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    background-color: var(--color-white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-radius: var(--radius);
    padding: 20px;
    z-index: 1000;
    animation: slideUp 0.5s ease forwards;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-content {
    font-size: 0.9rem;
}

.cookie-content p {
    margin-bottom: 15px;
}

/* Thank You Page */
.thank-you {
    text-align: center;
    padding: 100px 0;
    background: linear-gradient(135deg, #e9f4d9, #f0f9e7, #e1f1d2);
    background-size: 400% 400%;
    animation: gradientBg 15s ease infinite;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-icon {
    font-size: 5rem;
    color: var(--color-green);
    margin-bottom: 30px;
}

/* Policy Pages */
.policy-page {
    padding: 80px 0;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h1 {
    margin-bottom: 30px;
}

.policy-content h2 {
    margin-top: 40px;
    font-size: 1.8rem;
}

.policy-content p {
    margin-bottom: 20px;
}

.policy-content ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.policy-content ul li {
    margin-bottom: 10px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .form-container {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .main-nav ul {
        gap: 10px;
    }
    
    .main-nav a {
        font-size: 0.9rem;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 50px 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
} 