/* css/mobile-menu.css */
/* Stiluri pentru meniul mobil (hamburger menu) si panoul asociat */

/* ========== BUTON HAMBURGER ========== */
.hamburger {
  display: none; /* Ascuns implicit, afisat doar pe mobil */
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background: #ffffff;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
  transform-origin: center;
}

/* Afisam hamburger-ul doar pe ecranele mici */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
}

/* ========== MENIU MOBIL (OFF-CANVAS) ========== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%; /* Initial ascuns in stanga */
  width: 100%;
  height: 100vh;
  background-color: #0B1C2B;
  z-index: 999;
  transition: left 0.4s ease;
  overflow-y: auto;
}

.mobile-menu.active {
  left: 0; /* Glisam in viewport cand e activ */
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 6rem 2rem 2rem;
}

.close-btn {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 2.5rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  color: #D4AF37;
}

/* ========== FOOTER SPECIAL PENTRU MOBIL ========== */
.mobile-footer {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-item a {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
}

.footer-item a:hover {
  color: #D4AF37;
}

.footer-icon {
  width: 24px;
  height: 24px;
}