/* ========================================
   GUIDING PARROT PAGE STYLES
   Educational Streams Explorer Template
   Matching theme design patterns
   ======================================== */

/* ========================================
   HERO SECTION
   ======================================== */
.guiding-parrot-hero {
    position: relative;
    padding: 10px 0 10px;
    overflow: hidden;
    background: linear-gradient(135deg, #FFE4D6 0%, #FFF5E6 50%, #E6F7F1 100%);
    margin-top: 76px;
}

.hero-gradient-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(125, 194, 66, 0.1) 0%, rgba(106, 184, 57, 0.15) 100%);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
    z-index: 0;
}

.guiding-parrot-hero .container {
    position: relative;
    z-index: 1;
}

.hero-content-text {
    padding-right: 20px;
}

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

.hero-subtitle-text {
    font-size: 18px;
    font-weight: 400;
    color: #333;
    line-height: 1.6;
    margin-bottom: 40px;
}

.hero-stats-row {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-stats-row .stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-stats-row .stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.hero-stats-row .stat-label {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   STREAMS GRID SECTION
   ======================================== */
.streams-grid-section {
    padding: 100px 0;
    background: #F9FAFB;
}

.streams-grid-section .container {
    max-width: 1320px;
}

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-heading-large {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.section-subtitle-text {
    font-size: 16px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
}

/* ========================================
   STREAMS GRID
   ======================================== */
.streams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    row-gap: 32px;
}

/* ========================================
   STREAM CARD
   ======================================== */
.stream-card {
    height: 100%;
}

.stream-card-link {
    text-decoration: none;
    display: block;
    height: 100%;
}

.stream-card-inner {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-top: 4px solid transparent;
}

.stream-card-inner:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

/* Card Header (Icon/Image Area) */
.stream-card-header {
    position: relative;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.stream-thumbnail {
    width: 100%;
    height: 100%;
}

.stream-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.stream-card-link:hover .stream-thumbnail img {
    transform: scale(1.05);
}

.stream-icon,
.stream-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #fff;
}

.stream-icon i,
.stream-placeholder i {
    font-size: 4rem;
}

/* Card Content */
.stream-card-content {
    padding: 24px;
    flex: 1;
}

.stream-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.4;
    min-height: 56px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.stream-card-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Card Footer */
.stream-card-footer {
    padding: 16px 24px;
    border-top: 1px solid #F3F4F6;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #FAFBFC;
}

.stream-stats {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.stream-stat {
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 4px;
}

.stream-stat i {
    font-size: 14px;
}

.stream-arrow {
    font-size: 20px;
    color: #999;
    transition: all 0.3s ease;
}

.stream-card-link:hover .stream-arrow {
    transform: translateX(5px);
    color: var(--color-primary);
}

/* ========================================
   COLOR VARIANTS (matching theme colors)
   ======================================== */

/* Purple Card */
.stream-card.card-purple .stream-card-inner {
    border-top-color: #667eea;
}

.stream-card.card-purple .stream-card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.stream-card.card-purple:hover .stream-card-title {
    color: #667eea;
}

/* Orange Card */
.stream-card.card-orange .stream-card-inner {
    border-top-color: #f59e0b;
}

.stream-card.card-orange .stream-card-header {
    background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
}

.stream-card.card-orange:hover .stream-card-title {
    color: #f59e0b;
}

/* Green Card (Primary) */
.stream-card.card-green .stream-card-inner {
    border-top-color: #7DC242;
}

.stream-card.card-green .stream-card-header {
    background: linear-gradient(135deg, #7DC242 0%, #6AB839 100%);
}

.stream-card.card-green:hover .stream-card-title {
    color: #7DC242;
}

/* Blue Card */
.stream-card.card-blue .stream-card-inner {
    border-top-color: #3b82f6;
}

.stream-card.card-blue .stream-card-header {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
}

.stream-card.card-blue:hover .stream-card-title {
    color: #3b82f6;
}

/* Pink Card */
.stream-card.card-pink .stream-card-inner {
    border-top-color: #ec4899;
}

.stream-card.card-pink .stream-card-header {
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
}

.stream-card.card-pink:hover .stream-card-title {
    color: #ec4899;
}

/* Teal Card */
.stream-card.card-teal .stream-card-inner {
    border-top-color: #14b8a6;
}

.stream-card.card-teal .stream-card-header {
    background: linear-gradient(135deg, #14b8a6 0%, #0f766e 100%);
}

.stream-card.card-teal:hover .stream-card-title {
    color: #14b8a6;
}

/* ========================================
   NO STREAMS MESSAGE
   ======================================== */
.no-streams-message {
    padding: 80px 0;
    text-align: center;
}

.no-streams-message .empty-state {
    max-width: 500px;
    margin: 0 auto;
}

.no-streams-message i {
    font-size: 5rem;
    color: #D1D5DB;
    margin-bottom: 20px;
}

.no-streams-message h3 {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.no-streams-message p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

/* ========================================
   GUIDING PARROT APPROACH SECTION
   ======================================== */
.guiding-parrot-approach {
    padding: 100px 0;
    background: #fff;
}

.guiding-parrot-approach .section-header-centered {
    margin-bottom: 60px;
}

.approach-grid {
    row-gap: 40px;
}

.approach-card {
    text-align: center;
    padding: 40px 24px;
    height: 100%;
    transition: all 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-5px);
}

.approach-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #7DC242 0%, #6AB839 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 36px;
    box-shadow: 0 8px 20px rgba(125, 194, 66, 0.3);
    transition: all 0.3s ease;
}

.approach-card:hover .approach-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 28px rgba(125, 194, 66, 0.4);
}

.approach-title {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.3;
}

.approach-description {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   CALL TO ACTION SECTION
   ======================================== */
.guiding-parrot-cta {
    background: linear-gradient(135deg, #7DC242 0%, #6AB839 100%);
    padding: 80px 0;
    color: #fff;
}

.guiding-parrot-cta .cta-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

.guiding-parrot-cta .cta-description {
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
    opacity: 0.95;
}

/* Primary Green Button (matching theme) */
.btn-primary-green {
    display: inline-block;
    background: #fff;
    color: #7DC242;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid #fff;
}

.btn-primary-green:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

/* Tablet (992px - 1199px) */
@media (max-width: 1199px) {
    .streams-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

/* Tablet and below (< 992px) */
@media (max-width: 991px) {
    .guiding-parrot-hero {
        padding: 80px 0 60px;
    }

    .hero-main-title {
        font-size: 40px;
    }

    .hero-subtitle-text {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .hero-stats-row {
        gap: 30px;
    }

    .hero-content-text {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero-gradient-bg {
        width: 100%;
        clip-path: none;
        opacity: 0.08;
    }

    .streams-grid-section {
        padding: 80px 0;
    }

    .section-heading-large {
        font-size: 36px;
    }

    .streams-grid {
        gap: 20px;
        row-gap: 28px;
    }

    .guiding-parrot-cta {
        padding: 60px 0;
        text-align: center;
    }

    .guiding-parrot-cta .cta-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .guiding-parrot-cta .cta-description {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .guiding-parrot-approach {
        padding: 80px 0;
    }

    .approach-grid {
        row-gap: 32px;
    }

    .approach-card {
        padding: 32px 20px;
    }
}

/* Mobile (< 768px) */
@media (max-width: 767px) {
    .guiding-parrot-hero {
        padding: 60px 0 50px;
        margin-top: 60px;
    }

    .hero-main-title {
        font-size: 32px;
    }

    .hero-subtitle-text {
        font-size: 15px;
    }

    .hero-stats-row {
        gap: 24px;
    }

    .hero-stats-row .stat-number {
        font-size: 28px;
    }

    .hero-stats-row .stat-label {
        font-size: 12px;
    }

    .hero-content-text {
        margin-bottom: 30px;
    }

    .streams-grid-section {
        padding: 60px 0;
    }

    .section-header-centered {
        margin-bottom: 40px;
    }

    .section-heading-large {
        font-size: 28px;
    }

    .section-subtitle-text {
        font-size: 15px;
    }

    .streams-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stream-card-header {
        height: 180px;
    }

    .stream-icon i,
    .stream-placeholder i {
        font-size: 3rem;
    }

    .stream-card-content {
        padding: 20px;
    }

    .stream-card-title {
        font-size: 18px;
        min-height: auto;
    }

    .stream-card-description {
        font-size: 13px;
    }

    .stream-card-footer {
        padding: 12px 20px;
    }

    .stream-stats {
        gap: 12px;
    }

    .stream-stat {
        font-size: 12px;
    }

    .guiding-parrot-cta {
        padding: 50px 0;
    }

    .guiding-parrot-cta .cta-title {
        font-size: 26px;
    }

    .guiding-parrot-cta .cta-description {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .btn-primary-green {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
    }

    .no-streams-message {
        padding: 60px 0;
    }

    .no-streams-message i {
        font-size: 4rem;
    }

    .no-streams-message h3 {
        font-size: 24px;
    }

    .no-streams-message p {
        font-size: 15px;
    }

    .guiding-parrot-approach {
        padding: 60px 0;
    }

    .guiding-parrot-approach .section-header-centered {
        margin-bottom: 40px;
    }

    .approach-grid {
        row-gap: 28px;
    }

    .approach-card {
        padding: 32px 20px;
    }

    .approach-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
        margin-bottom: 20px;
    }

    .approach-title {
        font-size: 20px;
        margin-bottom: 14px;
    }

    .approach-description {
        font-size: 14px;
    }
}

/* Small Mobile (< 576px) */
@media (max-width: 575px) {
    .hero-stats-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .hero-main-title {
        font-size: 28px;
    }

    .section-heading-large {
        font-size: 24px;
    }

    .guiding-parrot-cta .cta-title {
        font-size: 22px;
    }
}
