/* 
   Project: Pilates Bienestar v2 
   Style: Wellness / Minimalist
   Author: Design Team Green
*/

:root {
    --primary-color: #8BA888;
    --secondary-color: #2D3A3A;
    --accent-color: #D4A373;
    --bg-light: #F5F2ED;
    --bg-white: #FFFFFF;
    --text-main: #333333;
    --text-muted: #666666;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: var(--secondary-color);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hidden {
    display: none !important;
}

/* Header & Nav */
.site-header {
    background-color: var(--bg-white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

/* Hero Section */
.hero-box {
    padding: 100px 0;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-muted);
}

.hero-img {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 20px 20px 0px var(--primary-color);
}

.btn-main {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-main:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Section Common */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

/* About Section */
.about-wrap {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-content {
    flex: 1;
}

.about-media {
    flex: 1;
}

/* Cards Grid */
.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card-item {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid #eee;
    transition: var(--transition);
}

.card-item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-color: var(--primary-color);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-q {
    background: var(--bg-light);
    margin-bottom: 15px;
    border-radius: var(--border-radius);
}

.faq-trigger {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    display: block;
}

.faq-a {
    padding: 0 20px 20px;
    color: var(--text-muted);
}

/* Testimonials */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.testi-card {
    background: var(--bg-white);
    padding: 30px;
    border-left: 5px solid var(--primary-color);
    font-style: italic;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.03);
}

.testi-author {
    margin-top: 20px;
    font-weight: 700;
    font-style: normal;
    font-family: 'Playfair Display', serif;
}

/* Footer */
.main-footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 60px 0 20px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #aaa;
}

.medical-disclaimer {
    font-size: 0.8rem;
    margin-top: 20px;
    line-height: 1.4;
    color: #888;
}

/* GDPR Banner */
#gdpr-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    left: 20px;
    background: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    padding: 20px;
    z-index: 9999;
    border-radius: var(--border-radius);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    border-top: 4px solid var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 20px;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
    }
    
    .nav-menu.is-visible {
        display: flex;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .hero-box {
        flex-direction: column;
        text-align: center;
        padding: 60px 0;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .about-wrap {
        flex-direction: column-reverse;
    }
    
    #gdpr-banner {
        flex-direction: column;
        text-align: center;
    }
}
