/**
 * Project Emmaus - Hero Section
 */

.emmaus-hero {
    position: relative;
    display: flex;
    min-height: calc(100vh - 90px);
    overflow: hidden;
    background-color: #12213b;
    background-repeat: no-repeat;
    background-position: center 30%;
    background-size: cover;
}

.emmaus-hero-overlay {
    display: flex;
    width: 100%;
    min-height: inherit;
    align-items: center;
    background:
        linear-gradient(
            90deg,
            rgba(3, 16, 39, 0.90) 0%,
            rgba(3, 16, 39, 0.70) 48%,
            rgba(3, 16, 39, 0.28) 100%
        );
}

.emmaus-hero-content {
    max-width: 790px;
    padding: 100px 0 90px;
    color: #ffffff;
    padding-left:40px;
}

.emmaus-hero-title {
    max-width: 760px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.4rem, 5.5vw, 5rem);
    font-weight: 800;
    line-height: 1.25;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.55), 0 8px 24px rgba(0, 0, 0, 0.35);
}

.emmaus-hero-english-title {
    max-width: 700px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.94);
    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 500;
    line-height: 1.6;
}

.emmaus-hero-tagline {
    margin: 18px 0 0;
    color: #f2d781;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.emmaus-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 34px;
}

.emmaus-button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border: 2px solid transparent;
    border-radius: 10px;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none;
    transition:
        transform 220ms ease,
        background-color 220ms ease,
        border-color 220ms ease,
        color 220ms ease,
        box-shadow 220ms ease;
}

.emmaus-button:hover {
    transform: translateY(-3px);
}

.emmaus-button-primary {
    color: #0b2d60;
    background: #d4af37 !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.20);
    background:linear-gradient(45deg,#c89b3c,#e7c768);
}

.emmaus-button-primary:hover {
    color: #08234b !important;
    background: #e4c558;
}

.emmaus-button-secondary {
    border-color: rgba(255, 255, 255, 0.85);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(5px);
}

.emmaus-button-secondary:hover {
    color: #0b2d60;
    background: #ffffff;
}

/* Hero text – prevent global heading styles overriding it */
.emmaus-hero .emmaus-hero-title {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

/* Hero buttons */
.emmaus-hero .emmaus-button {
    opacity: 1 !important;
    visibility: visible !important;
    text-decoration: none !important;
}

.emmaus-hero .emmaus-button-primary,
.emmaus-hero .emmaus-button-primary:link,
.emmaus-hero .emmaus-button-primary:visited {
    color: #0b2d60 !important;
    -webkit-text-fill-color: #0b2d60 !important;
    background-color: #d4af37 !important;
}

.emmaus-hero .emmaus-button-primary:hover,
.emmaus-hero .emmaus-button-primary:focus {
    color: #08234b !important;
    -webkit-text-fill-color: #08234b !important;
    background-color: #e4c558 !important;
}

.emmaus-hero .emmaus-button-secondary,
.emmaus-hero .emmaus-button-secondary:link,
.emmaus-hero .emmaus-button-secondary:visited {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

.emmaus-hero .emmaus-button-secondary:hover,
.emmaus-hero .emmaus-button-secondary:focus {
    color: #0b2d60 !important;
    -webkit-text-fill-color: #0b2d60 !important;
}