@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Header */

header {
  width: 100%;
  position: sticky;
  top: 0;
  background: #2c2d2d;
  padding: 12px 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #eee;
  z-index: 1000;
}

.header-container {
  width: 100%;
  max-width: 1600px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Empty balancing div */
.balance-div {
  width: 275px;
}


.balance-div2 {
    width: 370px;
}

/* Center Logo */
.logo {
  flex: 1;
  text-align: center;
}

.logo img {
  width: 120px;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* Desktop Navigation */
nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav ul li a {
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
  font-size: 18px;
  color: #cfc5b2;
  font-weight: 500;
  text-transform: uppercase;
}

/* Mobile Menu Button */
.menu-btn {
  display: none;
  font-size: 30px;
  cursor: pointer;
  user-select: none;
  color: #fff;
}

/* Close Button */
.close-btn {
  display: none;
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 32px;
  cursor: pointer;
  font-weight: bold;
  color: #2c2d2d;
}

/* ===== DROPDOWN ===== */

.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 38px;
  left: 0;
  min-width: 200px;
  background: #d9cdb9;
  border-radius: 6px;
  padding: 8px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 999;
}

/* Show on hover */
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 10px 18px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #2c2d2d;
  text-transform: uppercase;
  border-bottom: 1px solid rgb(0 0 0 / 33%);
  margin: 0 10px;
}

.dropdown a:last-child {
  border-bottom: none;
}

.dropdown a:hover {
  background: rgba(0,0,0,0.06);
}


/* Mobile Responsive */
@media (max-width: 768px) {

  .balance-div {
    display: none;
  }

  .balance-div2 {
    display: none;
  }

  nav {
    font-family: "Montserrat", sans-serif;
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background: #fff;
    padding: 60px 20px;
    border-right: 1px solid #ddd;
    box-shadow: 2px 0 15px rgba(0,0,0,0.1);
    transition: 0.3s ease;
    z-index: 2000;
  }

  nav.active {
    left: 0;
  }

  nav ul {
    flex-direction: column;
    gap: 20px;
  }

  .menu-btn {
    display: block;
  }

  .logo {
    flex: none;
    margin: 0 auto;
  }

  .logo img {
    width: 110px;
  }

  .close-btn {
    display: block;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    padding: 0;
  }

  .dropdown a {
    padding-left: 0;
    border: none;
    color: #2c2d2d;
  }

}



/*2*/

/*2*/