/* =========================================================
   SPIRITUAL GUIDERS & PROFILE PAGES STYLES
   Amora Eternal Light
========================================================= */

/* Hero Banner */
.guiders-hero {
    background: linear-gradient(135deg, var(--primary-soft, #fef9ef) 0%, #ffffff 100%);
    padding: 5rem 0 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.guiders-hero .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-dark, #2c2523);
    margin-bottom: 0.75rem;
}

.guiders-hero .hero-subtitle {
    font-size: 1.2rem;
    color: var(--primary-color, #c8a261);
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto 1.5rem;
}

/* Guider Card in Directory */
.guider-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(200, 162, 97, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.guider-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(200, 162, 97, 0.15);
    border-color: var(--primary-color, #c8a261);
}

.guider-card-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 340px;
    background-color: var(--primary-soft, #fef9ef);
}

.guider-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 0.6s ease;
}

.guider-card:hover .guider-card-img {
    transform: scale(1.05);
}

.guider-card-body {
    padding: 2rem;
}

.guider-role-badge {
    display: inline-block;
    background: var(--primary-soft, #fef9ef);
    color: #8b6b23;
    font-size: 0.825rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    border: 1px solid rgba(200, 162, 97, 0.3);
    margin-bottom: 0.75rem;
}

.guider-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark, #2c2523);
    margin-bottom: 0.5rem;
}

.guider-tagline {
    font-size: 0.95rem;
    color: var(--text-medium, #665a55);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.guider-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
}

.guider-badge-item {
    font-size: 0.78rem;
    background: #f8f6f0;
    color: #554a45;
    padding: 0.25rem 0.65rem;
    border-radius: 6px;
    font-weight: 500;
}

/* Guider Single Profile Page */
.guider-profile-header {
    background: linear-gradient(135deg, rgba(254, 249, 239, 0.6) 0%, #ffffff 100%);
    padding: 3rem 0;
    border-bottom: 1px solid rgba(200, 162, 97, 0.15);
}

.guider-profile-avatar {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ffffff;
    box-shadow: 0 12px 32px rgba(200, 162, 97, 0.25);
}

/* Handwritten signature styling */
.handwritten-signature {
    font-family: 'Allura', cursive;
    font-size: 2.75rem;
    color: #8b6b23;
    line-height: 1;
}

/* Responsive Breakpoints & Adaptations */
@media (min-width: 1200px) {
    .guiders-hero {
        padding: 5.5rem 0 3.5rem;
    }
    .guider-profile-avatar {
        width: 240px;
        height: 240px;
    }
}

@media (max-width: 1199px) and (min-width: 992px) {
    .guiders-hero .hero-title {
        font-size: 2.4rem;
    }
    .guider-card-img-wrapper {
        height: 310px;
    }
    .guider-profile-avatar {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .guiders-hero {
        padding: 4rem 0 2.5rem;
    }
    .guiders-hero .hero-title {
        font-size: 2.2rem;
    }
    .guiders-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    .guider-card-img-wrapper {
        height: 290px;
    }
    .guider-card-body {
        padding: 1.5rem;
    }
    .guider-profile-avatar {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 767px) {
    .guiders-hero {
        padding: 3rem 1rem 2rem;
    }
    .guiders-hero .hero-title {
        font-size: 1.85rem;
    }
    .guiders-hero .hero-subtitle {
        font-size: 1rem;
    }
    .guider-card-img-wrapper {
        height: 260px;
    }
    .guider-card-body {
        padding: 1.25rem;
    }
    .guider-profile-avatar {
        width: 160px;
        height: 160px;
        margin: 0 auto 1rem;
    }
    .handwritten-signature {
        font-size: 2.2rem;
    }
    .guider-badges {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .guiders-hero {
        padding: 2.5rem 0.75rem 1.5rem;
    }
    .guiders-hero .hero-title {
        font-size: 1.6rem;
    }
    .guider-name {
        font-size: 1.5rem;
    }
    .guider-card-img-wrapper {
        height: 230px;
    }
    .guider-badge-item {
        font-size: 0.73rem;
        padding: 0.2rem 0.5rem;
    }
    .guider-profile-avatar {
        width: 140px;
        height: 140px;
    }
    .handwritten-signature {
        font-size: 1.85rem;
    }
}
