*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  /* Deep black background */
  background: #000000;
  /* Light gray/white text for readability */
  color: #e5e7eb;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* WRAPPER to center everything vertically on the screen */
.wrapper {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
}

/* HERO SECTION */
.hero {
  text-align: center;
  /* Subtle Green Gradient */
  background: radial-gradient(circle at center, #1a2f1a 0%, #000000 70%);
  padding: 3rem 1rem;
  border-radius: 20px;
  border: 1px solid #14532d; /* Dark Green Border */
}

.hero-content {
  margin: 0 auto;
}

/* IMAGE STYLES */
.avatar {
  width: 150px;           /* Slightly larger */
  height: 150px;
  border-radius: 50%;     /* Circle */
  
  /* This fixes the "zoomed in" crop issue */
  object-fit: cover;      
  object-position: top center; /* Focuses on the top (head) instead of center (chest) */
  
  border: 3px solid #22c55e; /* Bright Green Border ring */
  margin: 0 auto 1.5rem;
  display: block;
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.2); /* Subtle green glow */
}

/* TEXT STYLES */
h1 {
  margin: 0 0 1.5rem;
  font-size: 2rem;
  font-weight: 700;
  color: #f0fdf4; /* Very pale green/white */
}

/* LINK BUTTONS */
.hero-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-links a {
  padding: 0.6rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.2s ease;
  
  /* Green styling */
  border: 1px solid #15803d; /* Green border */
  color: #86efac;            /* Light Green text */
  background: rgba(0, 0, 0, 0.5);
}

.hero-links a:hover {
  background: #15803d;       /* Green fill on hover */
  color: #ffffff;
  border-color: #15803d;
  transform: translateY(-2px); /* Slight lift effect */
}

/* FOOTER */
.footer {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #4b5563;
}
