@import url('https://fonts.googleapis.com/css?family=Cabin:500,600,700|Kanit:200,300,300i,400');

body, html {
  margin: 0;
  font-family:'Cabin', Helvetica, Arial, sans-serif ;font-size:17px;font-weight:normal;
}

.fade {
  animation: fadeEffect 1.5s ease;
}

@keyframes fadeEffect {
  from { opacity: 0.4; }
  to { opacity: 1; }
}

/* ===== TOP BAR (Desktop) ===== */
.top-bar {
  background:#9b2242;
  color: #fff;
  padding: 6px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px; height:25px;
}

.top-left {
  display: flex;
  align-items: center;
  gap: 15px;
}
.top-right {
  display: flex;
  align-items: center;
  gap: 15px;
  white-space: nowrap;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}
.social-icons a {
  color: #fff;
  margin-right: 10px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #a6192e;
}

.contact-link, .phone-link {
  color: #fff;
  text-decoration: none;
}

/* ===== MOBILE BLACK BAR ===== */
.mobile-bar {
  display: none;
  background: #0a0a0a;
  color: #fff;
  padding: 10px 5%;
  height: 65px;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
}

.mobile-bar a, .mobile-bar span {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
}

.follow-toggle.active {
  background: #004b75;
  padding: 4px 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-social {
  display: none;
  gap: 10px;
  align-items: center;
}

.mobile-social.active {
  display: flex;
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0; background:#ecedf5;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 8%;
}

.logo {
  width: auto;
  object-fit: contain;
}
/*@media (max-width: 900px) {
  .logo {
    height: 70px;
  }
}
 Desktop Menu */
.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-links li {
  position: relative;
  margin-left: 25px;
}

.nav-links a {
  color:#08205B;
  text-decoration: none;
  font-weight: 600;
  padding: 8px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color:#9B2242;
}
.nav-links a {
  position: relative;
  padding-bottom: 6px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background:#9B2242;
  transition: width 0.35s ease;
}

.nav-links a:hover::after {
  width: 100%;
}
/* Dropdown (desktop) */
/* ---------- MEGA MENU (Desktop) ---------- */
.dropdown-content {
  position: absolute;
  left: 0;
  top:32px;
  width:200px;  /* wider like Hilton vacations */
  background: #fff;
  padding: 20px;
  display: none;
  grid-template-columns: 1fr;
  gap: 10px;
  border-radius: 6px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.25);
}

.dropdown:hover .dropdown-content {
  display: grid;
}

.dropdown-content a {
  padding: 10px 12px;
  font-size: 15px;
  border-radius: 4px;
  color: #002856;
  transition: 0.25s;
}

.dropdown-content a:hover {
  background: #f3f7fe;
  color: #004b75;
}

/* Hamburger */
.menu-toggle {
  display: none;
  color:#071C32;
  font-size: 30px;
  cursor: pointer;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  height: 100vh;
  z-index: 999;
  overflow-y: auto;
  animation: slideDown 0.4s ease;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 8%;
  border-bottom: 1px solid #ddd;
}

.menu-logo {
  object-fit: contain;
}

.cancel-btn {
  font-size: 28px;
  cursor: pointer;
}

.mobile-menu-list {
  list-style: none;
  padding: 20px 8%;
  margin: 0;
}

.mobile-menu-list li {
  margin: 15px 0;
}

.mobile-menu-list a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
}

.mobile-menu-list a:hover {
  color: #004b75;
}

/* Submenu (mobile) */
.dropdown-submenu {
  list-style: none;
  margin: 8px 0 0 15px;
  padding-left: 10px;
  display: none;
}

.dropdown-submenu li {
  margin: 8px 0;
}

.dropdown-submenu a {
  font-size: 15px;
  color: #333;
}

.dropdown-submenu.active {
  display: block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .top-bar { display: none; }
  .mobile-bar { display: flex; height:auto; }
  .menu-toggle { display: block; }
  .nav-links { display: none; }
}

/* ===== SLIDESHOW ===== */
.slideshow-container {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.mySlides {
  display: none;
  width: 100%;
  height: 80vh;
}

.mySlides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
 }

.text {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 1.5em;
  font-weight: 600;
  background: rgba(0,0,0,0.4);
  padding: 10px 20px;
  border-radius: 5px;
}

.book-btn {
  position: absolute;
  bottom:100px;
  left: 50%;
  transform: translateX(-50%);
  background: #a6192e;
  color: white;
  font-weight: 600;
  padding:8px 25px;
  border-radius: 5px;
  text-decoration: none;
}

/*things to do*/


    .things-section {
      position: relative;
      background: url('../images/attraction.jpg') no-repeat center center/cover;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      overflow: hidden;
    }

    .things-content {
      background: rgba(255, 255, 255, 0.9);
      max-width: 500px;
      padding: 30px;
      margin-right: 60px;
      border-radius: 18px;
      opacity: 0;
      transform: translateX(100px);
      animation: slideInRight 1s ease-out forwards;
    }

    @keyframes slideInRight {
      to {
        transform: translateX(0);
        opacity: 1;
      }
    }

    .things-content h1 {
      font-size: 36px;
      color: #1e3a5f;
      margin: 0 0 10px; text-transform:uppercase;
    }

    .things-content strong {
      display: block;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .things-content p {
      color: #333;
      margin-bottom: 25px;
      line-height: 1.6;
    }

    .things-content .btn {
      padding: 12px 25px;
      background-color: #1e3a5f;
      color: white;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-size: 14px;
      text-transform: uppercase;
      transition: background 0.3s; text-decoration:none;
    }

    .things-content .btn:hover {
      background-color:#9B2242;
    }

    .book-now {
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      writing-mode: vertical-rl;
      text-orientation: mixed;
      background-color: #1e3a5f;
      color: white;
      padding: 15px 8px;
      border-radius: 10px 0 0 10px;
      font-weight: bold;
      cursor: pointer;
    }

    @media (max-width: 768px) {
      .things-section {
        justify-content: center;
        height: auto;
        padding: 20px;
      }

      .things-content {
        margin: 0;
        max-width: 90%;
        padding: 20px;
      }

      .things-content h1 {
        font-size: 28px;
      }
    }
	
	/*amenities*/
	
	.our-best {
  display: flex;
  flex-wrap: wrap;
  padding:50px 20px;
  align-items: center;
  justify-cont: center;
  gap: 30px;
}

.cont {
  flex: 1 1 500px;
  max-width: 600px;
}

.cont h2 {

  font-size: 35px;
  margin-bottom:25px;
  font-weight: 700; letter-spacing:2px;
  color:#0B4B87;
}

.cont p {
  font-size: 16px;
  line-height: 1.6; color:#454545;
}

.amenities {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap:25px;
}

.amenity {
  display: flex;
  align-items: center;
  gap: 10px;
}

.amenity img {
  width: 40px;
  height: 40px;    border: 2px solid #9b2242;
    padding: 5px; margin:0 15px;
}

.amenity p {
  font-size: 15px;
  font-weight: 500;
}

.image {
  flex: 1 1 400px;
  max-width: 550px;
}

.image img {
  width: 100%;
  height: auto;
  border-radius: 10px; margin-top:80px;
}
	
.feature-box {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    gap: 30px;
    background:#ced1d7;
}

.feature-box.reverse {
    flex-direction: row-reverse; background:#F3EDE7;
}

.img-side img {
    width: 100%;
    max-width: 450px;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
}

.text-side {
    max-width: 500px;
}

.text-side h3 {
    font-size: 35px;
    margin-bottom: 50px;
}

.text-side p {
    font-size:18px;
  }

/* ----- MOBILE RESPONSIVE ----- */

@media (max-width: 768px) {
    .feature-box,
    .feature-box.reverse {
        flex-direction: column;
        text-align: center;
    }

    .img-side img {
        height: 250px;
    }
}


