/* ============================================
   AMON, THE FOUNDER PAGE
   ============================================ */

.amon-page {
  min-height: 100vh;
  position: relative;
  padding: var(--spacing-md) var(--spacing-md) var(--spacing-xl);
}

/* Background Effects */
.amon-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* Main Content */
.amon-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* ============================================
   HEADER
   ============================================ */

.amon-header {
  margin-bottom: var(--spacing-xl);
  animation: fadeInUp 0.8s ease-out;
}

.amon-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700;
  color: var(--color-yellow);
  text-shadow: 0 0 40px rgba(254, 200, 64, 0.5);
  margin-bottom: var(--spacing-md);
}

/* ============================================
   PROFILE IMAGE
   ============================================ */

.profile-image-container {
  display: flex;
  justify-content: center;
  margin-bottom: var(--spacing-xl);
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.profile-image {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 4px solid var(--color-yellow);
  object-fit: cover;
  box-shadow:
    0 0 40px rgba(254, 200, 64, 0.4),
    0 8px 32px rgba(0, 0, 0, 0.5);
  transition: all var(--transition-base);
}

.profile-image:hover {
  transform: scale(1.05);
  box-shadow:
    0 0 60px rgba(254, 200, 64, 0.6),
    0 12px 48px rgba(0, 0, 0, 0.6);
}

/* ============================================
   SOCIAL ICONS
   ============================================ */

.social-icons {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-2xl);
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.social-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.social-icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-white);
  transition: all var(--transition-base);
}

.social-icon:hover {
  transform: translateY(-6px);
  background: var(--color-black);
  border-color: var(--color-yellow);
  box-shadow: 0 0 30px rgba(254, 200, 64, 0.6);
}

.social-icon:hover svg {
  color: var(--color-yellow);
}

/* ============================================
   ABOUT TEXT
   ============================================ */

.about-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.about-text p {
  font-size: clamp(18px, 2.5vw, 22px);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--spacing-lg);
}

.about-text p:first-child {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: var(--spacing-xl);
}

.about-text p:last-child {
  margin-bottom: 0;
}

/* Line breaks in paragraphs for poetic effect */
.about-text br {
  display: block;
  content: "";
  margin-top: 0.5em;
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

/* ============================================
   RESPONSIVE: MOBILE
   ============================================ */

@media (max-width: 640px) {
  .amon-page {
    padding: var(--spacing-lg) var(--spacing-md);
  }

  .amon-title {
    font-size: 36px;
  }

  .profile-image {
    width: 200px;
    height: 200px;
  }

  .social-icons {
    gap: var(--spacing-sm);
    flex-wrap: wrap;
  }

  .social-icon {
    width: 48px;
    height: 48px;
  }

  .social-icon svg {
    width: 24px;
    height: 24px;
  }

  .about-text p {
    font-size: 18px;
    text-align: left;
  }

  .about-text p:first-child {
    font-size: 22px;
    text-align: center;
  }
}

/* ============================================
   RESPONSIVE: TABLET
   ============================================ */

@media (min-width: 641px) and (max-width: 1024px) {
  .profile-image {
    width: 240px;
    height: 240px;
  }

  .about-text p {
    font-size: 20px;
  }
}
