
.section--header {
    width: 100%;
    height: calc(100vh - 40px);
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 160px 20px 172px;
    position: relative;
    color: var(--color-text--header);
}

.section--header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
}
.section--header figure{
    width:100%;
    height:100%;
    position: absolute;
    top:0;
    left:0;
    z-index: -1;
}
.section--header figure img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
}
.section--header .container {
    max-width: 1080px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.section--header .section__title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
}

.section--header .section__introduction {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 40px auto;
    font-size: 22px;
    line-height: 1.6;
}
.section--header .section__introduction strong {
    color:var(--color-white);
}

    /* Search bar */
.section--header .section__search {
    display: flex;
    max-width: 600px;
    margin: 0 auto 20px;

    overflow: hidden;
}

.section--header .section__search label {
    flex:1;
}

.section--header .section__search-input {
    width: 100%;
    padding: 16px 8px 16px 24px;
    outline: none;
    font-size: 16px;
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.3);
    border-radius: 25px 0 0 25px;
    border: 1px solid var(--color-nav);

}

.section--header .section__search-input::placeholder {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
    font-size: 15px;
}

.section--header .section__search-button {
    padding: 0 24px;
    background: var(--color-nav);
    color: var(--color-text--header);
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: 0.2s;
    border-radius: 0 25px 25px 0;
    margin: 0 0 0 -1px;
}

.section--header .section__search-button:hover {
    background: var(--color-text);
    border-color: var(--color-text);
}

/* Links */
.section--header .section__links {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.section--header .section__link {
    color: var(--color-text--header);
    opacity: 0.85;
    text-decoration: none;
    font-size: 14px;
    transition: 0.2s;
}

.section--header .section__link:hover {
    opacity: 1;
}

.section--header .section__link:hover span {
    text-decoration: underline;
}

/* Scroll icon */
.section--header .section__footer {
    position: absolute;
    bottom: 16px;
    left: 0;
    width: 100%;
    z-index: 100;
}

.section--header .section__scroll {


}

.section--header .section__scroll-icon {
    font-size: 24px;
    color: var(--color-text--header);
    opacity: 0.8;
    cursor: pointer;
    animation: scrollBlink 2s infinite;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.section--header .section__scroll-icon svg:nth-child(2) {
    margin-top: -4Px;
}



@keyframes scrollBlink {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}
