/* Global Styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  box-sizing: border-box; /* Ensure consistent sizing */
}

/* Main Body Container */
.main-body {
  width: 80%;
  max-width: 1200px; /* Prevents excessive width on large screens */
  margin: 0 auto; /* Center the container */
  padding: 1rem; /* Padding for readability */
  box-sizing: border-box;
}

/* Responsive adjustments for main body */
@media screen and (max-width: 768px) {
  .main-body {
    width: 95%;
    padding: 0.5rem;
  }
}

@media screen and (max-width: 480px) {
  .main-body {
    width: 100%;
    padding: 0.5rem;
  }
}

/* Banner */
.banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* Main Navigation Menu */
.nav-container {
  width: 100%;
}

.drop_menu {
  background: #d65a3d;
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.drop_menu li {
  position: relative;
}

.drop_menu li a {
  display: block;
  padding: 12px 20px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 15px;
  color: #f1f5f8;
  text-decoration: none;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s;
}

.drop_menu li:last-child a {
  border-right: none;
}

.drop_menu li a:hover {
  background: #f65a32;
  color: #ffffff;
  text-decoration: underline;
}

/* Submenu */
.drop_menu li ul {
  position: absolute;
  left: -9999px;
  top: -9999px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.drop_menu li:hover > ul {
  left: 0;
  top: 100%;
  background: #8bafbd;
  padding: 0;
}

.drop_menu li ul li a {
  padding: 10px;
  display: block;
  width: 200px;
  text-indent: 15px;
  background: #8bafbd;
  border-left: 10px solid #f65a32;
  color: #f1f5f8;
  text-decoration: none;
}

.drop_menu li ul li a:hover {
  background: #254472;
  text-decoration: underline;
}

/* Hamburger Button */
.hamburger {
  display: none;
  cursor: pointer;
  font-size: 26px;
  padding: 12px 20px;
  color: #f1f5f8;
  background: #d65a3d;
  border: none;
  width: 100%;
  text-align: left;
}

/* Page Heading */
.page-heading {
  width: 90%;
  max-width: 1200px;
  margin: 20px auto;
  text-align: left;
  clear: both;
}

.page-heading h1 {
  margin: 0;
  padding: 10px 0;
  font-size: 2em;
  font-weight: bold;
  color: #376092;
}

/* Tabs */
.tab-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  border-bottom: 2px solid #ccc;
}

.tab-buttons button {
  background: #f1f1f1;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 20px;
  font-size: 16px;
  transition: 0.3s;
}

.tab-buttons button:hover {
  background: #ddd;
}

.tab-buttons button.active {
  background: #ccc;
  font-weight: bold;
}

.tab-content {
  display: none;
  padding: 20px;
  border: 1px solid #ccc;
  border-top: none;
}

.tab-content.active {
  display: block;
}

/* Hotels */
.hotels-container {
  width: 90%;
  max-width: 1200px;
  margin: 40px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.hotel-card {
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.hotel-card img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.hotel-content {
  padding: 15px;
}

.hotel-content h3,
.hotel-content p {
  margin: 5px 0;
  text-align: center;
}

.hotel-rating {
  font-size: 14px;
  font-weight: bold;
  color: #f39c12;
  margin: 5px 0;
}

.rates-table {
  width: 100%;
  border-collapse: collapse;
  margin: 10px 0;
  font-size: 12px;
}

.rates-table th,
.rates-table td {
  border: 1px solid #ccc;
  padding: 6px 10px;
  text-align: left;
}

.rates-table td:nth-child(2) {
  white-space: nowrap;
}

/* Buttons */
.hotel-button,
.responsive-btn {
  display: inline-block;
  width: 100%;
  max-width: 350px;
  padding: 16px 0;
  font-size: 18px;
  text-align: center;
  background-color: #003d76;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  word-wrap: break-word;
}

.hotel-button:hover,
.responsive-btn:hover {
  background-color: #002b55;
}

/* Adjust buttons on very small screens */
@media (max-width: 400px) {
  .hotel-button,
  .responsive-btn {
    font-size: 16px;
    padding: 14px 16px;
  }
}

/* Responsive */
@media (max-width: 600px) {
  .hamburger {
    display: block;
  }
  .drop_menu {
    width: 100%;
    flex-direction: column;
    display: none;
    position: absolute;
    top: 50px;
    left: 0;
    background: #d65a3d;
    z-index: 1000;
  }
  .drop_menu.show {
    display: flex;
  }
  .drop_menu li {
    width: 100%;
  }
  .drop_menu li ul {
    position: static;
    display: none;
    width: 100%;
    border: none;
  }
  .drop_menu li.active > ul {
    display: block;
  }
  .drop_menu li ul li a {
    width: 100%;
    border-left: 10px solid #f65a32;
    text-indent: 20px;
  }
  .tab-buttons {
    flex-direction: column;
  }
  .tab-buttons button {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  footer div[style*="display:flex"] {
    justify-content: center !important;
    text-align: center !important;
  }
  footer div[style*="display:flex"] div {
    text-align: center !important;
    flex: 100% !important;
    min-width: 0 !important;
    margin-bottom: 10px;
  }
}






<!-- ==============================
SECTION-ONLY CSS
============================== -->
.travel-info h2 {
  margin-top: 30px;
  font-size: 24px;
}

.travel-info h3 {
  margin-top: 15px;
  font-size: 20px;
}

.accordion-header {
  width: 100%;
  text-align: left;
  padding: 14px;
  font-size: 16px;
  font-weight: bold;
  border: 1px solid #dcdcdc;
  background: #f3f5f8;
  cursor: pointer;
  margin-top: 6px;
}

.accordion-header:hover {
  background: #e7ebf0;
}

.accordion-content {
  display: none;
  padding: 15px;
  border: 1px solid #dcdcdc;
  border-top: none;
  background: #ffffff;
}

.accordion.nested {
  margin-top: 10px;
}

.accordion.nested .accordion-header {
  background: #fafafa;
  font-weight: 600;
}



/* ==============================
RESPONSIVE IMPROVEMENTS
============================== */

@media (max-width: 768px) {

  .travel-info h2 {
    font-size: 20px;
  }

  .travel-info h3 {
    font-size: 18px;
  }

  .accordion-header {
    font-size: 15px;
    padding: 12px;
  }

  .accordion-content {
    padding: 12px;
  }
}

@media (max-width: 480px) {

  .travel-info h2 {
    font-size: 18px;
  }

  .travel-info h3 {
    font-size: 16px;
  }

  .accordion-header {
    font-size: 14px;
    padding: 10px;
  }

  .accordion-content {
    padding: 10px;
  }
}