.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero__slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: 1.8s ease-in-out;

    opacity: 0;
    transition: opacity 1.8s ease-in-out;
    will-change: opacity;
}

.hero__slide:nth-child(1) {
    background-image: url("../photos/hero_wooden_house.jpeg");
}

.hero__slide:nth-child(2) {
    background-image: url("../photos/hero_welding.jpeg");
}

.hero__slide--active {
    opacity: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    height: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--side-pad);

    display: flex;
    flex-direction: column;
    justify-content: center;

    color: var(--white);
}

.hero__logo {
    position: absolute;
    top: 32px;
    right: var(--side-pad);
    width: 60px;
    z-index: 3;
}

.hero__eyebrow {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 12px;
}

.hero__headline {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(3.5rem, 8vw, 6rem);
    line-height: 1;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}
 
.hero__subtext {
    font-family: "Oswald", sans-serif;
    font-weight: 300;
    font-size: clamp(1rem, 1.2vw, 1.5rem);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 36px;
    opacity: 0.85;
}

.hero__btn {
    display: inline-block;
    padding: 14px 32px;
    color: var(--white);
    font-family: "Oswald", sans-serif;
    font-weight: 600;
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
 
    border: 2px solid var(--yellow);
 
    align-self: flex-start;  
}