/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html { scroll-behavior: smooth; }

/* Splash Screen */
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  background: url("imgs/mainimage.JPG") center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeout 2.5s ease forwards 3s;
  z-index: 1000;
  overflow: hidden;
}

#splash::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.75);
  top: 0;
  left: 0;
}

.splash-logo {
  width: 120px;
  z-index: 10;
  position: relative;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); opacity: 0.8; }
}

@keyframes fadeout { to { opacity: 0; visibility: hidden; } }

.hidden { display: none; }

/* Header */
header {
  width: 100%;
  padding: 10px 35px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 600;
  color: white;
}

.logo-img { width: 40px; height: auto; }

nav a {
  margin: 0 15px;
  text-decoration: none;
  font-weight: 400;
  font-size: 0.95rem;
  color: white;
  transition: 0.3s;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

nav a:hover {
  color: #ffcc66;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
}

.book-btn {
  background: #ff6600;
  color: white;
  border: none;
  padding: 8px 18px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9rem;
  transition: 0.3s;
}
.book-btn:hover { background: #e65c00; }

/* Hero */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url("imgs/mainimage.JPG") center/cover no-repeat;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.65);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; }
.hero-subtitle {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ff6600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.explore-btn {
  background: #ff6600;
  color: white;
  border: none;
  padding: 16px 40px;
  border-radius: 40px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.2rem;
  transition: 0.3s;
}
.explore-btn:hover {
  background: #e65c00;
  transform: scale(1.05);
}

/* Cards Section */
.cards-section {
  position: relative;
  padding: 60px 20px 20px;
}
.cards-wrapper { overflow: hidden; }
.cards-container {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}
.card {
  flex: 0 0 calc((100% - 60px) / 4);
  height: 320px;
  background: transparent;
  box-shadow: 0 10px 20px rgba(0,0,0,0.4);
  border-radius: 0;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}
.card img { width: 100%; height: 100%; object-fit: cover; }
.card-title {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.6);
  color: white;
  padding: 12px 0;
  font-weight: 600;
  transition: bottom 0.3s ease;
}
.card:hover .card-title { bottom: 0; }
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  color: white;
  background: rgba(0,0,0,0.4);
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 10;
  transition: all 0.3s ease;
}
.arrow:hover { background: rgba(0,0,0,0.6); transform: translateY(-50%) scale(1.2); }
.arrow.left { left: 10px; }
.arrow.right { right: 10px; }

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 9999;
}
.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}
.lightbox.show { opacity: 1; visibility: visible; }
.lightbox .close-btn {
  position: absolute;
  top: 20px; right: 30px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  font-weight: bold;
  transition: transform 0.3s ease;
}
.lightbox .close-btn:hover { transform: scale(1.2); }

/* About Section */
.about {
  padding: 100px 30px;
  background: #fff;
  color: #333;
}
.about-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}
.about-left { flex: 1; display: flex; flex-direction: column; gap: 15px; }
.about-header {
  display: flex;
  align-items: center;
  gap: 15px;
}
.about-logo { width: 50px; height: auto; }
.about-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #ff6600;
  margin: 0;
}
.about-left p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444;
  max-width: 500px;
}
.about-divider {
  width: 2px;
  background: #ff6600;
  height: 200px;
}
.about-right { display: flex; flex-direction: column; gap: 25px; }
.about-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.about-item .emoji {
  width: 32px; height: 32px;
  filter: brightness(0) saturate(100%) invert(46%) sepia(94%) saturate(1668%) hue-rotate(5deg) brightness(99%) contrast(106%);
}
.about-item p {
  font-size: 1rem;
  color: #333;
}

/* Services Section */
.services-section {
  position: relative;
  width: 100%;
  padding: 80px 20px;
  background: url("imgs/mainimage.JPG") center/cover no-repeat;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  flex-direction: column;
}
.services-section::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}
.services-section .services-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  width: 100%;
}
.services-section h2 {
  font-size: 2.8rem;
  color: #ff6600;
  margin-bottom: 20px;
}
.services-section p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 10px auto 30px auto;
}
.price-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.price-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 15px;
  padding: 20px 30px;
  width: 180px;
  transition: transform 0.3s, background 0.3s;
}
.price-card:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.2);
}
.price-card h3 {
  font-size: 1.3rem;
  color: #ff6000;
  margin-bottom: 10px;
}
.price-card p {
  font-size: 1.1rem;
  font-weight: bold;
  color: #fff;
}

/* Footer */
.footer {
  width: 100%;
  padding: 15px 30px;
  background: #f5f5f5;
  border-top: 1px solid #ccc;
  display: flex;
  justify-content: center;
}
.footer-content {
  max-width: 1100px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: #666;
}
.footer-left,
.footer-center,
.footer-right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: invert(39%) sepia(6%) saturate(0%) hue-rotate(190deg) brightness(82%) contrast(87%);
}
.book-modal.hidden { display: none; }
.book-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
.book-modal.show {
  opacity: 1;
  visibility: visible;
}
.book-modal-content {
  background: #fff;
  padding: 30px 40px;
  border-radius: 15px;
  text-align: center;
  position: relative;
  max-width: 350px;
  pointer-events: auto;
  width: 90%;
}
.book-modal h3 { margin-bottom: 20px; color: #ff6600; }
.book-buttons { display: flex; justify-content: space-around; gap: 10px; }
.book-option {
  display: inline-block;
  padding: 12px 20px;
  background: #ff6600;
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: 0.3s;
}
.book-option:hover { background: #e65c00; }
.close-book-modal {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Trip Details Modal */
.trip-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
.trip-modal.show { opacity: 1; visibility: visible; }
.trip-modal-content {
  background: #fff;
  padding: 30px 40px;
  border-radius: 15px;
  max-width: 700px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  text-align: left;
  position: relative;
  font-family: 'Poppins', sans-serif;
}
.trip-modal h2 {
  color: #ff6600;
  text-align: center;
  margin-bottom: 20px;
  font-size: 2rem;
}
.trip-day { margin-bottom: 20px; }
.trip-day h3 { color: #333; font-size: 1.3rem; margin-bottom: 8px; }
.trip-day p { color: #555; line-height: 1.6; font-size: 1rem; }
.close-trip-modal {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  color: #ff6600;
  font-weight: bold;
  transition: transform 0.3s ease;
}
.close-trip-modal:hover { transform: scale(1.2); }


@media (max-width: 768px) {
  nav a:not([href*="tripadvisor"]) { display: none; }
  header { flex-direction: row; justify-content: space-between; }

  .hero h1 { font-size: 2.2rem; }
  .hero-subtitle { font-size: 1rem; }
  .explore-btn { padding: 10px 20px; font-size: 0.9rem; }

  .cards-container { flex: 0 0 100%; gap: 15px; }
  .card { height: 200px; }

  .about-container { flex-direction: row; flex-wrap: wrap; justify-content: center; align-items: flex-start; gap: 20px; }
  .about-left { flex: 1 1 100%; text-align: left; }
  .about-left h2 { font-size: 1.8rem; }
  .about-left p { font-size: 1rem; }
  .about-right { flex: 1 1 100%; display: flex; flex-wrap: wrap; justify-content: flex-start; gap: 15px; }
  .about-item { flex: 0 0 100px; display: flex; flex-direction: column; align-items: center; gap: 5px; }
  .about-item .emoji { width: 40px; height: 40px; }
  .about-item p { font-size: 0.85rem; text-align: center; }

  /* Make divider horizontal on mobile */
  .about-divider {
    width: 100%;
    height: 2px;
    background: #ff6600;
    margin: 20px 0;
  }
}
