@import './reset.css';
@import './variables.css';



body{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    width: 100%;
    margin: 0;
    font-family: var(--ff-sans);
    background-image: url(/assets/landing-page-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px) grayscale(0.4) opacity(0.8);
}

h1{
    margin: 0;
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: -0.4px;
}

h2{
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
}

h3{
    color: var(--clr-bordeaux);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
}


.btn{
    width: fit-content;
    height: 4rem;
    border-radius: 30px;
    color: var(--clr-light);
    margin-top: 3rem;
    padding: 1.2rem 2rem;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
}

.btn--bordeaux{
    background-color: var(--clr-bordeaux);
    border: none;
}

.btn.btn--bordeaux:hover{
    background-color: var(--clr-dark-bordeaux);
}

.btn.btn--bordeaux:active{
    background-color: var(--clr-darker-bordeaux);
}

.page{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
}

.logo__cont{
    display: flex;
    flex-direction: row;
    position: absolute;
    top: 12px;
    right: 290px;
    width: 120px;
    height: 120px;
    gap: 1rem;
}

.logo{
    width: 100%;
    height: 100%;
    background-color: var(--clr-light);
    border-radius: 10px;
}

.header{
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 100%;
    height: fit-content;
    color: var(--clr-light);
    background-color: #651633;
}

.header__title{
    margin: 2rem 0 0.5rem 4rem;
}

.header__subtitle{
    margin: 0 0 1rem 4rem;
}

.cards{
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 12rem;
    gap: 9rem;
}

.cards__card{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 20rem;
    height: fit-content;
    padding: 0 2.5rem 3rem 2.5rem;
    background-color: var(--clr-light);
    border-radius: 15px;
}

.cards__card:hover{
    border: solid var(--clr-dark-bordeaux) 2px;
    transform: translateY(-0.5rem);
    transition: transform .5s;
}

.cards__imgcont{
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 100px;
    margin: 3rem 0;
}

.cards__image{
    width: 100%;
    height: 100%;
}

.cards__caption{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cards__text{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--clr-text);
    font-size: 18px;
}