/* Shared Hero Section Styles */

/* Common Hero Section */
.hero-section,
.contact-hero {
    position: relative;
    height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg,
.contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img,
.contact-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    opacity: 1;
}

.hero-bg::after,
.contact-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
}

.hero-content,
.contact-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    width: 90vw;
    margin: 0 auto;
}

.hero-title,
.contact-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section,
    .contact-hero {
        height: 18vh;
    }
    
    .hero-title,
    .contact-hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title,
    .contact-hero-title {
        font-size: 2rem;
    }
}