/* GLOBAL */
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: #f9eee5;
  color: #1a1a1a;
}

a {
  text-decoration: none;
  color: inherit;
}

p {
  line-height: 1.6;
  font-size: 16px;
  color: #2b2b2b;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #f9eee5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 60px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.nav-name {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 700;
}

.nav-right a {
  margin-left: 28px;
  font-size: 15px;
  font-weight: 500;
  opacity: 0.9;
}

.nav-right a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* HERO */
.hero {
  height: 520px;
  background-image: url("images/hero.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.35);
}

.hero-overlay h1 {
  font-family: "Playfair Display", serif;
  font-size: 64px;
  font-weight: 700;
  color: white;
  margin: 0;
  text-align: center;
}

/* ABOUT SECTION */
.about-section {
  padding: 90px 70px;
}

.about-grid {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-photo img {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
  box-shadow: 0px 12px 30px rgba(0,0,0,0.15);
}

.about-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 62px;
  margin: 0 0 18px 0;
  line-height: 1.0;
}

.about-text h2::after {
  content: "";
  display: block;
  width: 290px;
  height: 6px;
  background: #e78678;
  margin-top: 14px;
}

.job-title {
  font-size: 20px;
  font-weight: 500;
  margin-top: 24px;
  margin-bottom: 28px;
  color: #1a1a1a;
}

.job-title a {
  color: #e78678;
  font-weight: 600;
  transition: opacity 0.15s ease;
}

.job-title a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.about-text p {
  max-width: 460px;
  margin-bottom: 22px;
}

.cv-button {
  display: inline-block;
  margin-top: 20px;
  padding: 16px 38px;
  background: #e78678;
  color: white;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  transition: transform 0.15s ease;
}

.cv-button:hover {
  transform: translateY(-2px);
}

/* FOOTER */
.footer {
  padding: 70px 70px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.footer-grid {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.footer-left h3 {
  font-family: "Playfair Display", serif;
  font-size: 44px;
  margin: 0;
}

.footer-note {
  font-size: 14px;
  opacity: 0.75;
  margin-top: 10px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

.footer-col a:hover {
  text-decoration: underline;
}

.scholar-link {
  display: inline-block;
  margin-top: 16px;
  color: #1a1a1a;
  transition: all 0.2s ease;
}

.scholar-link:hover {
  color: #e78678;
  transform: translateY(-2px);
  text-decoration: none;
}

.scholar-link svg {
  display: block;
}

/* MOBILE */
@media (max-width: 900px) {
  .navbar {
    padding: 18px 22px;
  }

  .nav-name {
    font-size: 20px;
  }

  .hero-overlay h1 {
    font-size: 44px;
    padding: 0 20px;
  }

  .about-section {
    padding: 60px 25px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-text h2 {
    font-size: 48px;
  }

  .footer {
    padding: 50px 25px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-left h3 {
    font-size: 32px;
  }
}

