/* Video Background Styles */

.hero-section {
    position: relative;
    min-height: 100vh;
    background-color: #000;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-background .hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.488);
    z-index: 9;
}

.hero-content {
    position: relative;
    z-index: 2;
}
/* 
.hero-content h1,
.hero-content h3,
.hero-content p {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
} */

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
    }
    
    .hero-content {
        padding: 2rem 1rem;
    }
    
    .product-display img {
        max-width: 80%;
        margin: 0 auto;
    }
}