.navbar {
    background: #070F27;
    backdrop-filter: blur(15.899999618530273px);
}

h5.title {
    font-weight: 600;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center
}

.section-header {
    margin-top: 50px;
}

.room-card {
    background: #070F27;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 20px;
    gap: 25px;
    color: #fff;
}

.room-card:hover img {
    transform: scale(1.1);
}

.room-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.room-image img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    transition: all 0.3s ease;
}

.room-info {
    color: #fff;
    letter-spacing: 0.5px;
    height: 150px;
}

.room-info span {
    font-weight: 600;
}

.btn-custom {
    padding: 8px 14px;
    border-radius: 20px;
    border: 1px solid #850221;
}

.btn-custom:hover {
    background: #850221;
    color: #fff;
}

.icon-overplay {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translate(-50%, -50%);
}