* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    list-style: none;
    text-decoration: none;
    font-family: sans-serif;
}

.navbar {
    position: relative;
    overflow: visible;
}

.navbar-inner {
    display: flex;
    justify-content: space-between;
    font-weight: 500;
    font-size: 19px;
    width: 100%;
    align-items: center;
    padding-left: 10px;
    padding-right: 50px;
    background-color: #333;
    left: 0px;
    top: 0px;
    z-index: 111;
    padding-block: 12px;
}

.navbar-logo {
    flex: 1;
    display: flex;
    align-items: center;
}

.navbar-logo a img {
    width: 75px;
}

.navbar-menu {
    list-style-type: none;
    display: flex;
    gap: 20px;
    margin: 0;
    align-items: center;
}

.navbar-menu li {
    overflow: visible;
}

.navbar-menu li a {
    display: block;
    color: white;
    padding: 14px 20px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.navbar-menu li a:hover,
.navbar-menu li .dropdown:hover .dropbtn {
    background-color: #575757;
    color: #ddd;
}

.dropdown {
    display: inline-block;
}

.dropdown-content {
    display: block;
    position: absolute;
    background-color: #333;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    top: 100%;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, max-height 0.3s ease;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #575757;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    max-height: 200px;
}

.navbar-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    width: 30px;
    height: 25px;
}

.navbar-toggle .icon-bar {
    display: block;
    background-color: white;
    height: 3px;
    width: 100%;
    transition: all 0.3s ease;
    position: absolute;
    left: 0;
}

.navbar-toggle .bar1 {
    top: 0;
}

.navbar-toggle .bar2 {
    top: 50%;
    transform: translateY(-50%);
}

.navbar-toggle .bar3 {
    bottom: 0;
}

.navbar-toggle.active .bar1 {
    transform: rotate(-45deg) translate(-10px, 10px);
}

.navbar-toggle.active .bar2 {
    opacity: 0;
}

.navbar-toggle.active .bar3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

@media (max-width: 900px) {
    .navbar-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar-logo {
        width: 100%;
        justify-content: space-between;
        margin-bottom: 10px;
        height: 10px;
    }

    .navbar-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
        transition: max-height 0.3s ease, opacity 0.3s ease;
        overflow: hidden;
    }

    .navbar-menu.active {
        display: flex;
        opacity: 1;
        max-height: 500px;
    }

    .navbar-menu li {
        width: 100%;
    }

    .navbar-menu li a {
        padding: 10px;
        text-align: left;
    }

    .navbar-toggle {
        display: block;
        align-self: center;
        margin-left: auto;
        position: absolute;
        top: 30px;
        right: 20px;
    }

    .dropdown-content {
        position: static;
        display: none;
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        transition: opacity 0.3s ease, max-height 0.3s ease;
    }

    .dropdown.active .dropdown-content {
        display: block;
        opacity: 1;
        max-height: 200px;
        /* Adjust as needed */
    }
}

.layout-page {
    width: 100vw;
    max-width: calc(100% - 10%);
    margin: 50px auto 0px;
}

.image-block {
    width: 100%;
    height: 90vh;
    display: flex;
    gap: 6px;
}

.image-block img:first-child {
    width: 75%;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;

}

.image-block .left-part {
    width: 25%;
    overflow: hidden;
}

.image-block .left-part img {
    width: 100%;
    height: 32.6%;
    border-radius: 0px 0px 0px 0px;
}

.image-block .left-part img:first-child {
    border-radius: 0px 10px 0px 0px;
}

.image-block .left-part img:last-child {
    border-radius: 0px 0px 10px 0px;
}

.image-block .left-part img+img {
    margin-top: 3px;
}

.info {
    padding-top: 30px;

}

.info-div {
    display: flex;
    justify-content: space-between;
}

.info h1:first-child {
    font-size: 50px;
    text-transform: capitalize;
    margin-bottom: 12px;
}

.info p span {
    color: #333;
}

.info p span:first-child {
    color: #000;
    font-weight: 600;
    text-transform: capitalize;
}

.info p+p {
    margin-top: 10px;
}

.hotel-btn {
    display: block;
    width: fit-content;
    height: fit-content;
    min-width: 120px;
    padding: 9px 15px;
    font-size: 16px;
    font-weight: 550;
    color: #fff;
    text-align: center;
    background: #292929;
    border-radius: 3px;
    border: 2px solid #292929;
    text-decoration: none;
    transition: .2s;
}

.hotel-btn:hover {
    color: #292929;
    background-color: #fff;
    cursor: pointer;
}

.star-box {
    display: flex;
    align-items: center;
}

.star-box span {
    font-size: 30px;
    color: gold;
}

.description p {
    font-size: 16px;
    color: #333;
    line-height: 25px;
    margin-bottom: 20px;
}

.amenities h2 {
    font-size: 33px;
    text-transform: capitalize;
}

.amenities .facilities {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.amenities .facilities-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.facilities-box img {
    width: 35px;
    height: 35px;
}

.amenities .facilities-box span {
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 600;
}

.room-suit {
    margin-top: 60px;
}

.room-suit h2 {
    text-transform: capitalize;
    font-size: 45px;
    text-align: center;
}

.card-div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.room-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 320px;
    width: 330px;
    text-align: center;
    box-shadow: 0px 0px 10px #00000042;
    margin-bottom: 30px;
    padding-inline: 5px;
}

.room-card img {
    height: 150px;
    width: 100%;
    object-fit: cover;
}

.room-card h3 {
    font-size: 19.5px;
}

.room-card p {
    font-size: 15px;
    color: #333;
    padding-inline: 10px;
}

.room-suit .card-info {
    padding-inline: 10px;
}

.book-room {
    width: 100vw;
    height: 400px;
    background: url("https://html.themeori.net/hostily/assets/img/video.jpg");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    margin-top: 40px;
    position: relative;
    z-index: 1;
    display: flex;
    padding-left: 20px;
    align-items: center;
    justify-content: center;
    gap: calc(100% - 70%);

}

.book-room .layout {
    position: absolute;
    inset: 0;
    background: #000;
    opacity: 0.7;
}

.book-room p {
    font-size: 50px;
    color: #fff;
    position: relative;
}

.book-room .button {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    border: 1px solid #fff;
    position: relative;
    left: -100px;
    fill: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
    cursor: pointer;
    flex-shrink: 0;
}

.book-room .button:hover {
    background-color: #fff;
    fill: black;
}

.location-section {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-block: 20px;
}

.location-section p {
    display: flex;
    align-items: center;
    gap: 5px;
}

@media (max-width:880px) {

    .image-block {
        height: 100vh;
        flex-direction: column;
    }

    .image-block img:first-child {
        width: 100%;
        height: 100%;
        border-top-left-radius: 0px;
        border-bottom-left-radius: 0px;
    }

    .image-block .left-part {
        width: 100%;
        overflow: hidden;
        display: flex;
        gap: 10px;
    }

    .image-block .left-part img {
        height: 100%;
    }

    .info h1:first-child {
        font-size: 40px;
    }

    .amenities h2 {
        font-size: 30px;
    }

    .image-block .left-part img:first-child,
    .image-block .left-part img:last-child {
        border-radius: 0px 0px 0px 0px;
    }

    .room-suit h2 {
        font-size: 40px;
    }

    .amenities .facilities {
        grid-template-columns: repeat(2, 1fr);
    }

    .room-card h3 {
        font-size: 18px;
    }

    .book-room p {
        font-size: 40px;
    }

    .book-room .button {
        height: 80px;
        width: 80px;
    }
}


@media (max-width:550px) {

    #main-image {
        height: 50%;
        object-fit: cover;
    }

    .left-part {
        flex-direction: column;
    }

    .image-block {
        height: max-content;
    }

    .gallery-image {
        height: 100%;
        width: 25%;
        object-fit: cover;
    }

    #hotel-address {
        font-size: 15px;
    }

    .info h1:first-child,
    .room-suit h2 {
        font-size: 30px;
    }

    .description p {
        font-size: 14px;
    }

    .hotel-btn {
        min-width: 100px;
        font-size: 15px;
    }

    .amenities .facilities {
        grid-template-columns: repeat(1, 1fr);
    }

    .room-card h3 {
        font-size: 18px;
    }

    .book-room {
        gap: calc(100% - 90%);
    }

    .book-room p {
        font-size: 35px;
        width: 100%;
    }

    .book-room .button {
        height: 70px;
        width: 70px;
        left: -20px;
    }
}