/* ========================================
   Examples Page Specific Styles
   ======================================== */

/* Page Header */
.page-header {
    margin-top: 80px;
    padding: 5rem 0 4rem;
    background: var(--gradient-overlay);
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--carbon-black);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--shadow-grey);
    max-width: 700px;
    margin: 0 auto;
}

/* Active Navigation Link */
.nav-menu a.active {
    color: var(--pacific-cyan);
    position: relative;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
}

/* Videos Showcase Section */
.examples {
    padding: 5rem 0;
    background: white;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.video-item {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: #000000;
}

.video-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(14, 135, 168, 0.2);
}

.video-item video {
    width: 100%;
    height: auto;
    display: block;
}

/* Examples CTA Section */
.examples-cta {
    padding: 5rem 0;
    background: var(--gradient-overlay);
}

.cta-box {
    background: var(--gradient-primary);
    padding: 4rem 3rem;
    border-radius: 1.5rem;
    text-align: center;
    box-shadow: 0 15px 50px rgba(14, 135, 168, 0.3);
}

.cta-box h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-box p {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-box .btn-cta {
    background: white;
    color: var(--pacific-cyan);
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-box .btn-cta:hover {
    background: var(--bright-snow);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 991px) {
    .page-header h1 {
        font-size: 2.75rem;
    }

    .page-subtitle {
        font-size: 1.125rem;
    }

    .video-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    .cta-box {
        padding: 3rem 2rem;
    }

    .cta-box h2 {
        font-size: 2rem;
    }

    .cta-box p {
        font-size: 1.125rem;
    }
}

@media (max-width: 767px) {
    .page-header {
        margin-top: 80px;
        padding: 3rem 0 2rem;
    }

    .page-header h1 {
        font-size: 2.25rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .examples {
        padding: 3rem 0;
    }

    .video-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .examples-cta {
        padding: 3rem 0;
    }

    .cta-box {
        padding: 2.5rem 1.5rem;
    }

    .cta-box h2 {
        font-size: 1.75rem;
    }

    .cta-box p {
        font-size: 1rem;
    }

    .cta-box .btn-cta {
        font-size: 1rem;
        padding: 1rem 2rem;
    }
}
