/* --------------------------- */
/* 1920px and above            */
/* --------------------------- */
@media (min-width: 1920px) {
  #highlight { margin-top: 1020px; }
}

/* --------------------------- */
/* Max 1680px                  */
/* --------------------------- */
@media (max-width: 1680px) {
  #highlight { margin-top: 895px; }

  .home-container .text-container { top: 70%; }
  .home-container .arrow-dropdown { top: 75%; }
}

/* --------------------------- */
/* Max 1400px                  */
/* --------------------------- */
@media (max-width: 1400px) {
  #highlight { margin-top: 710px; }

  .home-container .text-container,
  .home-container .arrow-dropdown {
    top: 55%;
  }
}

/* --------------------------- */
/* Max 768px (Tablet & Mobile) */
/* --------------------------- */
@media (max-width: 768px) {

  .d-sm-none { display: none; }

  /* Mobile Navigation */
  .navigation {
    display: none;
    flex-direction: column;
    background: var(--primary-color);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }

  .navigation.open { display: flex; }
  .navigation .nav-link { color: var(--white-color); width: 100%; display: block; }
  .mobile-icon { display: flex; }

  /* Home Section */
  #home .home-container { margin-top: 0; }
  #home .home-container .image-box { padding-top: 0; width: 100%; }
  #home .scrolling-section { width: 100%; }

  .home-container .text-container {
    top: 150%;
    left: 25%;
    transform: translateX(-16%);
  }

  .home-container .text-container h3 { text-align: center; }

  .home-container .arrow-dropdown {
    top: 220%;
    left: 50%;
    transform: translateX(-50%);
  }

  /* Highlight Section */
  #highlight { margin-top: 550px; }

  .highlight-container {
    flex-direction: column;
  }

  .highlight-container .box-1,
  .highlight-container .box-2,
  .highlight-container .box-3 {
    width: 90vw;
  }

  .highlight-container .box-3 { min-height: 250px; }
  .highlight-container .box-2 { flex-direction: column; }
  .highlight-container .box-2 ul { align-self: center; }

  #gallery { margin-top: 50px !important; }

  /* Gallery Section */
  .gallery-wrapper { flex-direction: column; gap: 30px; }
  .gallery-section .title { font-size: 10vw; }

  .scrolling-columns {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .column {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 0;
  }

  .column.left { padding-top: 35vh; }

  .column img,
  .center-img {
    width: 80vw;
    max-width: 300px;
    max-height: 350px;
  }

  /* Amenities */
  .amenities-swiper { margin-top: -316px; }

  .amenities-container {
    width: 90vw;
    margin-top: 0;
    display: none !important;
  }

  .title-with-image {
    width: 90vw;
    padding: 100px 10px;
  }

  .title-with-image h1 {
    padding-left: 10px;
    font-size: 10vw;
  }

  .amenities-container .image {
    margin-left: 38px;
    margin-top: 8px;
  }

  /* Nearby Section */
  #nearby { width: 100vw; }
  #nearby .nearby-image { width: 100%; }

  #nearby .nearby-container {
    display: block;
    width: 100vw;
    margin: 0;
  }

  #nearby .nearby-container .nearby-content {
    align-items: center;
  }

  #nearby .nearby-container .nearby-content h1 {
    font-size: 20vw;
  }

  #nearby .nearby-container .nearby-content h1 span {
    font-size: 5vw;
  }

  #nearby .nearby-container .nearby-content .nearby-content-name h2 {
    font-size: 6vw;
    padding-bottom: 50px;
  }

  /* Footer */
  .footer .footer-second .container,
  .footer .copyright .container {
    flex-direction: column;
  }

  .footer-btn {
    padding: 20px 10px;
    font-size: 14px;
  }
}

/* --------------------------- */
/* Max 480px (Small Mobile)    */
/* --------------------------- */
@media (max-width: 480px) {
  .column img,
  .center-img {
    width: 70vw;
    max-height: 300px;
  }
}
