/* VIDEOS PAGE STYLES */

:root {
    /* Brand Colors - Oramet */
    --primary-color: #F5A623;        /* Oramet Gold/Orange */
    --primary-dark: #D68910;         /* Darker Gold */
    --primary-light: #FFB84D;        /* Lighter Gold */
    --secondary-color: #2E5090;      /* Oramet Blue */
    --secondary-dark: #1F3A6B;       /* Darker Blue */
    --secondary-light: #4A6FB5;      /* Lighter Blue */
    --accent-color: #F5A623;         /* Gold accent */

    /* Neutral Colors */
    --dark-bg: #000000;              
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --text-dark: #2E5090;            
    --text-light: #6c757d;

    /* Spacing */
    --section-padding: 80px 0;

    /* Typography */
    --font-heading: 'Poppins ', sans-serif;
    --font-body: 'Poppins', sans-serif;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

h5{
    font-family: var(--font-body);
    font-weight: 600;
}
/* Hero Section */
.hero-section {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary-color) 50%, var(--primary-color) 100%);
    /* background: url('../assets/images/about_hero.jpg') center/cover no-repeat; */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.03;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: radial-gradient(circle at 30% 50%, rgba(245, 166, 35, 0.2) 0%, transparent 50%); */
    background: linear-gradient(
        rgba(0, 0, 0, 0.55),
        rgba(0, 0, 0, 0.55)
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    color: #fff;
    text-shadow: 0 6px 20px rgba(0,0,0,0.7);
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    justify-content: center;
}

.breadcrumb-item {
    font-size: 15px;
    font-weight: 500;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition-fast);
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: var(--primary-color);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: rgba(255, 255, 255, 0.6);
    padding: 0 12px;
}
.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
    color: #f1f1f1;
    text-shadow: 0 4px 12px rgba(0,0,0,0.6);
}

/* VIDEOS SECTION */
.videos-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.section-header {
    margin-bottom: 60px;
}

 .section-title {
            font-family: var(--font-heading);
            font-size: 3rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
            border-radius: 2px;
        }

.section-description {
    font-size: 17px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* VIDEO CARDS */
.video-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: #000;
    cursor: pointer;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.1);
    opacity: 0.8;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.video-card:hover .play-overlay {
    background: rgba(245, 166, 35, 0.85);
}

.play-button {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-card:hover .play-button {
    transform: scale(1.15);
    background: #fff;
}

.play-button i {
    font-size: 28px;
    color: var(--primary-color);
    margin-left: 4px;
}

.video-duration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
}

.video-info {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.video-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}


.video-description {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 16px;
    flex-grow: 1;
}

.video-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding-top: 16px;
    border-top: 1px solid #e8e8e8;
    font-size: 13px;
    color: var(--text-light);
}

.video-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.video-meta i {
    color: var(--primary-color);
}

/* VIDEO MODAL */
.video-modal .modal-content {
    border: none;
    border-radius: 16px;
    background: #000;
}

.video-modal .modal-header {
    background: var(--secondary-color);
    color: #fff;
    border-radius: 16px 16px 0 0;
    border: none;
}

.video-modal .btn-close {
    filter: brightness(0) invert(1);
}

.video-modal .modal-body {
    padding: 0;
    background: #000;
}

.video-modal iframe {
    border-radius: 0 0 16px 16px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .hero-title { font-size: 42px; }
    .section-title { font-size: 36px; }
    .videos-section { padding: 80px 0; }
}

@media (max-width: 767px) {
    .page-hero { height: 280px; }
    .hero-title { font-size: 34px; }
    .section-title { font-size: 30px; }
    .videos-section { padding: 60px 0; }
    .video-thumbnail { height: 200px; }
    .play-button {
        width: 60px;
        height: 60px;
    }
    .play-button i { font-size: 24px; }
}

@media (max-width: 575px) {
    .hero-title { font-size: 28px; }
    .section-title { font-size: 26px; }
    .video-title { font-size: 16px; }
    .video-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}