/*
Theme Name: Astra Child
Description: Child theme of Astra theme
Author: PsyCampus
Template: astra
Version: 1.0.0
Text Domain: astra-child
*/

/* ===== PSYCAMPUS CUSTOM STYLES ===== */

/* Typography Improvements */
body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: #333333;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #1a7b8c;
    line-height: 1.3;
}

/* Primary Button Style */
.psycampus-btn-primary {
    background-color: #d63031;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.psycampus-btn-primary:hover {
    background-color: #b92a2b;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Secondary Button Style */
.psycampus-btn-secondary {
    background-color: #e6b800;
    color: #1a7b8c;
    padding: 15px 30px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.psycampus-btn-secondary:hover {
    background-color: #cc9f00;
    color: #1a7b8c;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Category Cards */
.category-card {
    background: #ffffff;
    border: 2px solid #1a7b8c;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(26, 123, 140, 0.15);
    border-color: #d63031;
}

.category-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.category-card ul li {
    padding: 5px 0;
    color: #333333;
    position: relative;
    padding-left: 20px;
}

.category-card ul li:before {
    content: "✓";
    color: #d63031;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.category-card .student-count {
    color: #e6b800;
    font-weight: 600;
    font-size: 14px;
    margin: 15px 0;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 80px 0;
    text-align: center;
}

.hero-title {
    color: #1a7b8c;
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    color: #333333;
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.trust-item {
    display: flex;
    align-items: center;
    color: #333333;
    font-size: 14px;
    margin: 0 15px 10px 15px;
}

.trust-item:before {
    content: "✓";
    color: #d63031;
    font-weight: bold;
    margin-right: 8px;
    font-size: 16px;
}

/* Testimonial Cards */
.testimonial-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    margin-bottom: 30px;
}

.testimonial-quote {
    font-style: italic;
    color: #333333;
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    color: #1a7b8c;
    font-weight: 600;
    font-size: 16px;
}

.testimonial-details {
    color: #d63031;
    font-size: 14px;
    margin-top: 5px;
}

/* Section Backgrounds */
.section-light {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.section-white {
    background-color: #ffffff;
    padding: 60px 0;
}

.section-teal {
    background-color: #1a7b8c;
    padding: 60px 0;
    color: #ffffff;
}

/* Highlight Boxes */
.highlight-box {
    background-color: #e6b800;
    color: #1a7b8c;
    padding: 30px;
    border-radius: 12px;
    margin: 20px 0;
    text-align: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .category-card {
        margin-bottom: 20px;
    }
    
    .trust-indicators {
        flex-direction: column;
        align-items: center;
    }
    
    .trust-item {
        margin: 5px 0;
    }
    
    .psycampus-btn-primary,
    .psycampus-btn-secondary {
        width: 100%;
        margin: 10px 0;
    }
}

/* Link Styling */
a {
    color: #1a7b8c;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #d63031;
    text-decoration: underline;
}