body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(to bottom right, #fffaf0, #fefcf9);
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.card {
  max-width: 420px;
  width: 100%;
  background-color: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  border: 2px solid #fcd34d;
  background-image: url('filipino-texture.svg'); /* Optional pattern */
  background-size: cover;
  background-blend-mode: lighten;
}

.card-header h1 {
  font-family: 'Pacifico', cursive;
  color: #ec4899;
  font-size: 2rem;
  margin: 0.5rem 0;
}
.card-header h1::after {
  content: " 🇵🇭 🇺🇸 🇮🇹";
  display: block;
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.card-header .roles {
  font-style: italic;
  color: #374151;
  margin-bottom: 0.5rem;
}

.card-header .bio {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.logo {
  max-width: 80px;
  margin: 0 auto 1rem;
}

.avatar {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fde68a;
  margin-bottom: 1rem;
}

.links a {
  margin: 0 0.5rem;
  text-decoration: none;
  color: #10b981;
  font-weight: 600;
}

.cv a {
  display: inline-block;
  margin-top: 1rem;
  background-color: #fbbf24;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}
.cv a:hover {
  background-color: #f59e0b;
}

.instagram-link {
  margin-top: 2rem;
}

.insta-button {
  display: inline-block;
  background: linear-gradient(90deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
  color: white;
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  border-radius: 9999px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  font-size: 0.95rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.insta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.footer {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #9ca3af;
}
