/* ============================================================
   shared.css — include this in every country page
   ============================================================ */

/* ── Navigation ── */
.navigation {
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background-color: rgba(255,255,255,0.95);
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.logo {
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.5rem;
}

.menu-icon {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: #1a1a1a;
  margin: 3px 0;
  transition: 0.3s;
  display: block;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover { color: #00b894; }

@media (max-width: 768px) {
  .menu-icon { display: flex; }

  nav.navigation ul.nav-links {
    display: none !important;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background-color: white;
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }

  nav.navigation ul.nav-links.active {
    display: flex !important;
    flex-direction: column;
  }

  .menu-icon.active .bar:nth-child(1) { transform: rotate(-45deg) translate(-5px, 6px); }
  .menu-icon.active .bar:nth-child(2) { opacity: 0; }
  .menu-icon.active .bar:nth-child(3) { transform: rotate(45deg) translate(-5px, -6px); }
}

/* ── Hero title always white ── */
.hero h1,
.hero p {
  color: white !important;
}

/* ── Footer ── */
.footer {
  background-color: #1a1a1a;
  color: white;
  padding: 60px 0 30px;
  margin-top: 80px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-section h4 {
  color: #00b894;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #fff; text-decoration: none; transition: color 0.3s ease; }
.footer-links a:hover { color: #00b894; }

.footer-section ul.footer-links.destinations {
  columns: 2;
  column-gap: 20px;
}

.social-links { display: flex; gap: 15px; margin-top: 20px; }
.social-links a { color: white; font-size: 1.5rem; text-decoration: none; transition: color 0.3s ease; }
.social-links a:hover { color: #00b894; }

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p { color: #aaa; }
