/* ===== Global Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #f5f5f5;
  color: #333;
  scroll-behavior: smooth;
  transition: background 0.4s, color 0.4s;
}

.btn {
  margin-top: 60px;
  padding: 12px 25px;
  background: #f1c40f;
  color: #222;
  border-radius: 5px;
  text-decoration: none;
  font-size: 18px;
  transition: 0.3s;
}

.btn:hover {
  background: #fff;
}

.hero-text .btn {
  margin-top: 40px;
  display: inline-block;
}
/* ===== Dark Mode ===== */
.dark {
  background: #1a1a1a;
  color: #eee;
}

.dark nav {
  background: #000;
}

.dark .card {
  background: #222;
  color: #fff;
}

.dark footer {
  background: #000;
}

/* ===== Navigation Bar ===== */
nav {
  width: 100%;
  background: #0a3d62;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 1000;
}

nav h2 {
  color: #fff;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 25px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  transition: 0.3s;
}

nav ul li a:hover {
  color: #f1c40f;
}

/* ===== Dark Mode Button ===== */
#darkToggle {
  background: #f1c40f;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
}

/* ===== Slideshow Hero ===== */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  margin-top: 70px;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s;
}

.slide.active {
  opacity: 1;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  text-shadow: 2px 2px 10px #000;
}

/* ===== Contact Info Section on Home ===== */
.contact-info {
  background: #fff;
  padding: 50px;
  text-align: center;
}

.contact-info h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 18px;
  margin: 10px 0;
}

/* ===== Destination Cards ===== */
.container {
  width: 90%;
  margin: auto;
  padding-top: 120px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-8px);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.book-btn {
  display: block;
  background: #0a3d62;
  color: #fff;
  padding: 12px;
  text-align: center;
  text-decoration: none;
  font-size: 18px;
}

/* ===== Floating WhatsApp Button ===== */
.whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25D366;
  padding: 15px;
  border-radius: 50%;
  color: white;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* ===== Booking Form ===== */
.booking-container {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.85);
  padding: 25px;
  border-radius: 10px;
  width: 350px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

#bookingForm {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#bookingForm input,
#bookingForm select,
#bookingForm button {
  padding: 12px;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

#bookingForm button {
  background: #0a3d62;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

#bookingForm button:hover {
  background: #07406e;
}

.contact-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.85);
  padding: 25px;
  border-radius: 10px;
  width: 850px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

#contactForm {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#contactForm input,
#contactForm textarea,
#contactForm button {
  padding: 12px;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

#contactForm button {
  background: #0a3d62;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

#contactForm button:hover {
  background: #07406e;
}

/* Contact page background */
#contactHero {
  height: 100vh;
  background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e') center/cover no-repeat;
}


/* ===== Payment form ===== */
.payment-hero {
  height: 100vh;
  background: rgb(40, 14, 80);
}

.payment-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  background: rgba(255, 255, 255, 0.85);
  padding: 25px;
  border-radius: 10px;
  width: 450px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

#paymentForm {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#paymentForm input,
#paymentForm button {
  padding: 12px;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

#paymentForm button {
  background: #0a3d62;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

#paymentForm button:hover {
  background: #07406e;
}
