/* Hero Banner */
.hero-banner {
    position: relative;
    width: 100%;
    height: 400px;
    background-image: url('../images/smvitm.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(72, 9, 26, 0.92), rgba(50, 7, 20, 0.92));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 0 20px;
}

.hero-title {
    font-size: 56px;
    font-weight: bold;
    margin-bottom: 12px;
    font-family: Georgia, serif;
    letter-spacing: 0.5px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-family: 'Brush Script MT', cursive;
    font-size: 22px;
    font-style: italic;
    font-weight: normal;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .hero-banner { height: 280px; }
    .hero-title { font-size: 40px; }
    .hero-subtitle { font-size: 18px; }
}

@media (max-width: 480px) {
    .hero-banner { height: 220px; }
    .hero-title { font-size: 32px; margin-bottom: 8px; }
    .hero-subtitle { font-size: 16px; }
}
