@import url('https://fonts.googleapis.com/css?family=Comfortaa');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lato', sans-serif;
}

.site-header {
  background-color:#003A80;
  padding: 15px 0;
  border-bottom: 1px solid #ccc;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo {
  max-height: 60px;
}

.navbar {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.nav-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap:15px;
}

.nav-menu li {
  position: relative;
}

.nav-menu > li > a {
  text-decoration: none;
  color: #fff;
  font-size: 17px;
  padding: 5px 0;
  display: inline-block;
  position: relative;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  border-bottom: 2px solid #05a4e3;
  border-top: 2px solid #05a4e3;
}

.arrow {
  border: solid #fff;
  border-width: 0 1.5px 1.5px 0;
  display: inline-block;
  padding: 3px;
  margin-left: 5px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

/* Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  z-index: 999;
  list-style: none;
  padding: 0;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu li a {
  color: #2c3e50;
  padding: 10px 13px;
  display: block;
  font-size: 13px;
  border-bottom: 1px solid #e1b756;
  text-decoration: none;
}

.dropdown-menu li:last-child a {
  border-bottom: none;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li a:hover {
  background-color: #f4f4f4;
}

/* Book Now Button */
.book-now-btn {
  background-color:#3b7bc3;
  color: white;
  padding: 5px 15px;
  text-decoration: none;
  font-size: 15px;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.book-now-btn:hover {
  background-color:#3b7bc3;
}
.menu-toggle .bar {
  height: 3px;
  width: 25px;
  background-color: #2c3e50;
 /* margin: 4px 15px 4px 20px;*/
  transition: 0.3s;
}
/* Responsive */
@media (max-width: 768px) {
  .nav-menu {
    flex-direction: column;
    align-items: flex-start;   gap:10px;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
  }

  .book-now-btn {
    margin-top: 10px;
  }
}

.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}


@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    width: 100%;
    flex-direction: column;
    padding: 10px 0;
	
 }


  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    width: 100%;
  /*padding: 10px 20px;*/
  }

  .nav-menu li a {
    width: 100%; margin:0;
    display: block;
  }
    .dropdown-menu {
    position: static;
    width: 100%;
  }
}

/*Rooms*/



body {
  margin: 0;
  color: #002f6c;
  text-align: center;
}

.guest-rooms {
  padding: 50px 20px;
  background-color: #fff;
}

.guest-rooms h2 {
  font-size: 2.5rem;
  color: #003366;
  margin-bottom:40px;
}

.subtitle {
  font-size: 1.5rem;
  color: #444;
  margin-bottom: 40px;
}

.room-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.room-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  width: 420px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.room-card:hover {
  transform: translateY(-5px);
}

.room-card img {
  width: 100%;
  height: auto;
  display: block;
}

.room-card h3 {
  font-size: 1.4rem;
  color: #002f6c;
  margin: 15px 0;
}

.btn {
  display: inline-block;
  background: #002f6c;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 5px;
  margin-bottom: 20px;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #004b99;
}

.center-btns {
  margin-top: 40px;
}

.btn.yellow {
  background-color: #ffd400;
  color: #002f6c;
  margin: 10px;
}

.btn.yellow:hover {
  background-color: #ffcc00;
}

/* ✅ iPad Mini layout (768px) fix */
@media (max-width: 1024px) and (min-width: 700px) {
  .room-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    gap: 20px;
  }

  .room-card {
    width: 95%;
    max-width: 360px;
  }

  .guest-rooms {
    padding: 40px 15px;
  }

  .btn {
    font-size: 0.95rem;
    padding: 9px 18px;
  }
}

/* ✅ Mob*
