/* Google Font Poppins used */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background: black;
  color: #f4f4f9;
  line-height: 1.6;
}

a {
  color: #ffd369;
  text-decoration: none;
}

a:hover, a:focus {
  text-decoration: underline;
}

/* Navigation */
header {
  background-color: rgba(0, 0, 50, 0.85);
  position: static;
  top: 0;
  z-index: 10;
}

nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
}

nav ul li {
  margin: 0 1.5rem;
}

nav ul li a {
  display: inline-block;
  padding: 1rem 0;
  font-weight: 600;
  font-size: 1rem;
  color: #ffd369;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #ffb347;
}

/* Hero Section */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
  max-width: 1100px;
  margin: 2rem auto 4rem auto;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero-text {
  flex: 1 1 320px;
  padding: 1rem 2rem;
  text-align: center;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 0.3rem;
  color: #fff;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
}

.hero-text p {
  font-weight: 300;
  font-size: 1.3rem;
  margin: 0.2rem 0;
  color: #e0e0ff;
}

.subtext {
  font-style: italic;
  color: #c5c5e0;
}

/* ✅ Profile Image with Working Hover Effect */
.hero-img {
  flex: 0 0 180px;
  text-align: center;
  padding: 1rem 2rem;
}

.hero-img img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 4px solid #ffd369;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-img img:hover,
.hero-img img:active {
  transform: scale(1.15);
  box-shadow: 0 0 30px #ffd369, 0 0 60px #ffb347;
}

/* Sections */
.section {
  background: rgba(0,0,0,0.4);
  max-width: 900px;
  margin: 2rem auto;
  padding: 2rem 3rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.section h2 {
  color: #ffd369;
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 2rem;
  border-bottom: 3px solid #ffd369;
  padding-bottom: 0.5rem;
}

.section ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  color: #f0e68c;
  font-size: 1.1rem;
}

.section ul li {
  margin-bottom: 0.7rem;
}

.section p {
  font-size: 1.15rem;
  color: #eee;
  margin-bottom: 1rem;
}

/* Contact Section */
.contact-section a {
  color: #ffd369;
  font-weight: 600;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background: rgba(0, 0, 50, 0.85);
  color: #ffd369;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 3rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
  }

  .hero-text, .hero-img {
    padding: 1rem 0;
  }

  nav ul {
    flex-wrap: wrap;
  }

  nav ul li {
    margin: 0.5rem 1rem;
  }
}


/* image bulge*/

.hero-img {
      display: inline-block;
      padding: 1rem;
    }

    .hero-img img {
      width: 180px;
      height: 180px;
      border-radius: 350%;
      border: 4px solid #ffd369;
      object-fit: cover;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .hero-img img:hover,
    .hero-img img:active {
      transform: scale(1.15);
      box-shadow: 0 0 30px #ffd369, 0 0 60px #ffb347;
    }