@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:#003A80;
  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:15px;
}

.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%;
  }
}

/*Photo Gallery*/
.gallery-container {
  max-width: 1140px;
  margin: 50px auto;
  padding: 0 20px;
  text-align: center;
}

.gallery-container h1 {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #333;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* New label for latest image */
.new {
  position: relative;
}

.new::after {
  content: "NEW";
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: rgba(255, 0, 0, 0.7);
  color: white;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 5px;
  z-index: 1;
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.lightbox-img {
  max-width: 90%;
  max-height: 80%;
  object-fit: contain;
 }

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
  color: white;
  cursor: pointer;
  background: transparent;
  border: none;
}

/* Navigation Arrows */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 30px;
  padding: 15px;
  cursor: pointer;
  z-index: 1001;
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}

.nav-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
/* View More Photos Button inside the gallery */
.view-more-tab {
  display: inline-block;
  margin-top: 30px;
  background-color:#FFCC00;
  color:black;
  font-size: 18px;
  font-weight: bold;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-align: center; cursor:pointer;
}

.view-more-tab:hover {
  background-color: #0078D7; color:#fff;
  transform: scale(1.05);
}

.view-more-tab:active {
  transform: scale(1);
}
