body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* Navbar */
.custom-navbar {
  background: rgba(0, 0, 0, 0.85);
  padding: 15px 0;
}
.custom-navbar .nav-link {
  color: #fff;
  margin-left: 15px;
  font-weight: 500;
  transition: color 0.3s;
}
.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
  color: #d633ff;
}

/* Hero */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url("../img/mainPage/me.jpg") center/cover no-repeat;
}
.hero h1, .hero p {
  text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

/* Gradient Button */
.btn-gradient {
  background: linear-gradient(90deg, #d633ff, #6f42c1);
  color: white;
  border: none;
  transition: opacity 0.3s;
}
.btn-gradient:hover {
  opacity: 0.85;
  color: #fff;
}

/* About */
#about ul {
  list-style: none;
  padding: 0;
}
#about ul li::before {
  content: "✔ ";
  color: #6f42c1;
}

/* Contact */
.contact-section {
  background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)),
              url("../img/contact-bg.jpg") center/cover no-repeat;
}

/* Google Fonts */
@import url(https://fonts.googleapis.com/css?family=Anonymous+Pro);

/* Cursor */
.cursor{
    position: relative;
    width: 24em;
    margin: 0 auto;
    border-right: 2px solid rgba(255,255,255,.75);
    font-size: 3rem;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    transform: translateY(-50%);    
}

/* Animation */
.typewriter-animation {
  animation: 
    typewriter 3s steps(20) 0.5s 1 normal both, 
    blinkingCursor 500ms steps(50) infinite normal;
}

@keyframes typewriter {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blinkingCursor{
  from { border-right-color: rgba(255,255,255,.75); }
  to { border-right-color: transparent; }
}

/* Global */
body { 
    font-family: 'Anonymous Pro', monospace;
}

/* Navbar Neon Effect */
.navbar-brand {
    font-family: 'Arial', sans-serif; /* Neon font */
    color: #fff;
    text-shadow: 0 0 5px #ff005e, 0 0 10px #ff005e, 0 0 20px #ff005e, 0 0 40px #ff005e, 0 0 80px #ff005e;
    animation: neonGlow 1.5s infinite alternate;
}

@keyframes neonGlow {
    0% {
        text-shadow: 0 0 5px #ff005e, 0 0 10px #ff005e, 0 0 20px #ff005e, 0 0 40px #ff005e, 0 0 80px #ff005e;
    }
    100% {
        text-shadow: 0 0 10px #00d4ff, 0 0 20px #00d4ff, 0 0 40px #00d4ff, 0 0 80px #00d4ff, 0 0 160px #00d4ff;
    }
}