/* Hero Section Base Styles - Updated */
.page-hero {
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-red));
    color: white;
    padding: 150px 20px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 120px;
}

/* Hero Background Pattern */
.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="white"/></svg>');
    background-size: 50px 50px;
}

/* Hero Container */
.page-hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero Content Wrapper */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* Hero Title */
.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Hero Description */
.hero-description {
    font-size: 1.25rem;
    opacity: 0.9;
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Success Hero Variant (for success pages) */
.success-hero {
    background: linear-gradient(135deg, #28a745, #20c997);
}

/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) {
    .page-hero {
        padding: 120px 20px 80px;
        min-height: 50vh;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }
}

/* Mobile Large Styles (480px - 768px) */
@media (max-width: 768px) {
    .page-hero {
        padding: 80px 20px 60px;
        min-height: 50vh;
        margin-top: 80px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
        max-width: 90%;
    }
}

/* Mobile Small Styles (< 480px) */
@media (max-width: 480px) {
    .page-hero {
        padding: 60px 15px 50px;
        min-height: 45vh;
        margin-top: 70px;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .hero-description {
        font-size: 1rem;
        max-width: 100%;
        padding-bottom: 15px;
    }
}

/* Extra Small Mobile (< 375px) */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }
}
