/* ===== Global ===== */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background-color: #f2f2f2;
  color: #333;
  text-align: center;
}

a {
  color: #2c7a7b;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ===== Header ===== */
header {
  background-color: #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: 0 auto;
}

.logo span {
  color: white;
  font-weight: bold;
  font-size: 1.5rem;
}

nav ul.menu {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

nav ul.menu li a {
  color: white;
  font-weight: bold;
  font-size: 1rem;
}

nav ul.menu li a:hover,
nav ul.menu li a.active {
  color: #cce7e8;
}

.menu-icon {
  display: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

#menu-toggle {
  display: none;
}

/* ===== Responsive Menu ===== */
@media(max-width:768px) {
  nav ul.menu {
    flex-direction: column;
    position: absolute;
    top: 65px;
    right: 0;
    background-color: #2c7a7b;
    padding: 10px 20px;
    border-radius: 8px;
    display: none;
  }

  #menu-toggle:checked + .menu-icon + nav ul.menu {
    display: flex;
  }

  .menu-icon {
    display: block;
    margin-left: auto;
  }
}

/* ===== Hero Section ===== */
.hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* ===== Intro Section ===== */
.intro {
  max-width: 1000px;
  margin: 30px auto;
  padding: 0 20px;
}

.intro h1 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #0a6b3f;
}

.intro p {
  font-size: 1rem;
  line-height: 1.7;
}

/* ===== Tours Grid ===== */
.tours-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  justify-items: center;
}

.tour-box {
  background-color: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 320px;
  text-align: left;
}

.tour-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.tour-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.tour-box h2 {
  font-size: 1.2rem;
  margin: 10px 0;
  color: green;
}

.tour-box h3 {
  font-size: 1rem;
  margin: 8px 0;
  color: #2c7a7b;
}

.tour-box ul {
  font-size: 0.9rem;
  margin: 0 0 10px 20px;
  padding: 0;
}

/* ===== Buttons ===== */
.tour-button {
  display: inline-block;
  margin: 5px;
  padding: 5px 12px;
  font-size: 0.75rem;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  background-color: #2c7a7b;
  color: white;
  transition: 0.3s;
}

.tour-button:hover {
  background-color: #1b4f51;
  transform: scale(1.05);
}

/* ===== Footer ===== */
footer {
  background-color: #2c7a7b;
  color: white;
  text-align: center;
  padding: 15px 10px;
  margin-top: 20px;
}

footer a {
  color: #ffd700;
  font-weight: bold;
}

/* ===== 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: 50px;
}

/* ===== Responsive ===== */
@media(max-width:768px) {
  .tours-container {
    grid-template-columns: 1fr;
  }

  .tour-box {
    max-width: 90%;
  }
}
