.hero-section {    
    position: relative;    
    min-height: 100vh;    
    display: flex;
    align-items: center; 
    justify-content: center; 
    text-align: center;
    padding: 20px;
    overflow: hidden; 
    margin-left: -20px;
    margin-right: -20px;	
}

#hero-video, #hero-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: 100%;
    z-index: 0;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.45); 
    z-index: 1;
}

.hero-content {    
    position: relative; 
    z-index: 2;     
    max-width:800px;
    color: white; 
}

.hero-content h1 {
    font-size: 3rem; /* Large font for impact */
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    /* Responsive font size */
    @media (max-width: 768px) {
        font-size: 2rem; 
    }
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    /* Responsive font size */
    @media (max-width: 768px) {
        font-size: 1rem; 
    }
}

.shop-now {
    background-color: #ff5e3a; 
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.shop-now:hover {
    background-color: #e55030;
}

