/* Shared Hero Component Styles */

.hero-common {
    min-height: 120vh;
    position: relative;
    overflow: hidden;
    color: var(--white-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-content {
    h1 {
        font-size: 4.3rem;
        line-height: 1.1;
        background: linear-gradient(135deg, #fff 30%, var(--white-70) 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: 800;
    }

    h2 {
        text-align: left;
        font-size: 1.6rem;
        font-weight: 600;
        color: #e8f4ff;
        text-shadow: 0 1px 3px var(--black-30);
    }

    p {
        text-align: left;
        font-size: 1.25rem;
        max-width: 600px;
        margin: 0;
        margin-bottom: 3rem;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.7;
        opacity: .8;
    }
}

/* Default Hero Type (Others) */
.hero-other {
    padding: 16rem 0 10rem;
    background-color: var(--dark-navy);
    /* Fallback */
}

/* Background image with blur and brightness */
.hero-other::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("../../images/hero-background.png");
    background-size: cover;
    background-position: center;
    filter: blur(5px) brightness(0.6);
    opacity: 0.7;
    z-index: 1;
    transform: scale(1.1);
}

/* Gradients overlay (No grid as requested) */
.hero-other::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10%, hsla(var(--primary-h), 100%, 50%, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 90% 90%, hsla(var(--accent-h), 100%, 50%, 0.1) 0%, transparent 50%),
        linear-gradient(to bottom, rgba(22, 25, 34, 0.4) 0%, rgba(22, 25, 34, 0.8) 100%);
    pointer-events: none;
    z-index: 2;
}

.hero-other .container {
    position: relative;
    z-index: 3;
    animation: fadeInUp 0.8s ease-out;
}

.hero-other {
    h1 {
        text-align: center;
        font-size: 4.5rem;
        line-height: 1.1;
        margin-bottom: 1.5rem;
        color: var(--white-color);
        /* Pure white as requested */
        font-weight: 800;
    }

    h2 {
        text-align: center;
        font-size: 1.5rem;
        color: var(--white-90);
        max-width: 800px;
        margin: 0 auto 1.5rem;
        font-weight: 500;
        line-height: 1.4;
        text-shadow: 0 4px 12px var(--black-10);
    }

    p {
        text-align: center;
    }
}

.hero-other .intro {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-other {
        padding: 12rem 0 6rem;
    }

    .hero-other h1 {
        font-size: 2.5rem;
    }

    .hero-other .subtitle {
        font-size: 1.25rem;
    }
}