/* ==========================
   Global Styles
========================== */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background: #f2f2f2;
  color: #333;
  text-align: center;
}

p {
  text-align: justify;
  margin-bottom: 15px;
  font-size: 1rem;
  color: #333;
}

a {
  color: #2c7a7b;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ==========================
   Header & Navigation
========================== */
header {
  background: #2c7a7b;
  padding: 15px 20px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: auto;
}

.logo span {
  color: #fff;
  font-weight: bold;
  font-size: 1.5rem;
  margin-right: 5px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

nav a {
  color: #fff;
  font-weight: bold;
}

.menu-icon {
  display: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

#menu-toggle { display: none; }

@media (max-width:768px) {
  nav ul {
    flex-direction: column;
    position: absolute;
    top: 65px;
    right: 0;
    background: #2c7a7b;
    padding: 10px 20px;
    border-radius: 8px;
    display: none;
  }
  #menu-toggle:checked + .menu-icon + nav ul { display: flex; }
  .menu-icon { display: block; margin-left: auto; }
}

/* ==========================
   Hero
========================== */
.hero-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

#hero {
  max-width: 1000px;
  margin: 20px auto;
  padding: 20px;
}

#hero h1 {
  color: #2c7a7b;
  margin-bottom: 15px;
}

/* ==========================
   Day-by-Day Itinerary
========================== */
#itinerary {
  max-width: 1000px;
  margin: 20px auto;
  padding: 20px;
}

.day h3 {
  color: #2c7a7b;
  margin-bottom: 10px;
  text-align: left;
}

.day p {
  text-align: justify;
  margin-bottom: 15px;
}

.note {
  font-size: 0.85rem;
  color: #666;
  text-align: left;
  margin-top: 15px;
}

/* ==========================
   Inclusions & Exclusions
========================== */
#inclusions {
  max-width: 1000px;
  margin: 20px auto;
  padding: 20px;
  text-align: center;
}

.inclusions-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 15px;
}

.inclusions-wrapper .box {
  width: 48%;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  text-align: left;
}

.inclusions-wrapper .box h3 {
  color: #2c7a7b;
  margin-bottom: 10px;
}

@media (max-width:768px) {
  .inclusions-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .inclusions-wrapper .box {
    width: 90%;
    margin-bottom: 20px;
    text-align: center;
  }
}

/* ==========================
   Accommodations & Slider
========================== */
#accommodations {
  max-width: 1000px;
  margin: 20px auto;
  padding: 20px;
}

.slider-wrapper {
  position: relative;
  overflow: hidden;
}

.slider-manual {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 0;
}

.slider-manual img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(44, 122, 123, 0.7);
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
}

.slider-btn.left { left: 5px; }
.slider-btn.right { right: 5px; }

/* ==========================
   Maps & Directions
========================== */
#maps {
  max-width: 900px;
  margin: 20px auto;
  padding: 20px;
}

#maps img {
  width: 100%;
  border-radius: 10px;
}

/* ==========================
   Call to Action
========================== */
#cta {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
}

#cta h2 {
  color: #2c7a7b;
  margin-bottom: 15px;
  text-align: center;
}

#cta p {
  font-size: 1rem;
  text-align: justify;
}

.cta-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  background: #2c7a7b;
  color: #fff;
  padding: 12px 24px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
}

.cta-btn:hover { background: #1b4f51; }

/* ==========================
   Footer
========================== */
footer {
  background: #2c7a7b;
  color: #fff;
  text-align: center;
  padding: 15px 10px;
  margin-top: 20px;
}

/* ==========================
   WhatsApp Floating Button
========================== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  z-index: 100;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

