
.hero-about {
    min-height: 90vh;
    background: white;
    padding-top: 3rem;
    display: flex;
    align-items: center;
}

.welcome-text h1 {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: black;
    line-height: 1.1;
    margin-left: 1.2rem;
    text-align: left;
}

.tagline-text h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: black;
    line-height: 1.4;
    text-align: right;
    margin-right: 2rem;
   
}

.festival-image {
    margin-top: 1rem;
}

.festival-image video {
    max-width: 100vw;
    width: 1200px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .hero-about {
        min-height: auto;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    .welcome-text h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        margin-left: 0;
        text-align: center;
    }
    
    .tagline-text h2 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
        margin-right: 0;
        text-align: center;
    }
    
    .festival-image {
        margin-top: 1rem;
    }
    
    .festival-image video {
        width: 95%;
        max-width: 600px;
        border-radius: 15px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .hero-about {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
    
    .welcome-text h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .tagline-text h2 {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .festival-image video {
        width: 100%;
        max-width: 400px;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
}
