/* ─────────────── Reset & Base ─────────────── */

html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}
/* - ------------- use for zoomin navbar container ---------------*/
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* ─────────────── Banner ─────────────── */
.banner {
  background-color: #182249;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  overflow: hidden;
  z-index: 101;
}

.banner-image {
  width: 100%;
  height: 80px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;


  animation: zoomIn 0.9s ease-out forwards;
  opacity: 0;
  transform: scale(0.8);
}

/* Default image logic */
.banner-img {
  display: none;
  height: 80px;
  object-fit: cover;
  width: 100%;
  max-width: 5120px;
}

.desktop-only { display: none; }
.tablet-only { display: none; }
.mobile-only { display: none; }

.banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* or fill, if you want exact stretch */
  display: block;
}

/* ─────────────── Navbar ─────────────── */
.navbar {
  background-color: #182249;
  color: white;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 10px 0;
  box-sizing: border-box;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1450px;
padding: 0 4vw;
  margin: 0 auto;
  box-sizing: border-box;
  gap: 5px; /* spacing between groups */

  animation: zoomIn 1s ease-out forwards;
  opacity: 0;
  transform: scale(0.8);
  animation-delay: 0.3s;
}


.logo img {
  max-height: 40px;
}


.nav-links {
  display: flex;
  gap: 5px;
  list-style: none;
  padding: 0;
  margin: 0;
    flex-shrink: 0;
}


.logo {
  flex: 0 0 auto;
  transition: transform 0.2s ease;
}

.logo:hover {
  transform: scale(1.1);
}

.login-btn {
  background-color: transparent;
  color: white;
  font-size: 16px;
  font-weight: bold;
  padding: 8px 18px;        /* consistent */
  border: 1px solid white;
  border-radius: 10px;
  white-space: nowrap;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.nav-links li {
  white-space: nowrap;
 align-items: center;
list-style: none;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  padding: 8px 5px;
  transition: color 0.3s ease;
}

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

.navbar-right {
    flex-shrink: 0;
  display: flex;
  gap: 8px;
  align-items: center;

}

.language-select {
  padding: 6px 5px;
  border-radius: 10px;
  font-size: 14px;
  background-color: white;
}


.login-btn-mobile,
.reg-btn-mobile {
  white-space: nowrap;
  min-width: 80px;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
 text-decoration: none;
 }

.login-btn,
.reg-btn {
  white-space: nowrap;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
 text-decoration: none;
 }

.login-btn-mobile {
  background-color: transparent;
  color: white;
  font-size: 16px;
  padding: 8px 10px;
}

.login-btn-mobile:hover {
  color: #FAAB1C;
}


.login-btn:hover {
  color: #FAAB1C;
}

.reg-btn {
  background-color: #FAAB1C;
  color: black;
  font-size: 16px;
  padding: 8px 20px;
  border-radius: 30px;
  transition: transform 0.2s ease;
}

.reg-btn:hover {
  transform: scale(1.08);
}

.reg-btn-mobile {
  background-color: #FAAB1C;
  color: black;
  font-size: 16px;
  padding: 8px 20px;
  border-radius: 30px;
  transition: transform 0.2s ease;
margin: 20px;
}

.reg-btn-mobile:hover {
  transform: scale(1.08);
}


  .auth-buttons {
    display: none !important;
    gap: 6px;
  }

/* ─────────────── Mobile Nav ─────────────── */
.menu-toggle {
  display: none;
  background: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
border-color: white;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background-color: #182249;
  width: 100%;
  padding: 10px 0;
}

.mobile-nav a {
  color: white;
  text-decoration: none;
  padding: 15px 20px;

}

.mobile-nav a:hover {
  color: #faab1c;
}

.mobile-nav button {
  margin: 10px 20px;
  padding: 12px;
  font-size: 15px;
  width: calc(100% - 40px);
  border-radius: 8px;
}


.login-btn-mobile {
  margin: 10px;
  background: transparent;
  border: 1px solid #cdcfd7;
  margin: 0 20px;
  border-radius: 30px;
}

.login-btn-mobile {
  background: transparent;
  border: 1px solid #cdcfd7;
}

.login-btn-mobile {
  margin: 10px;
  background: transparent;
  border: 1px solid #cdcfd7;
}

.mobile-nav .reg-btn {
  background-color: #FAAB1C;
  color: black;
}

.mobile-language-select {
  margin: 10px 20px;
  width: calc(100% - 40px);
}

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

/* ────────────────────────────── */
/* 📱 Mobile View (max-width: 767px) */
@media (min-width: 441px) and (max-width: 767px) {
  .mobile-only { display: block !important; }
  .tablet-only, .desktop-only { display: none !important; }

  /* Add this line */
  .banner-img.mobile-only { display: block !important; }

.navbar-container {
  flex-direction: row;
  justify-content: space-between;
}

.nav-links,
.auth-buttons {
  display: none !important;
}


  .logo img {
    max-height: 40px;
  }

  .banner-image {
    height: 80px;
  }

  .language-select {
    font-size: 11px;
    padding: 4px 6px;
    margin-right: 8px;
font-size: 12px;
  }

  .nav-links,
  .auth-buttons {
    display: none !important;
  }

  .menu-toggle {
    display: block;
  }
}

/* ────────────────────────────── */
/* 📲 iPad / Tablet View (768–1150px) */
@media (min-width: 800px) and (max-width: 1150px) {
 .tablet-only { display: block !important; }
  .mobile-only, .desktop-only { display: none !important; }

  /* Add this line */
  .banner-img.tablet-only { display: block !important; }

  .banner-inner,
  .banner-image {
    height: 80px;
  }

  .navbar-container {
    flex-direction: row;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }

  .logo img {
    max-height: 40px;
  }

  .nav-links {
    display: none !important; /* 👈 hide desktop nav */
  }

  .auth-buttons {
    display: none !important; /* 👈 hide login/register */
  }

  .language-select {
    font-size: 16px;
    padding: 5px 5px;
  }
}

/* ────────────────────────────── */
/* 🖥️ Desktop View (min-width: 1151px) */
@media (min-width: 1151px) {
  .desktop-only { display: block !important; }
  .mobile-only, .tablet-only { display: none !important; }

  /* Add this line */
  .banner-img.desktop-only { display: block !important; }
  .menu-toggle {
    display: none;
  }

.navbar-container {
  flex-wrap: nowrap;
  justify-content: space-between;
}


  .logo img {
    max-height: 40px;
  }

  .nav-links {
    display: flex !important;
  }

  .auth-buttons {
    display: flex !important;
  }

  .language-select {
    display: block;
font-size: 16px;
  }

  .banner-inner,
  .banner-image {
    height: 80px;
  }
}

@media (max-width: 1347px) { /* you already have this */
  .nav-links,
  .auth-buttons {
    display: none !important;
  }

  .menu-toggle {
    display: block !important;
  }
}

