/* 
 * Dowiya-Woxovo - Main Stylesheet
 * Color palette:
 * - Background: #FCFDFD
 * - Accent: #5440D4
 * - Contrast: #0ACF83
 * - Text: #111111, #666
 */

/* Reset and Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #111111;
    background-color: #FCFDFD;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: #5440D4;
    transition: all 0.3s ease;
}

a:hover {
    color: #0ACF83;
}

ul, ol {
    list-style-type: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

@media (max-width: 768px) {
    section {
        padding: 50px 0;
    }
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 700;
    color: #111111;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
}

h3 {
    font-size: 24px;
}

p {
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 36px;
    }
    
    h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    h3 {
        font-size: 20px;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(90deg, #0ACF83 0%, #5440D4 100%);
    color: #FCFDFD;
    box-shadow: 0 4px 15px rgba(10, 207, 131, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(90deg, #5440D4 0%, #0ACF83 100%);
    color: #FCFDFD;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 207, 131, 0.3);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 14px;
}

.btn-order {
    background-color: #FCFDFD;
    color: #5440D4;
    border: 2px solid #5440D4;
    padding: 10px 25px;
}

.btn-order:hover {
    background-color: #5440D4;
    color: #FCFDFD;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(84, 64, 212, 0.2);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #FCFDFD;
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 150px;
}

.logo svg {
    width: 100%;
    height: auto;
}

.main-nav {
    display: flex;
    align-items: center;
}

.menu-toggle {
    display: none;
}

.menu-button {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
}

.bar {
    height: 3px;
    width: 100%;
    background-color: #111111;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu li {
    margin-left: 25px;
}

.nav-menu a {
    color: #111111;
    font-weight: 500;
    position: relative;
}

.nav-menu a:hover {
    color: #5440D4;
}

.nav-menu a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #5440D4;
    transition: width 0.3s ease;
}

.nav-menu a:not(.btn):hover::after {
    width: 100%;
}

@media (max-width: 992px) {
    .menu-toggle {
        display: none;
    }
    
    .menu-button {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #FCFDFD;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .menu-toggle:checked ~ .nav-menu {
        max-height: 500px;
    }
    
    .menu-toggle:checked + .menu-button .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .menu-toggle:checked + .menu-button .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle:checked + .menu-button .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #5440D4;
    color: #FCFDFD;
    padding: 15px 0;
    z-index: 999;
}

.cookie-banner .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-banner p {
    margin-right: 20px;
    margin-bottom: 0;
}

.cookie-banner a {
    color: #0ACF83;
    font-weight: 700;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .cookie-banner .container {
        flex-direction: column;
    }
    
    .cookie-banner p {
        margin-right: 0;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .cookie-banner form {
        width: 100%;
        text-align: center;
    }
}

/* Hero Section */
.hero {
    padding-top: 150px;
    padding-bottom: 80px;
    background-color: #FCFDFD;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    padding-right: 40px;
}

.hero-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(84, 64, 212, 0.2);
}

@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
}

/* About Section */
.about {
    background-color: #f9f9f9;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Recipes Section */
.recipe-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.recipe-card {
    background-color: #FCFDFD;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recipe-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(84, 64, 212, 0.2);
}

.recipe-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.recipe-card h3, .recipe-card p, .recipe-card .price {
    padding: 0 20px;
}

.recipe-card h3 {
    margin-top: 20px;
}

.recipe-card .price {
    font-size: 24px;
    font-weight: 700;
    color: #5440D4;
    margin: 15px 0;
}

.recipe-card .btn {
    margin: 0 20px 20px;
}

@media (max-width: 992px) {
    .recipe-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .recipe-cards {
        grid-template-columns: 1fr;
    }
}

/* How It Works Section */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step {
    text-align: center;
    padding: 30px;
    background-color: #FCFDFD;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
}

.step-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(90deg, #0ACF83 0%, #5440D4 100%);
    color: #FCFDFD;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

@media (max-width: 992px) {
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .steps {
        grid-template-columns: 1fr;
    }
}

/* Testimonials Section */
.testimonials {
    background-color: #f9f9f9;
}

.testimonial-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 20px;
    padding-bottom: 30px;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

.testimonial {
    flex: 0 0 100%;
    scroll-snap-align: start;
}

@media (min-width: 768px) {
    .testimonial {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (min-width: 992px) {
    .testimonial {
        flex: 0 0 calc(33.333% - 14px);
    }
}

.testimonial-content {
    background-color: #FCFDFD;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-content::before {
    content: """;
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 60px;
    color: #5440D4;
    opacity: 0.2;
    line-height: 1;
}

.testimonial-content p {
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 700;
    color: #5440D4;
}

/* Why Us Section */
.benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit {
    text-align: center;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 15px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.benefit:hover {
    transform: translateY(-5px);
    background-color: #FCFDFD;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
    .benefits {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .benefits {
        grid-template-columns: 1fr;
    }
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-item input {
    display: none;
}

.faq-item label {
    display: block;
    padding: 20px;
    background-color: #FCFDFD;
    color: #111111;
    font-weight: 700;
    cursor: pointer;
    position: relative;
}

.faq-item label::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #5440D4;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background-color: #FCFDFD;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 20px 20px;
}

.faq-item input:checked ~ .faq-answer {
    max-height: 200px;
}

.faq-item input:checked ~ label::after {
    transform: translateY(-50%) rotate(45deg);
}

/* Order Form Section */
.order {
    background-color: #f9f9f9;
}

.order-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #FCFDFD;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #5440D4;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
}

.form-group button {
    width: 100%;
}

/* Thank You Page */
.thank-you {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #FCFDFD;
}

.thank-you-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 50px 30px;
    background-color: #FCFDFD;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.thank-you-icon {
    margin: 0 auto 30px;
    width: 100px;
    height: 100px;
    animation: fadeIn 1s ease-in-out;
}

.thank-you h1 {
    color: #5440D4;
    margin-bottom: 20px;
    font-size: 36px;
}

.thank-you .large-text {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.thank-you .contact-info {
    margin: 30px 0;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 10px;
}

.thank-you .btn {
    margin-top: 20px;
}

@keyframes fadeIn {
    0% { opacity: 0; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
}

@media (max-width: 576px) {
    .thank-you-content {
        padding: 30px 20px;
    }
    
    .thank-you h1 {
        font-size: 28px;
    }
    
    .thank-you .large-text {
        font-size: 18px;
    }
}

/* Footer */
.site-footer {
    background-color: #5440D4;
    color: #FCFDFD;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

.footer-logo svg {
    margin-bottom: 20px;
}

.company-description {
    margin-bottom: 20px;
    max-width: 400px;
}

.footer-contact h3,
.footer-links h3 {
    color: #FCFDFD;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-contact h3::after,
.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #0ACF83;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #FCFDFD;
}

.footer-links a:hover {
    color: #0ACF83;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-logo {
        grid-column: span 2;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-logo {
        grid-column: span 1;
    }
}

/* Policy Pages */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 150px;
    padding-bottom: 50px;
}

.policy-content h1 {
    margin-bottom: 30px;
}

.policy-content h2 {
    font-size: 24px;
    text-align: left;
    margin-top: 40px;
    margin-bottom: 20px;
}

.policy-content p {
    margin-bottom: 20px;
}

.policy-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.policy-content ul li {
    margin-bottom: 10px;
    list-style-type: disc;
} 