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

/* 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 + Work Experiences + Skills + Video */
#about-work {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../img/mainPage/me.jpg') center/cover no-repeat;
}

#about-work .text-container, #about-work .col-md-7 {
    background: rgba(0,0,0,0.5); /* yarı transparan kutu */
    padding: 30px;
    border-radius: 10px;
}

#about-work img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    margin-bottom: 20px;
}

#about-work h2 {
    font-weight: bold;
    color: #d633ff;
    text-shadow: 2px 2px 10px rgba(255, 238, 0, 0.959);
    margin-bottom: 2rem;
}

#about-work h4 {
    color: #ffffff;
    margin-top: 1rem;
}

#about-work h5 {
    color: #fffb00;
    margin-bottom: 0.5rem;
}

#about-work ul {
    list-style: none;
    padding-left: 0;
}

#about-work ul li::before {
    content: "✔ ";
    color: #6f42c1;
    font-weight: bold;
}

#about-work ul li {
    margin-bottom: 0.5rem;
}

#about-work video {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

/* 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;
}

/* 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; }
}

/* Navbar Neon Effect */
.navbar-brand {
    font-family: 'Arial', sans-serif; 
    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; }
}
