/* Global Styling */
body,
h1,
h2,
h3,
p,
ul {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  color: white;
}

body {
  background-color: #121212;
  line-height: 1.6;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Styling */
header {
  background-color: #121212; /* Matches the body background */
  padding: 20px 0;
  animation: fadeInDown 1s ease-in-out;
}

header .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo h1 a {
  font-size: 2rem;
  color: #d47ce9;
  text-decoration: none;
}

header .nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

header .nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease-in-out;
}

header .nav-links li a:hover {
  color: #ffdd57;
}

header .nav-links li a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #ffdd57;
  left: 0;
  bottom: -5px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease-in-out;
}

header .nav-links li a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-content {
  text-align: center;
  padding: 50px 0;
  opacity: 0;
  animation: fadeIn 1.5s ease-in-out forwards;
}

/* Favorite Languages Section */
.favorite-languages {
  text-align: center;
  margin: 40px 0;
}

.favorite-languages h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.favorite-languages p {
  font-size: 1.5rem;
  color: white;
  font-weight: 600;
}

#language {
  color: #d47ce9;
  transition: opacity 0.3s ease-in-out;
  display: inline-block;
}

#language.fade-in {
  opacity: 1;
}

/* About Me Section */
.about-me {
  background-color: #121212;
  padding: 40px 0;
  opacity: 0;
  animation: fadeIn 1.5s ease-in-out forwards;
  animation-delay: 0.3s;
}

.about-me p {
  font-size: 1.2rem;
  color: white;
  text-align: center;
}

/* Footer Styling */
footer {
  background-color: #121212;
  color: white;
  text-align: center;
  padding: 20px 0;
  opacity: 0;
  animation: fadeInUp 1.5s ease-in-out forwards;
}

footer p {
  margin-bottom: 10px;
}

footer .footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
}

footer .footer-links li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease-in-out;
}

footer .footer-links li a:hover {
  color: #ffdd57;
}

footer .footer-links li a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #ffdd57;
  left: 0;
  bottom: -5px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease-in-out;
}

footer .footer-links li a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Animations */
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .nav-links {
    flex-direction: column;
    gap: 10px;
  }
}

#pinky {
    color : #d47ce9 ;
}

.mehome {
    color : #d47ce9 ;
}

/* Explore Blog Button Styling */
.explore-button-container {
  text-align: center;
  margin-top: 20px;
}

.explore-button {
  display: inline-block;
  background-color: #d47ce9;
  color: white;
  padding: 10px 20px;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.explore-button:hover {
  background-color: #b35dcf;
  transform: scale(1.05);
}

.explore-button strong {
  font-weight: 700; /* Make the "Blog" text bold */
}
/* Ensure proper spacing around the button */
.header-content .explore-button-container {
  margin: 20px 0;
}


