/*
Theme Name: Rhema Therapy Hub
Theme URI: https://rhematherapyhub.com
Author: Your Name
Author URI: https://rhematherapyhub.com
Description: A clean theme for Rhema Therapy Hub
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rhema-therapy-hub
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title {
    font-size: 28px;
    font-weight: bold;
    color: #5B3D9D;
}

.site-title a {
    color: #5B3D9D;
    text-decoration: none;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
}

.appointment-btn {
    background: linear-gradient(135deg, #5B3D9D 0%, #7B5FB8 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s;
}

.appointment-btn:hover {
    transform: translateY(-2px);
}

/* Navigation Styles */
nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #5B3D9D;
}

/* Dropdown Menu */
.menu-item-has-children {
    position: relative;
}

.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 200px;
    padding: 10px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    flex-direction: column;
    gap: 0;
    z-index: 1000;
}

.menu-item-has-children:hover .sub-menu {
    display: flex;
}

.sub-menu li {
    padding: 10px 20px;
}

.sub-menu a {
    display: block;
}

/* Service Page Hero */
.service-hero {
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 60px;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
}

.hero-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.hero-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 15px;
}

.breadcrumb {
    font-size: 14px;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
}

/* Service Layout */
.service-layout {
    display: flex;
    gap: 40px;
}

.service-sidebar {
    flex: 0 0 350px;
}

.service-content {
    flex: 1;
}

/* Service List Sidebar */
.service-list-box {
    background: white;
    border-radius: 8px;
    padding: 30px 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.service-list-title {
    font-size: 20px;
    margin-bottom: 20px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-list-title::before {
    content: '\2726';
    color: #FDB755;
}

.service-list {
    list-style: none;
}

.service-list li {
    margin-bottom: 8px;
}

.service-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: #f8f8f8;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
}

.service-list a:hover,
.service-list a.active {
    background: #FDB755;
    color: white;
    transform: translateX(5px);
}

.service-list a::after {
    content: '\2192';
    font-size: 18px;
}

/* Newsletter Box */
.newsletter-box {
    background: linear-gradient(135deg, #5B3D9D 0%, #8B6BC7 100%);
    border-radius: 8px;
    padding: 40px 30px;
    margin-top: 30px;
    text-align: center;
    color: white;
}

.newsletter-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: white;
}

.newsletter-box p {
    font-size: 14px;
    margin-bottom: 20px;
}

.newsletter-btn {
    background: #FDB755;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: transform 0.3s;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
}

/* Service Content Sections */
.content-section {
    background: white;
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.content-section h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
}

.content-section p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.content-with-image {
    display: flex;
    gap: 40px;
    align-items: center;
}

.content-text {
    flex: 1;
}

.content-image {
    flex: 0 0 45%;
}

.content-image img {
    width: 100%;
    border-radius: 8px;
}

/* Feature Lists */
.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
}

.feature-item::before {
    content: '\2713';
    color: #FDB755;
    font-weight: bold;
    font-size: 18px;
}

/* Steps Section */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.step-card {
    position: relative;
    text-align: center;
}

.step-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.step-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.step-number {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 50px;
    height: 50px;
    background: #FDB755;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 20px;
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.step-card p {
    color: #666;
    font-size: 14px;
}

/* FAQ Section */
.faq-section {
    background: white;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #333;
}

.faq-intro {
    color: #666;
    margin-bottom: 30px;
}

.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #333;
    transition: all 0.3s;
}

.faq-question:hover {
    background: #f8f8f8;
}

.faq-item.active .faq-question {
    background: #FDB755;
    color: white;
}

.faq-toggle {
    font-size: 20px;
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 20px 20px;
    color: #666;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Company Profile Box */
.profile-box {
    background: white;
    border-radius: 8px;
    padding: 30px 20px;
    margin-top: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.profile-title {
    font-size: 20px;
    margin-bottom: 20px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-title::before {
    content: '\2726';
    color: #FDB755;
}

.download-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: #f8f8f8;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
    margin-bottom: 15px;
    transition: all 0.3s;
}

.download-btn:hover {
    background: #5B3D9D;
    color: white;
}

.download-btn.yellow {
    background: #FDB755;
    color: white;
}

.download-btn.yellow:hover {
    background: #F5A732;
}

/* Blog Styles */
.content-area {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.blog-post {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
}

.blog-post:last-child {
    border-bottom: none;
}

.blog-post h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.blog-post h2 a {
    color: #333;
    text-decoration: none;
}

.blog-post h2 a:hover {
    color: #5B3D9D;
}

.post-meta {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.post-content {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.read-more {
    display: inline-block;
    background: #5B3D9D;
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
}

.read-more:hover {
    background: #7B5FB8;
}

.post-thumbnail {
    margin-bottom: 20px;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.post-navigation a {
    color: #5B3D9D;
    text-decoration: none;
}

.post-navigation a:hover {
    text-decoration: underline;
}

/* Pagination */
.pagination {
    margin-top: 40px;
    text-align: center;
}

.pagination a,
.pagination span {
    padding: 8px 15px;
    margin: 0 5px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
}

.pagination a:hover {
    background: #5B3D9D;
    color: white;
    border-color: #5B3D9D;
}

.pagination .current {
    background: #5B3D9D;
    color: white;
    border-color: #5B3D9D;
}

/* Footer Styles */
footer {
    background-color: #2c2c2c;
    color: white;
    padding: 50px 0 30px;
    margin-top: 80px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-quote {
    font-size: 24px;
    font-style: italic;
    max-width: 500px;
}

/* Main Content */
main {
    padding: 40px 0;
    min-height: 60vh;
}

/* Responsive Design */
@media (max-width: 968px) {
    .service-layout {
        flex-direction: column;
    }
    
    .service-sidebar {
        flex: 1;
    }
    
    .content-with-image {
        flex-direction: column;
    }
    
    .content-image {
        flex: 1;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .site-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .header-right {
        flex-direction: column;
        width: 100%;
    }
    
    nav ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .service-hero {
        height: 300px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-quote {
        font-size: 20px;
    }
}