@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:#344a71;
  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: 30px;
}

.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%;
  }
}
/*Slidshow*/
.slideshow-container {
      position: relative;
      width: 100%;
      max-height: 500px;
      overflow: hidden;
    }

    .mySlides {
      width: 100%;
      animation: fade 2s ease-in-out;
    }
   .mySlides img {
      width: 100%;
      height: auto;
      max-height: 500px;
      object-fit: cover;
      display: block;
    }

    .caption {
      position: absolute;
      top:50%;
      left: 50%;
      transform: translateX(-50%);
      color: #fff;
      font-size:50px; font-weight:bold;
      text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
      text-align: center;
      z-index: 2;
      width: 90%;
    }

    @keyframes fade {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    .prev, .next {
      cursor: pointer;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
   
      font-size: 36px;
      user-select: none;
      z-index: 10;
      background: none;       /* ✅ No background */
      border: none;           /* ✅ No border */
      padding: 0 12px;
    }

    .next {
      right: 15px;
    }

    .prev {
      left: 15px;
    }

    .prev:hover, .next:hover {
      color: #ccc;
    }

    @media (max-width: 768px) {
      .caption {
        font-size: 14px;
        bottom: 10px;
      }

      .prev, .next {
        font-size: 28px;
      }
    }

/*Event*/
    .hero-section {
      position: relative;
      background:  url('../images/event.jpg') no-repeat center center/cover;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: flex-start;
    }

    .content-box {
      background: rgba(255, 255, 255, 0.9);
      max-width: 450px;
      padding: 30px;
      margin-left: 80px;
      border-radius: 15px;
      animation: slideIn 1s ease forwards;
    }

    @keyframes slideIn {
      from {
        transform: translateX(-50px);
        opacity: 0;
      }
      to {
        transform: translateX(0);
        opacity: 1;
      }
    }

    .content-box h1 {
      font-size: 36px;
      color: #1e3a5f;
      margin: 0 0 10px; font-family:Comfortaa, cursive; text-transform:uppercase;
    }

    .content-box strong {
      display: block;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .content-box p {
      color: #333;
      margin-bottom: 25px;
      line-height: 1.6; font-size:18px;
    }

    .content-box .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;
    }

    .content-box .btn:hover {
      background-color: #16314e;
    }

    @media (max-width: 768px) {
      .hero-section {
        justify-content: center;
        padding: 20px;
        height: auto;
      }

      .content-box {
        margin: 0;
        max-width: 90%;
        padding: 20px;
      }

      .content-box h1 {
        font-size: 28px;
      }
    }
	/*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: 450px;
      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;font-family:Comfortaa, cursive; 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;
    }

    .things-content .btn:hover {
      background-color: #16314e;
    }

    .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:40px;
}

.amenity {
  display: flex;
  align-items: center;
  gap: 10px;
}

.amenity img {
  width: 40px;
  height: 40px;    border: 2px solid #344A71;
    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; 
}
	