/* ========== RESET & FONT ========== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #0a2540 0%, #052f5f 50%, #1e88e5 100%);
  color: #f4f6f8;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ========== HEADER ========== */
header {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 1rem 0;
}

header h1 a {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  text-decoration: none;
}

header nav a {
  color: #d0e7ff;
  margin: 0 1rem;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
}
header nav a:hover {
  color: #4db5ff;
}

/* ========== MAIN SECTION (About Me Card) ========== */
.about-container {
  max-width: 800px;
  margin: 4rem auto;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  color: #eaf2fa;
  text-align: center;
  position: relative;
  animation: fadeIn 1s ease-out;
}

.about-container h1 {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.tagline {
  font-size: 1.1rem;
  color: #a9c3e8;
  margin-bottom: 1.5rem;
}

.about-body {
  text-align: left;
  margin-top: 1.5rem;
  font-size: 1rem;
  line-height: 1.7;
  color: #eaf2fa;
}

/* Foto profil */
.profile-pic img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  margin-bottom: 1.2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-pic img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 30px rgba(77, 181, 255, 0.5);
}

/* Tombol CV */
.cv-button {
  margin-top: 2.5rem;
}

.cv-button a {
  background: linear-gradient(90deg, #0077ff, #00b3ff);
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 179, 255, 0.3);
  transition: all 0.3s ease;
}

.cv-button a:hover {
  background: linear-gradient(90deg, #00b3ff, #0077ff);
  box-shadow: 0 6px 20px rgba(0, 179, 255, 0.5);
  transform: translateY(-3px);
}

/* ========== FOOTER ========== */
footer {
  margin-top: auto;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  color: #bcd8f4;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}
