/* Hero Section Standard Styles */

.page-header {
    height: 50vh;
    min-height: 400px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Default Gradient Overlay */
.page-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(25, 135, 84, 0.3) 100%
    );
    z-index: 1;
}

.hero-title-container {
    z-index: 2;
    padding: 0 15px;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
    letter-spacing: 5px;
    line-height: 1.2;
}

.page-header .lead {
    font-size: 1.5rem;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

/* Scroll Down Indicator */
.scroll-down-container {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-down-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 15px;
    position: relative;
    opacity: 0.7;
}

.scroll-down-dot {
    width: 6px;
    height: 6px;
    background-color: white;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-down-animation 1.5s infinite;
}

@keyframes scroll-down-animation {
    0% { opacity: 1; transform: translate(-50%, 0); }
    50% { opacity: 0; transform: translate(-50%, 15px); }
    100% { opacity: 1; transform: translate(-50%, 0); }
}

/* Responsive Overrides */
@media (max-width: 768px) {
    .page-header {
        height: calc(100vh - 70px);
        min-height: 500px;
        padding: 60px 0;
        border-radius: 15px;
    }
    
    .page-header h1 {
        font-size: 2.8rem;
        letter-spacing: 3px;
    }
    
    .page-header .lead {
        font-size: 1.2rem;
    }
}
