/**
 * Project Emmaus - Header
 */

.emmaus-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(8, 35, 75, 0.08);
}

.emmaus-header-inner {
    display: flex;
    min-height: 104px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.emmaus-brand {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 16px;
    color: #08234b;
    text-decoration: none;
}

.emmaus-brand-logo {
    width: 48px;
    height: 58px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #08234b;
}

.emmaus-brand-content {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.emmaus-brand-tamil {
    font-size: 1.62rem;
    font-weight: 700;
    line-height: 1.4;
}

.emmaus-brand-english {
    margin-top: 3px;
    color: #707784;
    font-family: Arial, sans-serif;
    font-size: 0.72rem;
    line-height: 1.4;
}

.emmaus-navigation {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2vw, 34px);
}

.emmaus-navigation a {
    color: #162b4b;
    font-size: 0.97rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.emmaus-navigation a:hover,
.emmaus-navigation a:focus {
    color: #b18b2d;
}

.emmaus-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 9px;
    border: 1px solid rgba(8, 35, 75, 0.15);
    border-radius: 10px;
    background: #ffffff;
    cursor: pointer;
}

.emmaus-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    margin: 5px 0;
    border-radius: 5px;
    background: #08234b;
    transition: 220ms ease;
}