/* GLOBAL RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Libre Baskerville", serif;
}

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

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 60px;
  background: white;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.logo {
  font-size: 22px;
  font-weight: 600;
}

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

.nav-links a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
}

.nav-links a:hover {
  color: #0077ff;
}

/* HERO SECTION */
.hero {
  padding: 120px 40px 80px;
  text-align: center;
}

.hero-img {
  width: 250px;
  height: 250px;
  border-radius: 10%;
  object-fit: cover;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: 38px;
  font-weight: 700;
}

.hero-content p {
  font-size: 18px;
  margin-top: 10px;
  color: #555;
}

/* ABOUT SECTION */
.about {
  padding: 80px 40px;
}

.about h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

.about ul {
  margin-left: 20px;
  max-width: 700px;
}

.about li {
  margin-bottom: 10px;
}

/* CONTACT SECTION */
.contact {
  padding: 80px 40px;
  text-align: center;
}

.contact-links {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 25px;
}

.contact-links img {
  width: 35px;
  height: 35px;
  transition: transform 0.2s ease;
}

.contact-links img:hover {
  transform: scale(1.15);
}

/* SPACING FOR SECTIONS */
section {
  margin-bottom: 40px;
}



/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
  .navbar {
    padding: 16px 25px;
  }

  .nav-links {
    gap: 15px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .about,
  .contact {
    padding: 60px 20px;
  }
}