html,
body {
    margin: 0;
    padding: 0;
    height: 100%
}

#alh-hero,
#alh-hero * {
    box-sizing: border-box
}

#alh-hero a {
    text-decoration: none
}

#alh-hero {
    --alh-text: #fff;
    --alh-muted: rgba(255, 255, 255, .72);
    --alh-border: rgba(255, 255, 255, .12);
    --alh-accent-2: #fdc092;

    width: 100%;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    color: var(--alh-text);
    position: relative;
    overflow: hidden;
    font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

    background:
        radial-gradient(80% 60% at 70% 20%, rgba(255, 170, 100, .18) 0%, rgba(0, 0, 0, 0) 60%),
        linear-gradient(90deg, rgba(0, 0, 0, .45) 0%, rgba(0, 0, 0, .25) 35%, rgba(0, 0, 0, .10) 60%, rgba(0, 0, 0, 0) 100%),
        url("../images/hero-bg-tandarts-alhamami.png") center/cover no-repeat;
    background-color: #071725;
}

#alh-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 1px;
    background: var(--alh-border)
}

#alh-hero .alh-container {
    width: min(1200px, 92%);
    margin-inline: auto
}

#alh-hero .alh-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    gap: 12px
}

#alh-hero .alh-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--alh-text);
    font-weight: 800
}

#alh-hero .alh-logo-img {
    height: 50px;
    display: block;
    object-fit: contain;
    padding: 6px;
    filter: brightness(0) invert(1)
}

#alh-hero .alh-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-weight: 500
}

#alh-hero .alh-nav a {
    color: var(--alh-muted);
    white-space: nowrap;
    transition: opacity .2s, color .2s
}

#alh-hero .alh-nav a:hover {
    color: var(--alh-text)
}

#alh-hero .alh-bullet {
    opacity: .45
}

#alh-hero .alh-cta {
    appearance: none;
    border: 1px solid var(--alh-border);
    padding: 10px 16px;
    border-radius: 10px;
    background: transparent;
    color: var(--alh-text);
    font-weight: 600;
    cursor: pointer;
    transition: background .2s, border-color .2s
}

#alh-hero .alh-cta:hover {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .28)
}

#alh-hero .alh-menu-btn {
    display: none;
    background: transparent;
    border: 0;
    width: 44px;
    height: 44px;
    color: var(--alh-text);
    cursor: pointer;
    align-items: center;
    justify-content: center
}

#alh-hero .alh-menu-btn svg {
    width: 26px;
    height: 26px
}

#alh-hero .alh-content {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    padding: min(8vh, 64px) 0 min(6vh, 48px);
    row-gap: 40px
}

#alh-hero .alh-lede {
    max-width: 44ch;
    color: var(--alh-muted);
    font-size: clamp(.95rem, 1.2vw + .7rem, 1.1rem);
    margin: 14px 0 26px
}

#alh-hero .alh-title {
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.02;
    font-size: clamp(2.2rem, 6vw + .5rem, 5.2rem);
    color: var(--alh-text);
}

#alh-hero .alh-title .alh-soft {
    opacity: .86
}

#alh-hero .alh-title .alh-accent {
    color: var(--alh-accent-2);
    text-shadow: 0 4px 28px rgba(255, 140, 60, .5)
}

#alh-hero .alh-meta {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 48px;
    padding-top: 18px;
    border-top: 1px solid var(--alh-border);
    color: rgba(255, 255, 255, .7) important!;
    font-size: .95rem
}

#alh-hero .alh-mobile-nav {
    display: none
}

.alh-meta .alh-meta-mail-link {
    color: inherit ;
    text-decoration: none;
}

.alh-meta .alh-meta-mail-link:hover,
.alh-meta .alh-meta-mail-link:focus {
    text-decoration: underline;
    text-underline-offset: 2px;
}

@media (min-width:960px) {
    #alh-hero .alh-content {
        grid-template-columns: 1.05fr .95fr;
        column-gap: min(5vw, 64px)
    }

    #alh-hero .alh-right {
        min-height: 60vh
    }
}

@media (max-width:840px) {
    #alh-hero .alh-nav {
        display: none
    }

    #alh-hero .alh-cta {
        display: none
    }

    #alh-hero .alh-menu-btn {
        display: flex
    }

    #alh-hero .alh-meta {
        font-size: .9rem;
        width: 50%;
        
    }
   

    #alh-hero .alh-mobile-nav {
        position: absolute;
        left: 4%;
        right: 4%;
        top: 64px;
        z-index: 50;
        background: rgba(7, 23, 37, .75);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid var(--alh-border);
        border-radius: 16px;
        padding: 12px
    }

    #alh-hero .alh-mobile-nav.alh-open {
        display: block
    }

    #alh-hero .alh-mobile-nav a {
        display: block;
        color: var(--alh-text);
        padding: 12px 10px;
        border-radius: 10px;
        opacity: .92
    }

    #alh-hero .alh-mobile-nav a:hover {
        opacity: 1;
        background: rgba(255, 255, 255, .06)
    }

    #alh-hero .alh-mobile-nav .alh-cta {
        margin-top: 6px;
        text-align: center;
        border: 1px solid rgba(255, 255, 255, .22);
        background: transparent;
        color: var(--alh-text);
        font-weight: 700
    }
}

@media (max-width:640px) {
    #alh-hero {
        background-position: center, center, 60% center;
        background-size: auto, auto, cover;
        background-repeat: no-repeat, no-repeat, no-repeat
    }
}