/* Video Banner Styles */
.video-banner-section {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 550px;
    max-height: 650px;
    overflow: hidden;
    border-radius: 20px;
    margin: 0 20px 20px;
    max-width: calc(100% - 40px);
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Celebrity Spotlight Section */
.hff-celeb-spotlight {
    padding: 120px 0;
    background-color: #f8f7f5;
    position: relative;
    overflow: hidden;
}

.hff-spotlight-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hff-spotlight-image {
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.hff-spotlight-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hff-spotlight-image:hover img {
    transform: scale(1.03);
}

.hff-spotlight-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-right: 40px;
}

.hff-spotlight-tag {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.hff-spotlight-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.2rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #343434;
}

.hff-spotlight-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 35px;
    position: relative;
    padding-left: 25px;
    border-left: 2px solid var(--accent-color);
}

.hff-spotlight-celeb {
    margin-bottom: 35px;
}

.hff-celeb-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-color);
}

.hff-celeb-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
}

.hff-spotlight-btn {
    display: inline-block;
    padding: 16px 32px;
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--text-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.hff-spotlight-btn:hover {
    color: white;
    border-color: var(--accent-color);
    background-color: var(--accent-color);
}

/* Responsive Video Banner */
@media (max-width: 768px) {
    .video-banner-section {
        height: auto;
        min-height: 400px;
        margin: 0 15px 20px;
    }
    
    .hff-spotlight-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hff-spotlight-content {
        padding-right: 0;
        text-align: center;
        align-items: center;
    }
    
    .hff-spotlight-heading {
        font-size: 2.8rem;
    }
}

@media (max-width: 480px) {
    .video-banner-section {
        min-height: 320px;
        max-height: 350px;
        margin: 0 10px 15px;
    }
    
    .hff-celeb-spotlight {
        padding: 60px 0;
    }
    
    .hff-spotlight-heading {
        font-size: 2rem;
    }
    
    .hff-spotlight-btn {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
    }
}