@media screen and (max-width:767px) {

  html,
  body {
    max-width: 100%;
    background-color: black;
    scroll-behavior: smooth;
  }

  /* * {
    background: #000 !important;
    color: #0f0 !important;
    outline: solid #f00 1px !important;
  }  */
  .navbar {
    --bs-navbar-padding-y: 0;
  }

  .navbar__container {
    padding: 0px;
  }

  .hero-image {
    height: 250px;
  }

  .img-responsive {
    width: 100%;
    height: 300px;
    padding-right: 5px;
    padding-left: 5px;
    border-radius: 20px;
  }

  .rooms {
    height: 1975px;
    justify-content: normal;
  }

  .rooms h1 {
    height: 150px;
    width: 380px;
    display: flex;
    justify-content: center;
    padding-top: 80px;

  }

  .rooms__card .button {
    margin-left: 0;
    height: 40px;
  }

  .rooms-pics {
    width: 100%;
    height: 225px;
  }

  .contact__container {
    
    color: #fff;
    height: 1150px;
    width: 100%;
    justify-content: center;

  }

  .contact__wrapper {
    display: grid;
    grid-template-columns: 1fr;
    padding-top: 0px;
    padding-left: 0px;
    /*padding-bottom: 200px; */
  }

  .contact__form {
    width: 80%;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    color: #fff;
    /* padding:15px 0 0 10px; */
  }

  .contact-heading h3 {
    text-align: center;
    font-size: 30px;
    font-weight: 500;

  }

  #contact-send-button {
    padding-left: 30%;
  }

  #send-button {
    /* margin-left: 65px; */
    width: 50%;
    height: 40px;
  }

  .hotel-address h3 {
    padding: 0;
    margin-right: 0px;
    /* padding-top: 40px; */
    /* padding-left: 70px; */
    /* margin: 50px; */

  }

  .hotel-address {
    justify-content: center;
  }

  .map {
    width: 80%;
  }

  .rooms__card:hover {}

  .rooms__card button:hover {}

  .rooms__wrapper {
    padding: 0;
    grid-template-columns: 1fr;
    height: 475px;

  }

  .bookButton {
    padding-left: 40px;
  }
}

/* Just navbar functionality */
@media screen and (max-width: 600px) {
  .navbar__container {
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    padding: 0;
  }

  .navbar__menu {
    display: grid;
    grid-template-columns: auto;
    margin: 0;
    width: 100%;
    position: absolute;
    top: -1000px;
    opacity: 1;
    transition: all 0.5s ease;
    z-index: -1;
  }

  .navbar__menu.active {
    background: #131313;
    top: 100%;
    opacity: 1;
    transition: all 0.5s ease;
    z-index: 99;
    height: 60vh;
    font-size: 1.6rem;
  }

  #navbar__logo {
    padding-left: 25px;
  }

  .navbar__toggle .bar {
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background: #fff;
  }

  .navbar__item {
    width: 100%;
  }

  .navbar__links {
    text-align: center;
    padding: 2rem;
    width: 100%;
    display: table;
  }

  .navbar__btn {
    padding-bottom: 2rem;
  }

  .button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    height: 80px;
    margin: 0;
  }

  #mobile-menu {
    position: absolute;
    top: 20%;
    right: 5%;
    transform: translate(5%, 20%);
  }

  .navbar__toggle .bar {
    display: block;
    cursor: pointer;
  }

  #mobile-menu.is-active .bar:nth-child(2) {
    opacity: 0;
  }

  #mobile-menu.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  #mobile-menu.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  ul {
    padding-left: 0;
  }

}