@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&display=swap');

html {
  height: 100%;
}

body {
  margin: 0;
  font-family: 'Playfair Display', serif;
  color: #333;
  background: #fff;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 120px;
}

main, section, .hero, .info, .reviews, .faq-section, .contact-section,
.photos-section, .price-section, .terms-section, .team-hero,
.concept-ambassador-section, .team {
  flex: 1;
}

footer {
  margin-top: auto;
}

/* ─── Navbar ─────────────────────────────────────────── */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom right, #0c2124, #0e3b38);
  padding: 10px 20px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

.navbar .logo {
  height: 100px;
  width: auto;
  opacity: 0.85;
  filter: brightness(0.9) contrast(1.1);
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.navbar a:hover,
.navbar a.active {
  color: #58855C;
}

/* Hamburger button */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav dropdown */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: linear-gradient(to bottom, #0e3b38, #0c2124);
  padding: 20px;
  gap: 16px;
  position: fixed;
  top: 120px;
  left: 0;
  right: 0;
  z-index: 999;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: #58855C;
}

/* ─── Buttons ────────────────────────────────────────── */

.btn {
  background: #2d4830;
  color: white;
  padding: 10px 18px;
  margin-right: 10px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background 0.3s;
}

.btn:hover {
  background: #3b5e3f;
}

.btn-outline {
  border: 2px solid #2d4830;
  color: #2d4830;
  padding: 8px 15px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-outline:hover {
  background: #2d4830;
  color: white;
}

/* ─── Modal ──────────────────────────────────────────── */

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.modal.hidden {
  display: none;
}

.modal-content {
  background: #fff;
  padding: 2rem;
  max-width: 600px;
  width: 90%;
  border-radius: 8px;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.6;
}

.close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ─── Footer ─────────────────────────────────────────── */

footer {
  background: linear-gradient(to bottom right, #0c2124, #0e3b38);
  color: white;
  padding: 40px 20px;
  text-align: center;
  font-family: 'Playfair Display', serif;
}

.footer-info {
  margin-bottom: 25px;
}

.footer-socials a {
  color: white;
  margin: 0 8px;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.footer-socials a:hover {
  color: #58855C;
}

footer a {
  color: white;
  text-decoration-line: underline;
  font-weight: 600;
}

footer a:hover  { color: #58855C; }
footer a:visited { color: white; }

.copyright {
  font-size: 0.9em;
  margin-top: 15px;
  color: #ccc;
}

/* ─── Language toggle ────────────────────────────────── */

.lang-toggle {
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 5px 12px;
  border-radius: 999px;
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}

.lang-toggle:hover {
  background: white;
  color: #0c2124;
}

/* ─── Responsive ─────────────────────────────────────── */

@media (max-width: 768px) {
  body {
    padding-top: 90px;
  }

  .mobile-nav {
    top: 90px;
  }

  .navbar ul,
  .navbar-right .lang-toggle {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .navbar-right {
    gap: 12px;
  }

  .navbar-right .lang-toggle {
    display: block;
    font-size: 0.8rem;
    padding: 4px 10px;
  }

  .navbar .logo {
    height: 70px;
  }

  footer {
    padding: 30px 16px;
  }
}
