/* === ALBUKARAOQUE WEBSITE - NAVIGATION STYLES === */
/* Clean, modern navigation with proper positioning */

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(51, 51, 51, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  height: 56px;
  min-height: 56px;
  max-height: 56px;
  display: flex;
  align-items: center;
}

/* === NAVIGATION BAR === */
.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  height: 56px;
}

.nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.5rem;
  align-items: center;
}

.nav a {
  color: #ffffff;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav a:hover {
  background: rgba(64, 181, 163, 0.2);
  transform: translateY(-2px);
}

.nav a.active {
  background: linear-gradient(45deg, #40B5A3, #78D5C7);
  color: white;
  box-shadow: 0 4px 15px rgba(64, 181, 163, 0.3);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1001;
  height: 56px;
  min-width: 44px;
  padding: 0;
  align-items: center;
  justify-content: center;
}

/* Social media link styling */
.nav a.social-media-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
}

.nav a.social-media-link > img {
  width: 24px;
  height: 24px;
  margin-left: 8px;
}

/* Navigation shine effect */
.nav::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150px;
  width: 100px;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
  transform: skewX(-45deg);
  animation: shine 5s;
}

@keyframes shine {
  0% { left: -150px; }
  50% { left: 100%; }
  100% { left: 100%; }
}

/* === MOBILE NAVIGATION === */
@media screen and (max-width: 600px) {
  .nav {
    padding: 0 1rem;
    height: 56px;
  }
  .nav ul {
    position: fixed;
    top: 56px; /* match .main-header height */
    left: -100%;
    right: 0;
    width: 100%;
    height: calc(100vh - 56px);
    background: #333;
    z-index: 999;
    flex-direction: column;
    align-items: stretch;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    margin: 0;
    border: 0;
    padding: 0;
    transition: left 0.3s ease;
  }
  .nav ul.active {
    left: 0;
  }
  .nav a {
    width: 100%;
    text-align: left;
    padding: 1rem;
    margin: 0;
    font-size: 1rem;
    border-top: 1px solid #444;
  }
  .nav a:first-child {
    border-top: none;
  }
  .hamburger {
    display: flex;
  }
  /* Hide menu links unless menu is open */
  .nav ul:not(.active) a {
    display: none;
  }
  .nav ul.active a {
    display: block;
  }
}

/* === HIGHER SPECIFICITY FOR PROBLEMATIC PAGES === */
@media screen and (max-width: 600px) {
  body .nav ul .icon {
    display: block;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 44px;
    z-index: 1001;
    color: #ffffff;
    cursor: pointer;
    font-size: 1.8em;
  }
  body .nav.responsive ul .icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
  }
}
