/* About Page Specific Styles */

/* About Page Override - Remove default margin-top only on larger screens where hero section handles spacing */
@media (min-width: 481px) {
  .about-page #main-wrapper {
    margin-top: 0;
  }
}

/* Hero Section */
#hero-section {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 70px 15px 50px 15px;
  text-align: center;
  background: linear-gradient(135deg, #fafafa 0%, #f8f9fa 100%);
  border-bottom: 1px solid #eee;
}

#hero-content {
  max-width: 800px;
  margin: 30px auto 0;
}

#hero-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 40px;
  border: 4px solid #FF671F;
  box-shadow: 0 8px 30px rgba(255, 103, 31, 0.15);
}


#hero-headline {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 3.2em;
  font-weight: 300;
  color: #F8963A;
  margin-bottom: 24px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

#hero-tagline {
  font-family: museo-slab, Georgia, serif;
  font-size: 1.4em;
  color: #676767;
  margin-bottom: 20px;
  line-height: 1.4;
  font-style: italic;
}

#hero-contact {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.1em;
  color: #676767;
  margin-bottom: 40px;
}

#hero-contact a {
  color: #FF671F;
  text-decoration: none;
  border-bottom: 2px solid #F8963A;
  transition: all 0.3s ease;
}

#hero-contact a:hover {
  color: #D14E00;
  border-bottom-color: #D14E00;
}

/* Scroll Indicator */
#scroll-indicator {
  position: relative;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid #F8963A;
  border-bottom: 2px solid #F8963A;
  transform: rotate(45deg);
}


/* Enhanced About Content */
#aboutme {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 40px;
  font-size: 1.25em;
  line-height: 1.7;
}

#aboutme h3 {
  color: #F8963A;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 2.8em;
  font-weight: 300;
  margin-bottom: 40px;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

#aboutme p {
  margin-bottom: 32px;
  color: #676767;
}

/* Coaching Contact */
.coaching-contact {
  text-align: center;
  padding: 30px 15px 20px;
  background-color: #f8f9fa;
  border-top: 1px solid #eee;
}

.coaching-contact p {
  font-family: museo-slab, Georgia, serif;
  font-size: 1.1em;
  color: #676767;
  margin-bottom: 0;
}

.coaching-contact a {
  color: #FF671F;
  text-decoration: none;
  border-bottom: 2px solid #F8963A;
  transition: all 0.3s ease;
}

.coaching-contact a:hover {
  color: #D14E00;
  border-bottom-color: #D14E00;
}

/* Responsive Design */
@media (max-width: 768px) {
  #hero-section {
    padding: 70px 15px 60px 15px;
  }

  #hero-headline {
    font-size: 2.4em;
    margin-bottom: 20px;
  }

  #hero-tagline {
    font-size: 1.2em;
    margin-bottom: 40px;
  }

  #hero-photo {
    width: 160px;
    height: 160px;
    margin-bottom: 30px;
  }

  #aboutme {
    margin: 60px auto;
    padding: 0 20px;
    font-size: 1.15em;
  }

  #aboutme h3 {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .about-page #content-wrapper {
    padding-top: 0;
  }

  #hero-content {
    max-width: 800px;
    margin: 50px auto 0;
  }

  #hero-headline {
    font-size: 2em;
    line-height: 1.3;
  }

  #hero-tagline {
    font-size: 1.1em;
  }

  #hero-photo {
    width: 140px;
    height: 140px;
  }

  #aboutme {
    font-size: 1.1em;
    padding: 0 15px;
  }

  #hero-section {
    padding: 30px 15px 60px 15px;
  }
}