/* navbar_style.css */
.modern-navbar {
  background: rgba(15, 15, 15, 0.95) !important;
  backdrop-filter: blur(10px);
  padding: 1rem 2rem !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.modern-navbar.scrolled {
  padding: 0.5rem 2rem !important;
  background: rgba(10, 10, 10, 0.98) !important;
}

/* Brand Logo */
.brand-logo {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.brand-text {
  color: #fff;
  transition: all 0.3s ease;
}

.brand-highlight {
  color: #cf1767;
  margin-left: 5px;
  position: relative;
}

.brand-highlight::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #cf1767;
  transition: width 0.3s ease;
}

.brand-logo:hover .brand-highlight::after {
  width: 100%;
}

.brand-logo:hover {
  transform: translateY(-2px);
}

/* Modern Nav Links */
.modern-nav {
  gap: 1rem;
}

.nav-link-modern {
  position: relative;
  padding: 0.8rem 1.2rem !important;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.nav-text {
  position: relative;
  z-index: 2;
}

.nav-underline {
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #cf1767, #ff1493);
  transition: width 0.3s ease;
}

.nav-link-modern:hover .nav-underline {
  width: 80%;
}

.nav-link-modern:hover {
  color: #cf1767 !important;
  transform: translateY(-3px);
}

.nav-link-modern.active {
  color: #cf1767 !important;
}

.nav-link-modern.active .nav-underline {
  width: 80%;
}

/* Social Media Icons */
.social-nav {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.social-link {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #cf1767, #ff1493);
  border-radius: 50%;
  transition: transform 0.3s ease;
  z-index: 0;
}

.social-link:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

.social-link i {
  font-size: 1.2rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.social-link:hover {
  border-color: #cf1767;
  transform: translateY(-5px) rotate(360deg);
}

.social-link:hover i {
  color: #fff !important;
}

/* Custom Toggler */
.custom-toggler {
  border: 2px solid #cf1767;
  padding: 0.5rem;
  transition: all 0.3s ease;
}

.custom-toggler:hover {
  background: #cf1767;
  transform: scale(1.1);
}

.custom-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(207, 23, 103, 0.5);
}

/* Responsive */
@media (max-width: 991.98px) {
  .modern-navbar {
    padding: 1rem !important;
  }

  .modern-nav {
    margin-top: 1rem;
    gap: 0.5rem;
  }

  .nav-link-modern {
    padding: 0.6rem 1rem !important;
    text-align: center;
  }

  .social-nav {
    margin-top: 1rem;
    justify-content: center;
  }
}

/* Scroll Animation */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modern-navbar {
  animation: slideDown 0.5s ease;
}
