/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500&family=Inter:wght@400;500&display=swap');

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #fdfafa;
  color: #333;
  line-height: 1.6;
  padding: 1rem;
  animation: fadeIn 1s ease-in;
  opacity: 0;
  animation-fill-mode: forwards;
}

/* Animations */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

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

/* Header Styles */
header {
  background-color: #f8f4f6;
  padding: 2rem 1rem;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #ca4d6e;
  font-family: 'Playfair Display', serif;
}

header p {
  font-size: 1.2rem;
  color: #555;
}

/* Navigation */
nav {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

nav a {
  text-decoration: none;
  color: #7a4b58;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #ca4d6e;
}

/* Hero Section */
.hero {
  text-align: center;
  margin-top: 2rem;
}

.hero img {
  width: 180px;
  border-radius: 50%;
  animation: fadeInUp 1s ease-in;
}

.hero h2 {
  font-size: 2rem;
  margin-top: 1rem;
  color: #444;
  font-family: 'Playfair Display', serif;
}

.hero p {
  font-size: 1.1rem;
  margin: 1rem 0;
}

.btn {
  display: inline-block;
  margin: 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #f3c1d2;
  color: #000;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #eaa7bd;
}

/* Main Content */
main {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1rem;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

section h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #333;
  font-family: 'Playfair Display', serif;
}

section h3 {
  font-size: 1.4rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: #5a2e38;
  font-family: 'Playfair Display', serif;
}

ul {
  list-style-type: disc;
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

ul li {
  margin-bottom: 0.75rem;
}

/* Contact Page */
section p {
  font-size: 1.1rem;
  margin: 0.5rem 0;
}

a {
  color: #ca4d6e;
}

a:hover {
  text-decoration: underline;
}

/* Resume iframe */
iframe {
  border-radius: 8px;
  margin-top: 1rem;
  border: 1px solid #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
  body {
    padding: 0.5rem;
  }

  header h1 {
    font-size: 2rem;
  }

  .hero h2 {
    font-size: 1.5rem;
  }

  .hero img {
    width: 120px;
  }

  iframe {
    height: 500px;
  }

  nav {
    flex-direction: column;
    gap: 0.5rem;
  }
}
