/* ===== Ragga Rhytham Navbar ===== */

.rr-header {
  background: linear-gradient(135deg, #1C1B3A, #0f0e26);
  color: #fff;
}

/* Top Strip */
.rr-top-strip {
  background: rgba(255,255,255,0.05);
  padding: 8px 0;
  font-size: 14px;
}
.rr-top-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.rr-top-left span {
  margin-right: 20px;
}
.rr-top-left i,
.rr-top-right i {
  color: #f68a0a;
  margin-right: 6px;
}
.rr-top-right a {
  color: #fff;
  margin-left: 14px;
  transition: 0.3s;
}
.rr-top-right a:hover {
  color: #f68a0a;
  transform: scale(1.1);
}

/* Navbar */
.rr-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}

/* Logo */
.rr-logo {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}
.rr-logo span {
  color: #f68a0a;
}
.rr-logo small {
  display: block;
  font-size: 12px;
  letter-spacing: 2px;
  color: #ccc;
}

/* Menu */
.rr-menu {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}
.rr-menu li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
}
.rr-menu li a::after {
  content: "♪";
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%);
  opacity: 0;
  color: #f68a0a;
  transition: 0.3s;
}
.rr-menu li a:hover::after,
.rr-menu li a.active::after {
  opacity: 1;
}

/* Dropdown */
.rr-dropdown {
  position: relative;
}
.rr-dropdown-menu {
  position: absolute;
  top: 140%;
  left: 0;
  background: #1C1B3A;
  padding: 15px 18px;
  border-radius: 14px;
  list-style: none;
  display: none;
  min-width: 200px;
}
.rr-dropdown:hover .rr-dropdown-menu {
  display: block;
}
.rr-dropdown-menu li a {
  display: block;
  padding: 8px 0;
}
.rr-dropdown-menu li a:hover {
  color: #f68a0a;
}

/* CTA */
.rr-cta {
  background: #f68a0a;
  color: #1C1B3A;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}
.rr-cta:hover {
  background: #fff;
}

/* Mobile */
.rr-toggle {
  font-size: 22px;
  cursor: pointer;
}
.rr-mobile-menu {
  background: #1C1B3A;
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 20px;
}
.rr-mobile-menu a {
  display: block;
  color: #fff;
  padding: 10px 0;
  text-decoration: none;
}
.rr-mobile-cta {
  background: #f68a0a;
  color: #1C1B3A !important;
  text-align: center;
  border-radius: 25px;
  margin-top: 10px;
  padding: 10px;
}
.rr-header {
  position: relative;
  z-index: 10000;
}

.rr-navbar {
  overflow: visible;
}

.dropdown-menu {
  z-index: 10001;
}
