body {
  background-color: #000;
  margin: 0;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f0e3ea;
  height: 80px;
  z-index: 1000;
  padding: 0 10px;
}

.nav-left a {
  color: #000;
  text-decoration: none;
  font-weight: bold;
  font-size: xx-large;
}

.nav-right {
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0 15px 5px 0;
}

.nav-right a {
  color: #000;
  text-decoration: none;
  font-weight: bold;
  font-size: larger;
}

.nav-right a:hover {
  color: #476280; 
  transition: color 0.3s ease;
}

.aboutcontent {
  max-width: 960px;
  margin: 120px auto 80px;
  padding: 0 20px;
  color: #f0f0f0;
  line-height: 1.65;
}

.aboutcontent > div {
  margin-bottom: 60px;
}

.profile-img {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  margin: 10px auto 40px;
  display: block;
  border: 2.5px solid #f0e3ea;
}

@media (min-width: 768px) {
  .profile-img {
    width: 400px;
    height: 400px;
  }
}

.profile-section h1 {
  margin: 10px 0 6px;
  font-size: 2rem;
}

.profile-section h1 span {
  color: #f0e3ea;
}

.tagline {
  margin: 0 0 18px;
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  background: #2a2a2a;
  color: #fff;
  transition: transform 0.15s ease, background-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: #333;
}

.btn.primary {
  background: #f0e3ea;
  color: #000;
}

.btn.primary:hover {
  background: #d6c7d0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}


.skills h2 {
  color: #f0e3ea;
  margin-bottom: 20px;
}

.skills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.skill {
  background: #f0e3ea;
  color: #000;
  padding: 8px 14px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.95rem;
  transition: transform 0.2s, background 0.25s, color 0.25s;
}

.skill:hover {
  transform: translateY(-3px);
  background: #476280;
  color: #fff;
}

.skills h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
}


.journey h2 {
  color: #f0e3ea;
  margin-bottom: 25px;
}

.timeline {
  border-left: 3px solid #f0e3ea;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.timeline-item {
  position: relative;
}

.timeline-item::before {
  content: "●";
  color: #f0e3ea;
  position: absolute;
  left: -32px;
  font-size: 1.2rem;
  top: 0;
}

.timeline-item h3 {
  margin: 0 0 5px;
  color: #f0e3ea;
  font-size: 1.1rem;
}

.timeline-item p {
  margin: 0;
  color: #fff;
  line-height: 1.5;
  font-size: large;
}


.fun-facts h2 {
  color: #f0e3ea;
  margin-bottom: 15px;
}

.fun-facts p {
  color: #fff;
  margin-bottom: 10px;
  font-size: large;
}

.fun-facts ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fun-facts li {
  margin-bottom: 8px;
  background: #151515;
  padding: 10px 14px;
  border-radius: 10px;
  color: #fff;
  font-size: large;
  transition: transform 0.2s ease, background 0.25s ease;
}

.fun-facts li:hover {
  transform: translateX(4px);
  background: #222;
}

.future-vision h2 {
  color: #f0e3ea;
  margin-bottom: 15px;
}

.future-vision p {
  color: #fff;
  line-height: 1.6;
  margin-bottom: 12px;
  font-size: large;
}

.future-vision .tagline-vision {
  margin-top: 20px;
  font-size: 1.05rem;
  color: #f0e3ea;
  text-align: center;
  font-style: italic;
  border-top: 1px solid #333;
  padding-top: 15px;
}

#footer {
  text-decoration: none;
  color: #f0e3ea; 
  font-size: 11px;
  font-family: Georgia, sans-serif, serif;
  text-align: center;
  padding: 5px;
  width: 100%;
}

.social-links {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.social-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 2px solid #f0e3ea;
  border-radius: 50px;
  color: #f0e3ea;
  font-size: 1.3rem;
  text-decoration: none;
  overflow: hidden;
  transition: color 0.3s ease;
  z-index: 1;
}

.social-btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  border-radius: 50px;
  z-index: -1;
  transition: width 0.4s ease;
}

.social-btn.email::before { background: #ff6f61; }
.social-btn.github::before { background: #333; }
.social-btn.linkedin::before { background: #0077b5; }

.social-btn:hover::before { width: 100%; }
.social-btn:hover { color: #fff; }
