.section-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(26, 30, 54, 0.9) 0%, rgba(26, 30, 54, 0.4) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--color-white);
}

.hero-subtitle {
    font-family: 'Brush Script MT', cursive;
    font-style: italic;
    color: var(--color-secondary);
    font-size: 2rem;
    margin-bottom: var(--spacing-8);
}

.hero-title {
    font-size: 4rem;
    color: var(--color-white);
    margin-bottom: var(--spacing-16);
    line-height: 1.1;
}

.hero-text {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-32);
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: var(--spacing-16);
}

/* Hero Banner Module (Marquee and Live Darshan) */
.hero-banner-content marquee {
    color: #f8fafc;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}
.hero-banner-content a {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #fff;
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-banner-content a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.6);
}
.hero-banner-content a::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 10px #fff;
    animation: pulse-red 1.5s infinite;
}
@keyframes pulse-red {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}
@media (max-width: 768px) {
    .hero-banner-content {
        flex-direction: column;
        text-align: center;
    }
}
