* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Big Shoulders Display', sans-serif;
}

body {
  color: #222;
  background-color: #fff;
}

/* Top Bar */
.top-bar {
  background-color: #FBB516;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 0;
}

.top-bar .container {
  max-width: 1500px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar .info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.top-bar i {
  margin-right: 6px;
  color: #000;
  font-size: 14px;
}

.top-bar .social-icons {
  display: flex;
  gap: 12px;
}

.top-bar .social-icons a {
  color: #000;
  font-size: 16px;
  transition: color 0.3s;
}

.top-bar .social-icons a:hover {
  color: #fff;
}

/* Navbar */
.navbar {
  background-color: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-content {
    max-width: 1500px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0px;
}

.logo img {
  width: 180px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 22px;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  transition: 0.3s;
  letter-spacing: 1px;
  font-size: 19px;
}

.nav-links a:hover,
.nav-links .active {
  color: #FBB516;
  border-bottom: 2px solid #FBB516;
}

.right-controls {
  display: flex;
  align-items: center;
  gap: 15px;
}

.lang {
  color: #000;
  text-decoration: none;
  font-weight: 600;
}

.btn-enrol {
  background-color: #FBB516;
  color: #000;
  padding: 6px 15px;
  text-decoration: none;
  border: 2px solid #000;
  font-weight: 700;
  transition: all 0.3s;
}

.btn-enrol:hover {
  background-color: #000;
  color: #fff;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.bar {
  height: 3px;
  width: 25px;
  background-color: #000;
  border-radius: 2px;
  transition: 0.3s;
}

.menu-toggle.is-active .bar:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}
.menu-toggle.is-active .bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.is-active .bar:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

/* Hero Section */
.hero {
  position: relative;
  height: 280px;
  background: url('https://karwansportsclub.com/wp-content/uploads/2025/10/Contact-us-Banner.png') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  color: #fff;
  text-align: center;
  z-index: 2;
}

.hero-content h4 {
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background-color: #fff;
    display: none;
    text-align: center;
    padding: 20px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .right-controls {
    display: none;
  }

  .hero {
    height: 300px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }
  .top-bar {
    background-color: #FBB516;
    color: #000;
    font-size: 10px;
    font-weight: 600;
    padding: 10px 0;
}
.top-bar .container {
    max-width: 1200px;
    margin: auto;
    display: flex
;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 10px;
}
.menu-toggle {
    margin: 15px;
}
 .right-controls {
    display: none;
  }

  .mobile-lang,
  .mobile-btn {
    display: block;
    margin-top: 10px;
  }

  .mobile-lang a {
    color: #000;
    font-weight: 600;
    text-decoration: none;
  }

  .mobile-btn a.btn-enrol {
    background-color: #d6a105;
    border: 2px solid #000;
    color: #000;
    font-weight: 700;
    padding: 6px 15px;
    display: inline-block;
    margin-top: 5px;
  }

  .mobile-btn a.btn-enrol:hover {
    background-color: #000;
    color: #fff;
  }










.menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background-color: #fff;
    display: none;
    text-align: center;
    padding: 20px 0;
  }

  .nav-links.active {
    display: flex;
  }

  /* ✅ SHOW right controls on mobile too */
  .right-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    position: absolute;
    right: 60px;
    top: 15px;
    z-index: 1001;
  }

  .right-controls .lang {
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
  }

  .right-controls .btn-enrol {
    background-color: #d6a105;
    color: #000;
    padding: 5px 12px;
    border: 2px solid #000;
    font-weight: 700;
    font-size: 14px;
  }

  .right-controls .btn-enrol:hover {
    background-color: #000;
    color: #fff;
  }

  /* Adjust logo & layout for mobile */
  .logo img {
    width: 120px;
  }

  .hero {
    height: 300px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }
.social-icons {
    display: none !important;
}
}
