/* Base Styles */
:root {
    --bg-color: #3A1F5D;
    --text-color: #FFFFF0;
    --accent-lime: #CFFF04;
    --accent-teal: #1DE9B6;
    --button-color: #6A1B9A;
    --overlay-color: rgba(255, 111, 97, 0.4);
    --price-bg: rgba(0, 0, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* Performance optimizations */
html {
    scroll-behavior: smooth;
}

/* Global centering */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    text-align: center;
}

section {
    padding: 80px 0;
    text-align: center;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
    position: relative;
    margin-bottom: 40px;
}

h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--accent-lime), var(--accent-teal));
    transform: translateX(-50%);
}

p {
    margin-bottom: 20px;
}

a {
    color: var(--accent-teal);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-lime);
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    will-change: transform;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--button-color);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(106, 27, 154, 0.4);
}

.btn:hover {
    background-color: #8E24AA;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(106, 27, 154, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--button-color);
    color: var(--text-color);
}

.btn-outline:hover {
    background-color: var(--button-color);
}

/* Header Styles */
.site-header {
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(58, 31, 93, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.site-header .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
}

.logo {
    max-width: 180px;
    text-align: center;
    margin-bottom: 10px;
}

.logo-svg {
    width: 100%;
    height: auto;
}

.logo-text {
    fill: var(--text-color);
    font-size: 24px;
    font-weight: bold;
    font-style: italic;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
}

.main-nav a:not(.btn)::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--accent-lime), var(--accent-teal));
    transition: width 0.3s ease;
}

.main-nav a:not(.btn):hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(58, 31, 93, 0.8), rgba(58, 31, 93, 0.9)), url('./img/faaGWy.jpg') center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, var(--overlay-color), transparent 70%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero h1 span {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 10px;
    color: var(--accent-lime);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    justify-content: center;
}

/* About Section */
.about {
    background-color: rgba(58, 31, 93, 0.95);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    text-align: center;
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    position: relative;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--accent-lime) 0%, transparent);
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.about-image:hover::after {
    opacity: 0.5;
}

/* Why Us Section */
.why-us {
    background: linear-gradient(rgba(58, 31, 93, 0.92), rgba(58, 31, 93, 0.98)), url('./img/bxyx4R.jpg') center/cover fixed no-repeat;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}

.feature-card {
    background: rgba(106, 27, 154, 0.2);
    padding: 30px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border-top: 4px solid var(--accent-lime);
    border-bottom: none;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-top-color: var(--accent-teal);
}

.feature-card h3 {
    color: var(--accent-teal);
    text-align: center;
}

/* Recipes Section */
.recipes {
    background-color: rgba(58, 31, 93, 0.98);
}

.recipes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.recipe-card {
    background: rgba(106, 27, 154, 0.15);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.recipe-card:hover {
    transform: translateY(-10px);
}

.recipe-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.recipe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.recipe-card:hover .recipe-image img {
    transform: scale(1.05);
}

.recipe-content {
    padding: 25px;
    text-align: center;
}

.recipe-price {
    font-size: 28px;
    font-weight: bold;
    color: var(--accent-lime);
    margin: 15px 0;
    background-color: var(--price-bg);
    display: inline-block;
    padding: 8px 20px;
    border-radius: 5px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Pricing Section */
.pricing {
    background: linear-gradient(rgba(58, 31, 93, 0.95), rgba(58, 31, 93, 0.9)), url('./img/c3QPVz.jpg') center/cover fixed no-repeat;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: rgba(106, 27, 154, 0.15);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.pricing-card.featured {
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    transform: translateY(-20px);
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--accent-lime), var(--accent-teal));
    z-index: -1;
    border-radius: 14px;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.pricing-price {
    font-size: 48px;
    font-weight: bold;
    margin: 20px 0;
    color: var(--accent-teal);
    background-color: var(--price-bg);
    display: inline-block;
    padding: 8px 20px;
    border-radius: 5px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.pricing-features {
    margin: 30px 0;
    list-style: none;
}

.pricing-features li {
    margin: 15px 0;
    position: relative;
}

/* FAQ Section */
.faq {
    background-color: rgba(58, 31, 93, 0.98);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    background-color: rgba(106, 27, 154, 0.3);
    padding: 20px 25px;
    cursor: pointer;
    position: relative;
    font-weight: 600;
    transition: background-color 0.3s ease;
    text-align: center;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--accent-teal);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    background-color: rgba(106, 27, 154, 0.15);
    transition: max-height 0.3s ease, padding 0.3s ease;
    text-align: center;
}

.faq-item:target .faq-answer {
    padding: 25px;
    max-height: 500px;
}

.faq-item:target .faq-question {
    background-color: rgba(106, 27, 154, 0.5);
}

.faq-item:target .faq-question::after {
    content: '−';
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(rgba(58, 31, 93, 0.98), rgba(58, 31, 93, 0.95));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(106, 27, 154, 0.15);
    border-radius: 8px;
    padding: 30px;
    position: relative;
}

.testimonial-content {
    position: relative;
    padding-left: 0;
    padding-top: 30px;
    text-align: center;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 60px;
    line-height: 1;
    font-family: Georgia, serif;
    color: var(--accent-lime);
    opacity: 0.6;
}

.testimonial-author {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.author-info h4 {
    margin: 0;
    font-size: 18px;
}

.author-info p {
    margin: 5px 0 0;
    color: var(--accent-teal);
    font-size: 14px;
}

/* Contact Form Section */
.contact {
    background: linear-gradient(rgba(58, 31, 93, 0.9), rgba(58, 31, 93, 0.95)), url('./img/86Fu2Q.jpg') center/cover fixed no-repeat;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(106, 27, 154, 0.15);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    text-align: center;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 4px;
    color: var(--text-color);
    font-size: 16px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(29, 233, 182, 0.3);
    outline: none;
}

.form-control::placeholder {
    color: rgba(255, 255, 240, 0.7);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    margin: 15px 0;
}

.checkbox-group input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 3px;
}

.checkbox-group input[type="checkbox"]:checked::before {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--accent-lime);
    font-weight: bold;
}

.checkbox-group label {
    font-size: 14px;
    user-select: none;
}

/* Footer Styles */
.site-footer {
    background: rgba(58, 31, 93, 0.98);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    text-align: center;
}

.footer-links ul {
    list-style: none;
    text-align: center;
}

.footer-links li {
    margin-bottom: 12px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: rgba(255, 255, 240, 0.7);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: rgba(106, 27, 154, 0.9);
    padding: 20px;
    border-radius: 8px;
    z-index: 1000;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.25);
    max-width: 800px;
    margin: 0 auto;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cookie-content form {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .main-nav {
        display: none;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    .hero {
        min-height: 60vh;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .testimonials-grid,
    .pricing-grid,
    .recipes-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: translateY(0);
    }
}

/* CSS Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Form styles - fixing select element */
select.form-control {
    color: var(--text-color);
    background-color: rgba(255, 255, 255, 0.1);
}

select.form-control option {
    background-color: var(--bg-color);
    color: var(--text-color);
}

/* Thank you page */
.text-center {
    text-align: center;
}

.thank-you-page .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-page .hero-buttons {
    justify-content: center;
}

/* Policy pages */
.policy-content {
    text-align: center;
}

.policy-content ul {
    display: inline-block;
    text-align: left;
    margin: 0 auto;
} 