/* Blog Hero Section Styles */

/* Image Hero */
.blog-hero-section {
    position: relative;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 1;
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.blog-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff !important;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.blog-hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ffffff !important;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

/* Video Hero */
.blog-video-hero-section {
    position: relative;
    min-height: 500px;
    overflow: hidden;
}

.blog-video-hero {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

.blog-video-dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 1;
}

.blog-video-overlay-content {
    position: relative;
    z-index: 2;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-video-text-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.blog-video-text-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff !important;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.blog-video-text-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ffffff !important;
    opacity: 0.95;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .blog-hero-section,
    .blog-video-hero-section {
        min-height: 400px;
    }
    
    .blog-hero-title,
    .blog-video-text-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .blog-hero-description,
    .blog-video-text-description {
        font-size: 1rem;
    }
    
    .blog-video-text-box {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .blog-hero-section,
    .blog-video-hero-section {
        min-height: 350px;
    }
    
    .blog-hero-title,
    .blog-video-text-title {
        font-size: 1.75rem;
    }
    
    .blog-hero-description,
    .blog-video-text-description {
        font-size: 0.9rem;
    }
    
    .blog-video-text-box {
        padding: 1.5rem 1rem;
    }
}
 