/* Vlogs & Events Page Styles */

.vlogs-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 60vh;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.vlogs-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--rgba-black-80);
}

.vlogs-tagline {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
    z-index: 1;
    text-shadow: 0 4px 10px var(--rgba-black-80);
}

/* Style for View Details button */
.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(
        135deg,
        var(--primary-color) 0%,
        var(--primary-dark) 100%
    );
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary-custom:hover {
    background: linear-gradient(
        135deg,
        var(--primary-dark) 0%,
        var(--primary-light) 100%
    );
    text-decoration: none;
    color: white;
}

.btn-primary-custom i {
    font-size: 1.1rem;
}

.featured-vlog {
    background: var(--rgba-white-48);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    margin-top: 2rem;
}

.featured-vlog-card {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s ease;
}

.featured-vlog-card:hover {
    transform: scale(1.02);
}

.featured-vlog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    color: white;
}

.featured-vlog-overlay h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.featured-vlog-overlay p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
    max-width: 600px;
}

.featured-vlog-info .duration {
    font-weight: 600;
    color: var(--primary-color);
}

.vlog-categories {
    text-align: center;
}

.categories-tabs {
    display: inline-flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1rem;
}

.category-tab {
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    color: var(--gray-700);
    transition: all 0.3s ease;
}

.category-tab.active,
.category-tab:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.vlog-grid .vlog-card {
    background: var(--rgba-white-48);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.vlog-grid .vlog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.vlog-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.vlog-card:hover .vlog-thumbnail {
    transform: scale(1.08);
}

.vlog-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.vlog-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--gray-800);
}

.vlog-info p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: var(--gray-600);
    flex-grow: 1;
}

.vlog-info .duration {
    font-weight: 600;
    color: var(--primary-color);
}

.card-footer {
    display: flex;
    justify-content: center;
    padding: 0 20px 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .featured-vlog-card {
        height: 300px;
    }

    .featured-vlog-overlay {
        padding: 1rem;
    }

    .featured-vlog-overlay h3 {
        font-size: 1.5rem;
    }

    .featured-vlog-overlay p {
        font-size: 1rem;
    }

    .vlog-info {
        padding: 15px;
    }

    .card-footer {
        padding: 0 15px 15px;
    }
}
