header {
    min-height: 100vh;
}

.welcome {
    width: 100%;
    height: 100%;
    background-image: url(https://www.pensiune-laura.ro/wp-content/uploads/2019/07/P1-1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
}

.overlay {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.welcome h1, .welcome p, .welcome a {
    z-index: 1;
    color: var(--text-white);
}

main {
    z-index: 1;
}

h1 {
    font-size: 4rem;
    text-align: center;
    line-height: 1.4;
    margin-bottom: var(--spacing-large);
    color: var(--text-white);
    font-size: 3.5rem;
    font-family: var(--ff-Roboto);
}

.welcome p {
    font-size: var(--fs-xl);
    font-family: var(--ff-Roboto-Slab);
    font-weight: 500;
}

.welcome a {
    text-transform: uppercase;
    margin-top: 3.75rem;
    background-color: var(--secundary-color);
    border-radius: 3px;
    padding: 15px 33px;
    box-shadow: 0 2px 2px 0 rgb(31 171 242 / 14%), 
                0 3px 1px -2px rgb(31 171 242 / 20%), 
                0 1px 5px 0 rgb(31 171 242 / 12%);
    font-size:var(--fs-small);
    -webkit-tap-highlight-color: transparent;
}

.welcome a:hover {
    box-shadow: 0 14px 26px -12px rgb(31 171 242 / 42%), 
                0 4px 23px 0 rgb(0 0 0 / 12%), 
                0 8px 10px -5px rgb(31 171 242 / 20%);
    
}

main {
    position: relative;
    z-index: 2;
    text-align: center;
}

main h3 {
    font-size: var(--fs-xxl);
    font-family: var(--ff-Roboto-Slab);
    margin: var(--spacing-medium) 0;
}

.despre-noi {
    padding-top: 75px;
}

.despre-noi p {
    color: var(--text-primary);
    font-size: var(--fs-large);
    font-weight: 500;
    line-height: 1.6;
    max-width: 66%;
    margin: auto;
}

.sub-sections {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding-bottom: 3.5rem;
}

.sub-section-wrapper {
    width: calc(100% / 3);
    padding: 4.375rem 1rem 2rem;
}

.sub-section-wrapper a {
    transition: all 1s;
}

.sub-section-wrapper a:hover {
    opacity: 0.7;
}

.sub-sections span {
    font-size: 4.75rem !important;
    transition: 0.3s ease;
}

.sub-sections span:hover {
    transform: scale(1.2);
}

.hotel-icon {
    color: #e91e63;
}

.rezervati-icon {
    color: #00bcd4;
    font-weight: 800 !important;
}

.tarife-icon {
    color: #4caf50;
}

.obiective-turistice-icon {
    color: #eeee22;
}

.galerie-icon {
    color: #158778;
}

.oferte-icon {
    color: #999;
}

.sub-sections h4 {
    font-family:  var(--ff-Roboto-Slab);
    font-size: var(--fs-xl);
    margin: var(--spacing-large) 0 var(--spacing-medium);
}

.sub-sections p {
    font-family:  var(--ff-Roboto);
    color: var(--text-primary);
    font-weight: 500;
    font-size: var(--fs-large);
    line-height: 1.6;
    margin: var(--spacing-small) 0;
}

.recenzii {
    padding: 4rem 0 2.5rem;
}

.recenzii .testimonial-cards {
    display: flex;
    width: 100%;
    padding-top: var(--spacing-large);
}

.recenzii .card {
    width: calc(100% / 3);
    padding: 0 var(--spacing-medium);
    margin: var(--spacing-large) 0;
}

.recenzii .avatar img {
    width: 100px;
    height: auto;
    box-shadow: 0 16px 38px -12px rgb(0 0 0 / 56%), 
                0 4px 25px 0 rgb(0 0 0 / 12%), 
                0 8px 10px -5px rgb(0 0 0 / 20%);
    border: 5px solid white;
    border-radius: 50%;
    margin-top: -3.125rem;
}

.recenzii .content {
    padding: var(--spacing-medium) var(--spacing-xs);
    margin-top: var(--spacing-medium);
}

.recenzii h4 {
    font-family: var(--ff-Roboto-Slab);
    font-size: var(--fs-xl);
    margin: var(--spacing-small) 0;
}

.recenzii p {
    margin: var(--spacing-small) 0;
    font-size: var(--fs-large);
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.6;
}

@media (max-width:992px) {
    .recenzii .testimonial-cards {
        flex-wrap: wrap;
    }
    .sub-section-wrapper,
    .recenzii .card {
        width: 50%;
    }
    .recenzii .testimonial-cards:last-child {
        justify-content: center;
    }
}

@media (max-width:768px) {
    .welcome h1 {
        font-size: var(--fs-xxl);
    }
    .recenzii {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .recenzii .testimonial-cards {
        flex-wrap: wrap;
    }
    .sub-section-wrapper,
    .recenzii .card {
        width: 100%;
    }
    .welcome,
    .overlay {
        height: 100vh;
    }
}











