/* === RESET === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* === NAVBAR === */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #021725;
  color: white;
  position: relative;
}

.logo {
  width: 60px;
  height: auto;
  border-radius: 50%;
}

.navbar-menu {
  display: none; /* hidden by default for mobile */
  flex-direction: column;
  gap: 15px;
  position: absolute;
  top: 65px;
  right: 20px;
  background-color: #021725;
  padding: 20px;
  border-radius: 8px;
  z-index: 10;
}

.navbar-menu li {
  list-style: none;
}

.navbar-menu li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease, transform 0.3s ease;
}

.navbar-menu li a:hover {
  color: #f39c12;
  border-bottom: 2px solid #f39c12;
  transform: scale(1.05);
}

.navbar-menu.active {
  display: flex;
}

/* Hamburger button */
.nav-toggle {
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
}

/* === HERO === */
.hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('hero-bg.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.hero h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
}

/* === SECTIONS === */
section {
  padding: 40px 20px;
  text-align: center;
}

section h2 {
  margin-bottom: 15px;
  color: #1e3799;
}

/* === FOOTER === */
footer {
  background-color: #021725;
  color: white;
  text-align: center;
  padding: 20px;
}

/* === MEDIA QUERIES === */

/* Mobile (up to 767px) */
@media(max-width:767px){
  .hero {
    padding: 60px 15px;
  }
  .hero h2 {
    font-size: 26px;
  }
  .hero p {
    font-size: 16px;
  }
  section {
    padding: 30px 15px;
  }
  section h2 {
    font-size: 20px;
  }
  footer {
    padding: 15px;
    font-size: 14px;
  }
}

/* Tablet / Small Laptops (768px–1024px) */
@media(min-width:768px) and (max-width:1024px){
  .hero {
    padding: 70px 20px;
  }
  .hero h2 {
    font-size: 30px;
  }
  .hero p {
    font-size: 17px;
  }
  section {
    padding: 35px 20px;
  }
  section h2 {
    font-size: 22px;
  }
}

/* Desktop (1025px and above) */
@media(min-width:1025px){
  .hero {
    padding: 100px 40px;
  }
  .hero h2 {
    font-size: 36px;
  }
  .hero p {
    font-size: 18px;
  }
  section {
    padding: 50px 40px;
  }
  section h2 {
    font-size: 26px;
  }
}

/* Desktop Navbar (already in your original) */
@media(min-width: 768px) {
  .nav-toggle {
    display: none;
  }
  .navbar-menu {
    display: flex !important;
    position: static;
    flex-direction: row;
    gap: 20px;
    background: none;
    padding: 0;
  }
}
