@import url('https://fonts.googleapis.com/css2?family=Cormorant+Infant:ital,wght@0,300..700;1,300..700&family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
}

body {
    color: white;
    font-size: 16px;
    line-height: 1.6;
    background-color: #08242C;
    font-family: "Jost", sans-serif;
    font-weight: 300;
}

.navbar {
    background-color: transparent;
    /* padding: 20px; */
}

.offcanvas {
    background-color: #08242C;
}

.navbar.scrolled {
    background-color: #08242C !important;
}

.nav-link {
    font-size: 16px;
    color: white;
}

.book-now {
    border: 2px solid #F7DEB2;
    background-color: #19333B;
    font-weight: 400;
    text-transform: uppercase;
    color: white;
    border-radius: 0;
    padding: 10px 20px;
}

.navbar-brand {
    margin: auto;
}

.book-now:hover {
    background-color: #F7DEB2;
    color: #08242C;
}

.nav-line {
    display: flex;
    align-items: center;
    gap: 15px;
}

.line {
    flex: 1;
    height: 1px;
    background: #ffffff98;
    margin: 0 10px;
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('../image/img9.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100vh;
    width: 100%;
}

.hero-section .container {
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-section .cover {
    color: #fff;
    max-width: 800px;
}

.super-title {
    font-family: "Cormorant Infant", serif;
    font-size: 5rem;
}

.super-title2 {
    font-family: "Cormorant Infant", serif;
    font-size: 6rem;
}

.title {
    font-family: "Cormorant Infant", serif;
    font-size: 5rem;
}

.detalis {
    margin-top: -50px;
    z-index: 10;
}

.super-title+p {
    font-size: 18px;
}

.sector {
    padding: 80px 0;
}

.room-card {
    background: rgba(255, 255, 255, 0.123);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 10px;
}

.sub-title {
    font-family: "Cormorant Infant", serif;
    font-size: 3rem;
}

.facilities-card {
    background: rgba(255, 255, 255, 0.055);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 30px 20px;
    border: 1px solid white;
}

.facilities-card p {
    font-size: 20px;
    text-align: center;
}

.facilities-card:hover {
    border: 1px solid #F7DEB2;
    box-shadow: 0 0 2px rgba(247, 222, 178, 0.5);
    transition: all 0.3s ease;
    transform: translateY(-5px);
}

.divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #ccc;
    margin: 0 10px;
}

.logo-footer {
    width: 100px;
}

a {
    color: white;
    text-decoration: none;
}

@media(max-width:900px) {
    .facilities-text {
        flex-direction: column-reverse;
    }
    .super-title{
        font-size:4rem;
    }
    .super-title2{
        font-size:4rem;
    }
    .detalis{
        margin-top:0;
    }
    .sector{
        padding:50px 0;
    }
    .title{
        font-size:3rem;
    }
    .sub-title{
        font-size:2rem;
    }
}
@media(max-width:500px){
    .super-title{
        font-size:3rem;
    }
    .super-title+p{
        font-size:16px;
    }
    .line{
        display:none;
    }
    .navbar .container{
        flex-direction: row-reverse;
    }
    .navbar-brand{
        margin:0;
    }
    .butoni-nav{
        display:none;
    }
}