/* Shearline Navigation Styles */

/* Navigation container */
.nav-container {
  background-color: rgba(0, 0, 0, 0.6);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

/* Navigation wrapper */
.nav-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
}

/* Logo styling */
.nav-logo {
  flex: 0 0 auto;
  position: relative;
}

.nav-logo a {
  display: block;
  position: relative;
  filter: drop-shadow(0 0 8px #000) drop-shadow(0 0 16px #000);
}

.nav-logo img {
  height: 48px;
  width: auto;
  position: relative;
  z-index: 2;
}

/* Navigation links */
.nav-links {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin-left: 35px;
  position: relative;
}

.nav-links a {
  color: #FFDB91;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
  text-shadow: 0 0 4px #000, 
               0 0 8px #000, 
               0 0 12px #000,
               0 0 16px rgba(0, 0, 0, 0.8);
  font-size: 1.1rem;
}

.nav-links a:hover {
  color: #FB9003;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #FB9003;
  transition: width 0.3s ease;
  box-shadow: 0 0 8px 2px rgba(251, 144, 3, 0.4);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Call-to-action button */
.nav-cta {
  background: linear-gradient(-180deg, #FB9003, #D87C03 90%);
  color: white !important;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5) !important;
  font-size: 1.1rem;
}

.nav-cta:hover {
  opacity: 0.9;
  color: white !important;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.6) !important;
}

.nav-cta::after {
  display: none;
}

/* Navigation divider */
.nav-divider::before {
  content: '';
  position: absolute;
  height: 70%;
  width: 1px;
  background-color: rgba(251, 144, 3, 0.3);
  left: -18px;
  top: 50%;
  transform: translateY(-50%);
}

/* Video link icon styling */
.nav-videos {
  display: flex;
  align-items: center;
}

.nav-videos i {
  margin-right: 6px;
  transition: transform 0.3s ease;
}

.nav-videos:hover i {
  transform: scale(1.2);
  color: #FB9003;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  height: 3px;
  width: 100%;
  background-color: #FFDB91;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Responsive design */
@media only screen and (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    width: 100%;
    text-align: center;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    padding: 20px 0;
  }
  
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
    z-index: 99;
  }
  
  .nav-links li {
    margin: 15px 0;
  }
  
  .nav-divider::before {
    display: none;
  }
} 