/* =========================
   RESPONSIVE.CSS (CLEAN FINAL)
========================= */

* {
  box-sizing: border-box;
}

/* =========================
   DESKTOP (992px+)
========================= */
@media (min-width: 992px) {

  /* TYPOGRAPHY */
  h1, h2, h3 {
    line-height: 1.6;
    margin-top: 15px;
    margin-bottom: 10px;
  }

  h1 { font-size: 2.4rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.7rem; }

  /* SLIDER */
  .slider-section,
  .slider-section .item {
    max-height: 500px;
    overflow: hidden;
  }

  .slider-section .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* HOTEL GRID */
  .k-hotel .hotel-box-kol {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }

  .k-hotel .hotel-box {
    width: 100%;
    min-height: 480px;
  }

  /* HEADER */
  .header-top_right {
    font-size: 1.6rem;
  }

  .header-top_right .k-red {
    font-size: 2rem;
    font-weight: bold;
    color: #ec2e48;
  }

  .header-top_right .k-blue {
    font-size: 2rem;
  }

  /* PACKAGE WIDTH */
  .package {
    width: 80%;
  }
}


/* =========================
   TABLET (768px - 991px)
========================= */
@media (min-width: 768px) and (max-width: 991px) {

  /* SLIDER */
  .slider-section,
  .slider-section .item {
    max-height: 350px;
    overflow: hidden;
  }

  .slider-section .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* HOTEL */
  .k-hotel .hotel-box-kol {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }

  .k-hotel .hotel-box {
    width: 48%;
  }

  /* TYPOGRAPHY */
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.9rem; }
}


/* =========================
   MOBILE (<=767px)
========================= */
@media (max-width: 767px) {

  /* NAV */
  .navbar-collapse ul li {
    display: block;
    width: 100%;
  }

  .navbar-nav .dropdown-menu {
    position: static !important;
    width: 100%;
    float: none;
    box-shadow: none;
    background: #fff;
  }

  /* SLIDER */
  .slider-section,
  .slider-section .item {
    max-height: 220px;
    overflow: hidden;
  }

  .slider-section .item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }

  /* HOTEL */
  .k-hotel {
    padding: 15px 10px;
  }

  .k-hotel .hotel-box-kol {
    display: block;
  }

  .k-hotel .hotel-box {
    width: 100%;
    margin-bottom: 15px;
  }

  .k-hotel .hotel-box img {
    height: 160px;
    object-fit: cover;
  }

  /* TYPOGRAPHY */
  h1 { font-size: 2rem !important; line-height: 1.5; }
  h2 { font-size: 1.7rem !important; line-height: 1.5; }

  p {
    font-size: 1.5rem;
    line-height: 1.8;
  }

  /* FOOTER */
  .footer-menu ul > li > a {
    font-size: 1.1rem;
    margin: 7px;
  }

  /* SOCIAL */
  .footer_section .Social ul > li > a {
    width: 70px;
    font-size: 3rem;
  }
}


/* =========================
   SMALL MOBILE (<=480px)
========================= */
@media (max-width: 480px) {

  h1 { font-size: 1.8rem !important; }
  h2 { font-size: 1.6rem !important; }

  .tours-box h3 {
    font-size: 1.6rem;
  }

  .tours-box p {
    font-size: 1.3rem;
  }

  .package-title {
    font-size: 1.6rem;
  }
}