/* Base Styles */
:root {
    /* Palette */
    --green: #D4EAD6;
    --lavender: #EBDFF2;
    --pink: #FDE4E1;
    --blue: #D6ECF3;
    --cream: #FFF7E8;
    
    /* Functional Colors */
    --text-primary: #333333;
    --text-secondary: #666666;
    --border-color: #EEEEEE;
    --shadow-color: rgba(0, 0, 0, 0.1);
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 8rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Quicksand', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--cream) 0%, var(--blue) 100%);
    background-attachment: fixed;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--text-secondary);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-sm);
}

/* Button Styles */
.cta-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 2rem;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    background-color: #fff;
    color: var(--text-primary);
    box-shadow: 0 4px 6px var(--shadow-color);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 8px var(--shadow-color);
}

.cta-button.primary {
    background-color: var(--green);
    color: var(--text-primary);
}

.cta-button.product {
    background-color: var(--lavender);
    color: var(--text-primary);
    width: 100%;
}

.cta-button.submit {
    background-color: var(--blue);
    color: #fff;
    width: 100%;
}

.cta-button.newsletter {
    background-color: var(--lavender);
    color: var(--text-primary);
}

.cta-button.pricing {
    margin-top: auto;
    width: 100%;
}

/* Section Styles */
section {
    padding: var(--space-lg) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-md);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Header Styles */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 1000;
    padding: var(--space-sm) 0;
    box-shadow: 0 2px 4px var(--shadow-color);
    transition: all 0.3s ease;
}

#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#header.scrolled {
    padding: var(--space-xs) 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
}

nav {
    display: flex;
    align-items: center;
}

.menu {
    display: flex;
    list-style: none;
}

.menu li {
    margin-left: var(--space-md);
}

.menu li a {
    font-weight: 500;
    position: relative;
}

.menu li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--lavender);
    transition: width 0.3s ease;
}

.menu li a:hover:after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    margin: 2px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
#hero {
    padding: var(--space-xl) 0 var(--space-lg);
    margin-top: 60px;
    overflow: hidden;
}

#hero .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    padding-right: var(--space-md);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.hero-content p {
    font-size: 1.4rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    box-shadow: 20px 20px 60px var(--shadow-color);
}

/* About Section */
#about {
    background-color: #fff;
    padding: var(--space-xl) 0;
}

.about-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.about-image {
    flex: 1;
    min-width: 300px;
    padding-right: var(--space-md);
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px var(--shadow-color);
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.about-text p {
    margin-bottom: var(--space-sm);
    color: var(--text-secondary);
}

/* Benefits Section */
#benefits {
    background-color: var(--cream);
    padding: var(--space-xl) 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.benefit-card {
    background-color: #fff;
    border-radius: 20px;
    padding: var(--space-md);
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow-color);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-sm);
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.benefit-card p {
    color: var(--text-secondary);
}

/* What You Need to Know Section */
#need-to-know {
    background-color: #fff;
    padding: var(--space-xl) 0;
}

.knowledge-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.knowledge-card {
    background-color: var(--cream);
    border: 2px solid var(--pink);
    border-radius: 15px;
    padding: var(--space-md);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.knowledge-card:hover {
    box-shadow: 0 10px 30px var(--shadow-color);
    transform: translateY(-5px);
}

.knowledge-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.knowledge-card p {
    color: var(--text-secondary);
}

/* Starter Kit Section */
#starter-kit {
    background-color: var(--lavender);
    padding: var(--space-xl) 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.product-card {
    background-color: #fff;
    border-radius: 15px;
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px var(--shadow-color);
}

.product-image {
    margin-bottom: var(--space-sm);
    border-radius: 10px;
    overflow: hidden;
}

.product-card h3 {
    font-size: 1.3rem;
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
}

.product-card p {
    margin-bottom: var(--space-sm);
    color: var(--text-secondary);
    flex-grow: 1;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

/* Poses Section */
#poses {
    background-color: #fff;
    padding: var(--space-xl) 0;
}

.poses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.pose-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-color);
    transition: transform 0.3s ease;
}

.pose-card:hover {
    transform: translateY(-10px);
}

.pose-image {
    height: 250px;
    overflow: hidden;
}

.pose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.pose-card:hover .pose-image img {
    transform: scale(1.05);
}

.pose-details {
    padding: var(--space-md);
    background-color: #fff;
}

.pose-details h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
}

.pose-details p {
    color: var(--text-secondary);
}

/* Testimonials Section */
#testimonials {
    background-color: var(--pink);
    padding: var(--space-xl) 0;
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 20px;
    padding: var(--space-md);
    box-shadow: 0 10px 30px var(--shadow-color);
    margin: 0 var(--space-md);
}

.testimonial-photo {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--lavender);
    margin-right: var(--space-md);
}

.testimonial-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    flex: 1;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.testimonial-author {
    font-weight: 700;
    color: var(--text-secondary);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: var(--space-md);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #fff;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--lavender);
    transform: scale(1.2);
}

/* FAQ Section */
#faq {
    background-color: var(--blue);
    padding: var(--space-xl) 0;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    border-radius: 15px;
    margin-bottom: var(--space-sm);
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.faq-question {
    padding: var(--space-md);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-primary);
}

.accordion-icon {
    position: relative;
    width: 20px;
    height: 20px;
}

.accordion-icon:before,
.accordion-icon:after {
    content: '';
    position: absolute;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
}

.accordion-icon:before {
    width: 2px;
    height: 20px;
    top: 0;
    left: 9px;
}

.accordion-icon:after {
    width: 20px;
    height: 2px;
    top: 9px;
    left: 0;
}

.faq-item.active .accordion-icon:before {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-answer {
    padding: 0 var(--space-md) var(--space-md);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    color: var(--text-secondary);
}

/* Pricing Section */
#pricing {
    background-color: #fff;
    padding: var(--space-xl) 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.pricing-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-color);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card.free {
    background-color: var(--green);
}

.pricing-card.starter {
    background-color: var(--pink);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.full {
    background-color: var(--lavender);
}

.pricing-header {
    padding: var(--space-md);
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
}

.pricing-header p {
    color: var(--text-secondary);
}

.pricing-features {
    padding: var(--space-md);
    flex-grow: 1;
}

.pricing-features ul {
    list-style: none;
}

.pricing-features li {
    margin-bottom: var(--space-xs);
    padding-left: 25px;
    position: relative;
    color: var(--text-primary);
}

.pricing-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--text-primary);
    font-weight: 700;
}

.pricing-card .cta-button {
    margin: 0;
    border-radius: 0;
    padding: var(--space-sm) 0;
}

.pricing-card.free .cta-button {
    background-color: #fff;
    color: var(--text-primary);
}

.pricing-card.starter .cta-button {
    background-color: #fff;
    color: var(--text-primary);
}

.pricing-card.full .cta-button {
    background-color: #fff;
    color: var(--text-primary);
}

/* Contact Section */
#contact {
    background-color: var(--cream);
    padding: var(--space-xl) 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.contact-form {
    background-color: #fff;
    border-radius: 20px;
    padding: var(--space-md);
    box-shadow: 0 10px 30px var(--shadow-color);
}

.form-group {
    margin-bottom: var(--space-sm);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 2px rgba(214, 236, 243, 0.5);
}

.contact-map {
    display: flex;
    flex-direction: column;
}

#google-map {
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-color);
    margin-bottom: var(--space-sm);
}

.contact-info {
    background-color: #fff;
    border-radius: 20px;
    padding: var(--space-md);
    box-shadow: 0 10px 30px var(--shadow-color);
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.contact-info p {
    margin-bottom: var(--space-sm);
    color: var(--text-secondary);
}

/* Footer Styles */
footer {
    background-color: #fff;
    padding: var(--space-lg) 0 var(--space-md);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.footer-logo img {
    height: 50px;
}

.footer-newsletter h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
}

.footer-newsletter p {
    margin-bottom: var(--space-sm);
    color: var(--text-secondary);
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 10px 0 0 10px;
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
}

.newsletter-form .cta-button {
    border-radius: 0 10px 10px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-md);
    border-top: 1px solid var(--border-color);
}

.footer-links a {
    margin-right: var(--space-md);
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeIn {
    animation: fadeIn 0.5s ease forwards;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .benefits-grid,
    .knowledge-cards,
    .products-grid,
    .poses-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card.starter {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    #hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: var(--space-md);
        text-align: center;
    }
    
    .menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: #fff;
        box-shadow: 0 5px 10px var(--shadow-color);
        padding: var(--space-sm) 0;
    }
    
    .menu.active {
        display: flex;
    }
    
    .menu li {
        margin: 0;
        text-align: center;
    }
    
    .menu li a {
        display: block;
        padding: var(--space-xs) 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .about-content,
    .testimonial,
    .contact-container,
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .about-image,
    .about-text {
        padding: 0;
        margin-bottom: var(--space-md);
    }
    
    .testimonial {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-photo {
        margin: 0 auto var(--space-sm);
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .benefits-grid,
    .knowledge-cards,
    .products-grid,
    .poses-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
    }
    
    .footer-links {
        margin-bottom: var(--space-sm);
    }
    
    .footer-links a {
        display: block;
        margin: var(--space-xs) 0;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: 10px;
        margin-bottom: var(--space-xs);
    }
    
    .newsletter-form .cta-button {
        border-radius: 10px;
        width: 100%;
    }
}