/* Style Sheet */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Montserrat, sans-serif;
}

/* ===== Navbar Base ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 18px 6%;
  z-index: 1000;
  transition:
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Transparent state */
.navbar.transparent {
  background: transparent;
}

/* Scrolled state */
.navbar.scrolled {
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* ===== Logo ===== */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-box {
  width: 42px;
  height: 42px;
  background: linear-gradient(to bottom right, #f59e0b, #ca8a04);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
}

.logo-text {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  transition: color 0.3s ease;
}

.logo-text span {
  font-weight: 700;
}

/* ===== Nav Links ===== */
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  transition: color 0.3s ease;
}

/* Contact Button */
.contact-btn {
  background: linear-gradient(to bottom right, #f59e0b, #ca8a04);
  padding: 10px 18px;
  border-radius: 8px;
  color: #fff !important;
  font-weight: 600;
  transition: background 0.3s ease;
}

.contact-btn:hover {
  background: linear-gradient(to bottom right, #d97706, #a16207);
}

/* Change colors when scrolled */
.navbar.scrolled .nav-links a,
.navbar.scrolled .logo-text {
  color: #1e293b;
}

/* ===== Hamburger ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  border-radius: 5px;
  background: #fff;
  transition: 0.3s ease;
}

.navbar.scrolled .hamburger span {
  background: #424d5c;
}

/* ===== Mobile ===== */
@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 260px;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 30px;
    gap: 30px;
    transition: right 0.4s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.08);
  }

  .nav-links a {
    color: #111;
    font-size: 16px;
  }

  .nav-links.active {
    right: 0;
  }

  .hamburger {
    display: flex;
  }

  .contact-btn {
    width: 100%;
    text-align: center;
  }
}
