.hero {
    position: relative;
    height: max(calc(100vh - 60px), 400px);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: no-repeat center center/cover;
    clip-path: polygon(0 0, 10% 0, 100% 10%, 100% 100%, 90% 100%, 0 90%);

}
.hero-button-container-spacer{
    height: 0;
    flex-grow: 1;
}


.hero-button-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}


.hero-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
    color: #231f1c;
}


.hero-text {
    padding: 32px 16px 16px;
    background: rgba(209, 202, 193, 0.87);
}

.hero h1 {
    font-size: 2em;
    /*margin: 0 0 20px;*/
}

.hero p {
    font-size: 1.2em;
    margin: 0 0 20px;
}


/* Responsive Design */
@media (max-width: 991px) {
    .hero h1 {
        font-size: 1.6em;
    }

    .hero-background {
        max-height: 65vh;
    }

    .hero p {
        font-size: 1.2em;
    }
}
