/* Shared Hero Section Styles */

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

.contact-hero {
    background: #f5eeea;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg,
.contact-hero-bg {
    display: none;
}

.random-hero-image {
    display: none;
}

.hero-content,
.contact-hero-content {
    position: relative;
    z-index: 3;
    color: #000000;
    width: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.hero-content .container,
.contact-hero-content .container {
    text-align: center;
    max-width: 95%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
}

.hero-title,
.contact-hero-title {
    font-size: 2rem;
    font-weight: 300;
    margin: 30px 0 0 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        height: 18vh;
    }

    .contact-hero {
        height: 20.7vh; /* 15% more than 18vh */
    }
    
    .hero-title,
    .contact-hero-title {
        font-size: 1.6rem;
    }
    
    .contact-hero-title {
        font-size: 2.24rem; /* 40% larger from 1.6rem */
        margin-left: 0;
    }
    
    .hero-content .container,
    .contact-hero-content .container {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .hero-title,
    .contact-hero-title {
        font-size: 1.2rem;
    }
    
    .contact-hero-title {
        font-size: 1.68rem; /* 40% larger from 1.2rem */
        margin-left: 0;
    }
    
    .hero-content .container,
    .contact-hero-content .container {
        margin-left: auto;
        margin-right: auto;
    }
}