/* ==========================================
   About Page Styles
   Extracted from o-nas.html inline styles
   ========================================== */

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

/* Hero Section */
.about-hero {
    position: relative;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 60px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.about-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(23, 162, 184, 0.9) 0%, rgba(23, 162, 184, 0.3) 100%);
    display: flex;
    align-items: flex-end;
    padding: 40px;
}

.about-hero h1 {
    color: white;
    font-size: 48px;
    font-family: 'Lora', serif;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Mission Section */
.mission-section {
    background: white;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin-bottom: 60px;
}

.mission-section h2 {
    color: #17A2B8;
    font-size: 36px;
    font-family: 'Lora', serif;
    margin: 0 0 30px 0;
    text-align: center;
}

.mission-section h3 {
    color: #2C3E50;
    font-size: 28px;
    font-family: 'Lora', serif;
    margin: 40px 0 20px 0;
}

.mission-section p {
    color: #555;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.lotus-symbol {
    text-align: center;
    font-size: 80px;
    margin: 40px 0;
    opacity: 0.3;
}

/* Highlight Box */
.highlight-text {
    background: linear-gradient(135deg, #E8F5F7 0%, #FFF5F3 100%);
    padding: 30px;
    border-left: 5px solid #17A2B8;
    border-radius: 8px;
    margin: 40px 0;
}

.highlight-text p {
    font-size: 20px;
    font-style: italic;
    color: #2C3E50;
    margin: 0;
    line-height: 1.6;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.value-card h3 {
    color: #17A2B8;
    font-size: 24px;
    font-family: 'Lora', serif;
    margin: 0 0 15px 0;
}

.value-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Therapist Section */
.therapist-section {
    background: linear-gradient(135deg, #E8F5F7 0%, #FFF5F3 100%);
    padding: 60px 40px;
    border-radius: 12px;
    margin-bottom: 60px;
}

.therapist-section h2 {
    color: #2C3E50;
    font-size: 32px;
    font-family: 'Lora', serif;
    margin: 0 0 30px 0;
    text-align: center;
}

.therapist-section p {
    color: #555;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Section */
.about-container .cta-section {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #17A2B8 0%, #138496 100%);
    border-radius: 12px;
    color: white;
    margin-bottom: 40px;
}

.about-container .cta-section h2 {
    color: white;
    font-size: 36px;
    font-family: 'Lora', serif;
    margin: 0 0 20px 0;
}

.about-container .cta-section p {
    color: white;
    font-size: 18px;
    margin: 0 0 30px 0;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #17A2B8;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #F8F9FA;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* ==========================================
   About Page Responsive Styles
   ========================================== */

@media (max-width: 768px) {
    .about-hero {
        height: 300px;
    }

    .about-hero h1 {
        font-size: 32px;
    }

    .about-hero-overlay {
        padding: 25px;
    }

    .mission-section {
        padding: 40px 20px;
    }

    .mission-section h2 {
        font-size: 28px;
    }

    .mission-section h3 {
        font-size: 24px;
    }

    .mission-section p,
    .therapist-section p {
        font-size: 16px;
        text-align: left;
    }

    .highlight-text p {
        font-size: 18px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .therapist-section {
        padding: 40px 20px;
    }

    .therapist-section h2 {
        font-size: 26px;
    }

    .about-container .cta-section {
        padding: 40px 20px;
    }

    .about-container .cta-section h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .about-container {
        margin: 20px auto;
        padding: 0 15px;
    }

    .about-hero {
        height: 250px;
        margin-bottom: 40px;
    }

    .about-hero h1 {
        font-size: 28px;
    }

    .lotus-symbol {
        font-size: 60px;
    }

    .value-card {
        padding: 20px;
    }

    .value-icon {
        font-size: 40px;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 16px;
        width: 100%;
    }
}
