/*
Theme Name: Hello Elementor Child
Theme URI: https://yourwebsite.com
Description: Child theme for Hello Elementor.
Author: Your Name
Author URI: https://yourwebsite.com
Template: hello-elementor
Version: 1.0.0
Text Domain: hello-elementor-child
*/

/* Add your custom CSS below */


/* ============================================================================
   THERAPIST FILTER + GRID STYLING
   Matches the "Meet Our Therapists" design: brick-wall photo banner with a
   translucent tan filter box on top, gold serif heading, pill-shaped
   appointment button, and circular-photo therapist cards below.

   Add this file to your theme (e.g. as style-therapists.css) and enqueue it,
   or paste its contents into your theme's main style.css.

   Optional wrapper markup this CSS is designed for (add around the
   shortcode output if you want the heading + banner photo exactly like the
   screenshot):

   <div class="therapist-page-header">
       <h1>Meet Our Therapists</h1>
       <p>Use these tools to simplify your search for a therapist who aligns
          with your unique needs and preferences.</p>
   </div>
   <div class="therapist-banner">
       [therapist_filters]
       <a href="/appointment-request/" class="therapist-appointment-btn">
           Appointment Request Form &rarr;
       </a>
   </div>
   ============================================================================ */

/* -------------------- Fonts -------------------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Jost:wght@400;500&display=swap');

:root {
    --therapist-gold: #a9873f;
    --therapist-gold-dark: #8a6d2f;
    --therapist-tan-overlay: rgba(232, 217, 178, 0.92);
    --therapist-cream: #faf7f1;
    --therapist-brown-text: #8a4b3b;
    --therapist-blue-text: #4a6d8c;
    --therapist-olive: #7c8a4a;
    --therapist-border: #e3d9c4;
    --therapist-font-heading: 'Playfair Display', Georgia, serif;
    --therapist-font-body: 'Jost', 'Segoe UI', sans-serif;
}

/* -------------------- Page Header -------------------- */
.therapist-page-header {
    text-align: center;
    padding: 40px 20px 24px;
    background: #fff;
}

.therapist-page-header h1 {
    font-family: var(--therapist-font-heading);
    font-weight: 700;
    font-size: 42px;
    letter-spacing: 1px;
    color: var(--therapist-gold);
    margin: 0 0 10px;
    text-transform: uppercase;
}

.therapist-page-header p {
    font-family: var(--therapist-font-body);
    font-size: 15px;
    color: #6b6b6b;
    max-width: 640px;
    margin: 0 auto;
}

/* -------------------- Banner (brick-wall photo behind the filters) -------------------- */
.therapist-banner {
    position: relative;
    background-image: url('images/therapist-banner-bg.jpg'); /* swap in your brick-wall / living-room photo */
    background-size: cover;
    background-position: center;
    padding: 60px 20px 70px;
    text-align: center;
}

/* -------------------- Filter Form Box -------------------- */
#therapist-filter-wrap {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--therapist-tan-overlay);
    border: 1px solid rgba(169, 135, 63, 0.3);
    border-radius: 4px;
    padding: 28px 32px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

#therapist-filter-form {
    width: 100%;
}

.therapist-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 20px;
}

.therapist-filter-row:last-child {
    margin-bottom: 0;
}

.therapist-filter-field {
    flex: 1 1 260px;
    text-align: left;
}

.therapist-filter-field label {
    display: block;
    font-family: var(--therapist-font-body);
    font-size: 13px;
    font-weight: 500;
    color: #5a5648;
    margin-bottom: 6px;
}

.therapist-filter-field select {
    width: 100%;
    padding: 10px 14px;
    font-family: var(--therapist-font-body);
    font-size: 14px;
    color: #333;
    background-color: #fff;
    border: 1px solid var(--therapist-border);
    border-radius: 3px;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8'><path d='M1 1l5 5 5-5' stroke='%23a9873f' stroke-width='1.5' fill='none' fill-rule='evenodd'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.therapist-filter-field select:focus {
    outline: none;
    border-color: var(--therapist-gold);
}

/* -------------------- Appointment Request Button -------------------- */
.therapist-appointment-btn {
    display: inline-block;
    margin-top: 36px;
    padding: 14px 34px;
    font-family: var(--therapist-font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--therapist-gold-dark);
    background: #fff;
    border: 1px solid var(--therapist-gold);
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.therapist-appointment-btn:hover {
    background: var(--therapist-gold);
    color: #fff;
}

/* -------------------- Results Grid -------------------- */
#therapist-results-grid {
    max-width: 1200px;
    margin: 50px auto 0;
    padding: 0 20px;
    transition: opacity 0.2s ease;
}

.therapist-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 32px 20px;
}

@media (max-width: 1100px) {
    .therapist-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
    .therapist-grid { grid-template-columns: repeat(2, 1fr); }
    .therapist-filter-row { flex-direction: column; gap: 16px; }
}

/* -------------------- Therapist Card -------------------- */
.therapist-card {
    text-align: center;
}

.therapist-photo {
    width: 130px;
    height: 130px;
    margin: 0 auto 16px;
    border-radius: 50%;
    overflow: hidden;
    background: #e8e3da;
}

.therapist-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.therapist-card h3 {
    font-family: var(--therapist-font-heading);
    font-weight: 600;
    font-size: 19px;
    color: var(--therapist-brown-text);
    margin: 0 0 8px;
}

.therapist-tags {
    font-family: var(--therapist-font-body);
    font-size: 13px;
    line-height: 1.6;
    color: var(--therapist-blue-text);
    margin: 0 0 8px;
}

.therapist-location {
    font-family: var(--therapist-font-body);
    font-size: 13px;
    color: #7a6b5d;
    margin: 0 0 6px;
}

.therapist-location::before {
    content: "\1F4CD "; /* map-pin glyph */
    font-size: 12px;
}

.therapist-status {
    font-family: var(--therapist-font-heading);
    font-style: italic;
    font-size: 13px;
    color: var(--therapist-olive);
    margin: 0;
}

/* ============================================================================
   SINGLE THERAPIST PROFILE PAGE
   Matches single-therapist.php: two-column layout, bio + credentials on the
   left, circular photo + practicing-since + certifications/education/payment
   on the right in a soft cream sidebar panel.
   ============================================================================ */

.therapist-single-wrap {
    max-width: 1100px;
    margin: 50px auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 50px;
    align-items: start;
}

@media (max-width: 800px) {
    .therapist-single-wrap {
        grid-template-columns: 1fr;
    }
}

/* -------- Left column -------- */

.therapist-single-name {
    font-family: var(--therapist-font-heading);
    font-weight: 700;
    font-size: 30px;
    letter-spacing: 0.5px;
    color: var(--therapist-brown-text);
    text-transform: uppercase;
    margin: 0 0 6px;
}

.therapist-single-pronouns {
    font-family: var(--therapist-font-body);
    font-size: 13px;
    color: #888;
    margin: 0 0 14px;
}

.therapist-single-credentials {
    font-family: var(--therapist-font-body);
    font-weight: 600;
    font-size: 14px;
    color: var(--therapist-blue-text);
    margin: 0 0 2px;
}

.therapist-single-title {
    font-family: var(--therapist-font-body);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--therapist-blue-text);
    margin: 0 0 18px;
}

.therapist-single-session-types {
    margin-bottom: 10px;
}

.therapist-session-line {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--therapist-font-body);
    font-size: 13px;
    color: #333;
    margin: 0 0 8px;
}

.therapist-session-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 11px;
}

.therapist-session-icon--in-person {
    background: #f0dede;
}

.therapist-session-icon--video {
    background: #f4ecc9;
}

.therapist-single-status {
    font-family: var(--therapist-font-heading);
    font-style: italic;
    font-size: 13px;
    color: var(--therapist-olive);
    margin: 14px 0 10px;
}

.therapist-single-appointment-link {
    font-family: var(--therapist-font-body);
    font-size: 13px;
    font-weight: 500;
    color: #333;
    text-decoration: underline;
}

.therapist-single-heading {
    font-family: var(--therapist-font-heading);
    font-weight: 600;
    font-size: 17px;
    color: var(--therapist-brown-text);
    margin: 32px 0 10px;
}

.therapist-single-list {
    list-style: none;
    margin: 0 0 6px;
    padding: 0;
    font-family: var(--therapist-font-body);
    font-size: 14px;
    color: var(--therapist-blue-text);
    line-height: 1.8;
}

.therapist-single-list li {
    margin: 0;
}

.therapist-single-bio {
    font-family: var(--therapist-font-body);
    font-size: 15px;
    line-height: 1.75;
    color: #333;
}

.therapist-single-bio p {
    margin: 0 0 18px;
}

/* -------- Right column / sidebar -------- */

.therapist-single-sidebar {
    background: var(--therapist-cream);
    padding: 30px;
    border-radius: 4px;
}

.therapist-single-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    background: #607b7d;
    margin-bottom: 20px;
}

.therapist-single-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.therapist-single-practicing {
    font-family: var(--therapist-font-heading);
    font-weight: 600;
    font-size: 15px;
    color: var(--therapist-brown-text);
    margin: 0 0 22px;
}

.therapist-single-subheading {
    font-family: var(--therapist-font-heading);
    font-weight: 600;
    font-size: 15px;
    color: var(--therapist-gold-dark);
    margin: 0 0 8px;
}

.therapist-single-textblock {
    font-family: var(--therapist-font-body);
    font-size: 13px;
    line-height: 1.6;
    color: #444;
    margin: 0 0 22px;
}

.therapist-single-textblock p {
    margin: 0 0 8px;
}

.therapist-single-list--sidebar {
    color: #444;
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.therapist-single-sidebar a {
    font-family: var(--therapist-font-body);
    font-size: 13px;
    color: var(--therapist-blue-text);
    text-decoration: underline;
}