:root {
  --primary:#4B2364;
  --secondary: #3a1b4f;
  --accent: #6b3a8a;
  --text: #1f2937;
  --white: #ffffff;
}
html {
  scrollbar-gutter: stable;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
   #selected {
    color: #a78bfa;}
    
/* NAVBAR BASE */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  /* height: 72px; */
  z-index: 1000;

  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,0.05);

  transition: all 0.4s ease;
}

/* CONTAINER */
.nav-container {
  max-width: 1200px;
  /* height:100%; */
  margin: auto;
  padding: 16px 20px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 60px;  
  width: auto;
  display: block;
}

.logo img:hover {
  cursor: pointer;
}

/* LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

/* NAV ITEMS */
.nav-links a {
  line-height: 1;
  position: relative;
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

/* 🔥 PREMIUM UNDERLINE + GLOW */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0%;
  height: 2px;

  background: linear-gradient(90deg, var(--primary), var(--accent));
  box-shadow: 0 0 8px rgba(107, 70, 193, 0.6);

  transition: all 0.4s ease;
  transform: translateX(-50%);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--primary);
}

/* 🔥 CONTACT BUTTON (SPECIAL) */
.contact-btn {
  padding: 10px 20px;
  border-radius: 8px;
  /* background: linear-gradient(135deg, #4B2364, #6b3a8a); */
  background-image: linear-gradient(135deg, rgb(75, 35, 100), rgb(107, 58, 138));

  color: white !important;
  overflow: hidden;
  position: relative;
}

/* BUTTON SHINE EFFECT */
.contact-btn {
  height: 42px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white !important;

  position: relative;
  overflow: hidden;
}

.contact-btn:hover::before {
  left: 100%;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(107, 70, 193, 0.4);
}

/* HAMBURGER */
.menu-btn {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-btn span {
  width: 25px;
  height: 3px;
  background: var(--text);
  margin: 4px 0;
  transition: 0.4s;
}

/* 📱 MOBILE */
@media (max-width: 768px) {
  .menu-btn {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: -100%;
    width: 260px;
    height: 100vh;

    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);

    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
    gap: 25px;

    transition: 0.4s ease;
  }

  .nav-links.active {
    right: 0;
  }
}