body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center; /* This vertically centers logo and nav */
  padding: 20px 0;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 8px 0;
}

.hero {
  background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?q=80&w=1200&auto=format&fit=crop') no-repeat center center/cover;
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.hero .btn {
  background: #f90;
  padding: 12px 25px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
}

.destinations, .services, .about, .contact {
  padding: 60px 0;
}

h2 {
  margin-bottom: 30px;
  text-align: center;
}

.destinations-grid, .services-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.destination, .service {
  flex: 1 1 250px;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

.destination-img {
  height: 180px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  margin-bottom: 15px;
}

form {
  margin-top: 20px;
}

.form-group {
  margin-bottom: 15px;
}

input, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: inherit;
}

textarea {
  height: 100px;
}

.btn {
  background: #f90;
  color: #fff;
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  border-radius: 4px;
}

footer {
  background: #333;
  color: #fff;
  padding: 40px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.social-links a {
  margin-right: 15px;
  text-decoration: none;
  color: #333;
}

.social-links a i {
  margin-right: 5px;
}

.widget {
  padding: 60px 0;
  background: #f5f9fc;
}

.widget > div {
  margin: 0 auto;
  max-width: 1200px;
}

.lang-switcher {
  margin-left: 20px;
  font-size: 14px;
  white-space: nowrap;
}

.lang-switcher a,
.lang-switcher span {
  text-decoration: none;
  color: #333;
}



.burger {
  display: none; /* hidden by default on desktop */
}

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


@media (max-width: 768px) {
  .burger {
    display: block;
    color: #333;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
  }

  .menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px; /* adjust depending on header height */
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px;
    gap: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .menu.active {
    display: flex;
  }

  .menu nav {
    flex-direction: column;
    width: 100%;
  }

  .menu nav a {
    padding: 10px;
    text-align: left;
  }

  .lang-switcher {
    margin-top: 10px;
    text-align: left;
    width: 100%;
    padding: 0 10px;
  }

  header .container {
    position: relative; /* needed for absolute menu inside */
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* ✅ Add scrollbar hiding styles here */

/* Chrome, Safari, Edge, Opera */
body::-webkit-scrollbar {
  display: none;
}

/* Firefox */
body {
  scrollbar-width: none;
}

/* Prevent horizontal scroll */
html, body {
  overflow-x: hidden;
}