/* 
   Echilibru Zen - Main Stylesheet
   This CSS uses flexbox and grid for modern responsive layout
   Primary colors: 
   - Main background: #d3b5e5 (neonic lavender)
   - Accents: #ccff00 (electric lime), #2a2a2a (graphite gray)
   - Headings: #ffc9a9 (peach)
   - Text: #444444 (soft anthracite)
*/

/* Base Styles and Reset */
*, *:before, *:after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #444444;
    background-color: #d3b5e5;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Arial', sans-serif;
    color: #ffc9a9;
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #2a2a2a;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #ccff00;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

/* Layout & Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #ccff00;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(42, 42, 42, 0.95);
    color: #fff;
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    margin-bottom: 0;
    flex: 1;
}

.cookie-content a {
    color: #ccff00;
    text-decoration: underline;
}

.cookie-accept {
    background-color: #ccff00;
    color: #2a2a2a;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept:hover {
    background-color: #b8e600;
}

/* Header & Navigation */
.site-header {
    background-color: #2a2a2a;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: block;
}

.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    gap: 1.5rem;
}

.nav-list a {
    color: #d3b5e5;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-list a:hover {
    color: #ccff00;
}

.nav-list a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ccff00;
    transition: width 0.3s ease;
}

.nav-list a:hover:after {
    width: 100%;
}

.header-cta-button {
    background-color: #ccff00;
    color: #2a2a2a;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
}

.header-cta-button:hover {
    background-color: #b8e600;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #d3b5e5;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(to bottom, rgba(42, 42, 42, 0.7), rgba(42, 42, 42, 0.7)), url('../img/v4yoEq.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 8rem 0;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #ccff00;
}

.hero-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #ffc9a9;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #fff;
}

.cta-button {
    background-color: #ccff00;
    color: #2a2a2a;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button:hover {
    background-color: #b8e600;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* About Section */
.about-section {
    background-color: #fff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Classes Section */
.classes-section {
    background-color: #f7f1fc;
}

.classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.class-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.class-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.class-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.class-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: #2a2a2a;
}

.class-card p {
    padding: 0 1.5rem;
    color: #666;
}

.price {
    padding: 0.5rem 1.5rem;
    font-weight: bold;
    font-size: 1.2rem;
    color: #2a2a2a;
}

.class-cta {
    display: block;
    background-color: #ccff00;
    color: #2a2a2a;
    text-align: center;
    padding: 1rem;
    font-weight: bold;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.class-cta:hover {
    background-color: #b8e600;
}

/* Benefits Section */
.benefits-section {
    background-color: #2a2a2a;
}

.benefits-section .section-title {
    color: #ffc9a9;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    color: #ccff00;
    margin-bottom: 1rem;
}

.benefit-item p {
    color: #ddd;
}

/* Schedule Section */
.schedule-section {
    background-color: #fff;
}

.schedule-container {
    overflow-x: auto;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.schedule-table th, .schedule-table td {
    padding: 1rem;
    text-align: center;
    border: 1px solid #ddd;
}

.schedule-table th {
    background-color: #2a2a2a;
    color: #ccff00;
    font-weight: bold;
}

.schedule-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.schedule-table tr:hover {
    background-color: #f1f1f1;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #f7f1fc;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-card:before {
    content: '"';
    font-size: 5rem;
    color: rgba(204, 255, 0, 0.2);
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-author {
    margin-top: 1rem;
    text-align: right;
}

/* FAQ Section */
.faq-section {
    background-color: #2a2a2a;
}

.faq-section .section-title {
    color: #ffc9a9;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
}

.faq-question {
    color: #ccff00;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
    transition: all 0.3s ease;
}

.faq-answer {
    margin-top: 1rem;
    color: #ddd;
}

/* Contact Section */
.contact-section {
    background-color: #fff;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h3, .contact-form h3 {
    color: #2a2a2a;
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-hours {
    margin-top: 2rem;
}

.contact-hours h4 {
    color: #2a2a2a;
    margin-bottom: 0.5rem;
}

.contact-form {
    background-color: #f7f1fc;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2a2a2a;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: #ccff00;
    box-shadow: 0 0 0 2px rgba(204, 255, 0, 0.2);
}

.form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.form-check input {
    margin-right: 10px;
    margin-top: 5px;
}

.form-check label {
    font-size: 0.9rem;
    line-height: 1.4;
}

.submit-button {
    background-color: #ccff00;
    color: #2a2a2a;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background-color: #b8e600;
}

/* Footer */
.site-footer {
    background-color: #2a2a2a;
    color: #ddd;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-info, .footer-contact, .footer-links, .footer-legal {
    line-height: 1.7;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-description {
    color: #bbb;
}

.footer-contact a, .footer-links a, .footer-legal a {
    color: #ccff00;
}

.footer-contact a:hover, .footer-links a:hover, .footer-legal a:hover {
    color: #d3b5e5;
}

.footer-contact h3, .footer-links h3, .footer-legal h3 {
    color: #ffc9a9;
    margin-bottom: 1rem;
}

.footer-links ul, .footer-legal ul {
    list-style: none;
    margin-left: 0;
}

.footer-links li, .footer-legal li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: #bbb;
    font-size: 0.9rem;
}

/* Thank You Page */
.thank-you-section {
    background-color: #f7f1fc;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thank-you-content {
    text-align: center;
    background-color: #fff;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    margin: 0 auto;
}

.success-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: #ccff00;
    color: #2a2a2a;
    font-size: 3rem;
    border-radius: 50%;
    margin: 1.5rem auto;
}

.back-button {
    display: inline-block;
    background-color: #2a2a2a;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 500;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.back-button:hover {
    background-color: #ccff00;
    color: #2a2a2a;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Policy Pages */
.policy-section {
    background-color: #f7f1fc;
    padding: 5rem 0;
}

.policy-section h1 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2a2a2a;
}

.policy-content {
    background-color: #fff;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.policy-content h2 {
    color: #2a2a2a;
    margin-top: 2rem;
}

.policy-content p, .policy-content ul, .policy-content ol {
    color: #444;
}

.back-to-home {
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 992px) {
    html {
        font-size: 15px;
    }
    
    .about-content, .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .site-header {
        padding: 0.5rem 0;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(42, 42, 42, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateY(-100%);
        transition: transform 0.4s ease;
        z-index: 90;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .nav-list a {
        font-size: 1.5rem;
    }
    
    .menu-toggle {
        display: block;
        z-index: 100;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    section {
        padding: 3rem 0;
    }
    
    .hero-content h1 {
        font-size: 2.3rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .hero-section {
        padding: 6rem 0;
    }
    
    .policy-content {
        padding: 2rem;
    }
} 