.hero-section{
    width: 100%;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 60px 1fr;
    grid-template-areas: "header"
                          "hero";
    justify-content: center;
    align-content: center;
    justify-items: center;
    align-items: center;
    background-image: 
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.45)), 
    url('../images/cutting.jpg');
    
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation-name: fadeIn;
    animation-timing-function: ease-in-out;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
    opacity: 0;
    
}

.hero{
    grid-area: hero;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 1vw;
    padding-bottom: 50px;
    
}
.hero h1{
    color: var(--off-white);
    font-family: var(--font-primary);
    max-width: 850px;
    font-size: clamp(2.5rem, 4.3vw, 4rem);
    text-align: center;
    font-weight: 750;
    letter-spacing: 2px;
}
.hero button{
    width: 10%;
    height: 6%;
    
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--black);
    font-family: var(--font-primary);
    font-weight: 750;
    font-size: clamp(0.7rem, 0.8vw, 0.8rem);
    min-width: 140px;
    min-height: 40px;
    border: none;
    transition: all 150ms ease-out;
}

.hero button:hover{
    background-color: var(--black);
    color: var(--off-white);
    border: 1px solid var(--off-white);
}