/* Base HTML + body */

html {
  font-size: 10px;
  font-family: 'Open Sans', sans-serif;
  background-color: #030303;   /* dark around the page box */
}

h2,
h3 {
  font-family: 'Montserrat', 'Open Sans', sans-serif;
}

body {
  margin: 0;
  background-color: #030303;
}

.page,
.hero {
  width: 100%;
  max-width: 900px;
}

body {
  padding: 0 10px; /* small side padding on tiny screens */
}

a:link,
a:visited {
  color: #ff00f7;          /* normal link color */
  text-decoration: underline;  /* or none */
}

a:hover,
a:active {
  color: #2b0030;          /* hover/active color */
}


/* Hero banner (full width, no border) */

.hero {
  width: 900px;
  margin: 0 auto;
  background-color: #2b0030;   /* base purple */
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%),
    linear-gradient(135deg, transparent 75%, rgba(255, 255, 255, 0.03) 75%);
  background-size: 10px 10px;
  background-position: 0 0, 9px 9px;
  color: #ffffff;
  padding: 40px 40px 30px 40px;
  text-align: center;
  border: 5px solid #2b0030;
}



.hero h1 {
  font-size: 90px;
  margin: 0 0 10px;
  color: #ff00f7;
  text-shadow: 3px 3px 1px #ffffff;
  animation: glow 2s ease-in-out forwards;
}

.hero h2 {
  margin: 0 0 20px;
  color: #ffffff
}

@keyframes glow {
  from {
    text-shadow: 2px 2px 1px #ffffff;
    transform: scale(1);
  }
  to {
    text-shadow: 0 0 6px #ffffff, 0 0 12px #ff00f7;
    transform: scale(1.01);
  }
}

.hero-subtitle {
  margin: 0px 0 0;
  font-size: 20px;
  letter-spacing: 1px;
  color: #ffffff;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.7);
  text-align: center;
  display: block;
}


.page {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  background-color: #f3edf7;
  padding: 0 40px 40px 40px;

  /* Core border */
  border: 3px solid #ff00f7;

  /* Electric outer glow */
  box-shadow:
    0 0 12px rgba(255, 0, 247, 0.8),   /* main glow */
    0 0 30px rgba(255, 0, 247, 0.4);   /* softer outer halo */
}

.content-section {
  margin: 30px -10px;        /* extend band closer to card edge */
  padding: 20px 20px;
  background-color: rgba(123, 140, 131, 0.08);
  border-radius: 6px;
}

/* First content section: center heading within the band */
.content-section:first-of-type {
  display: flex;
  flex-direction: column;
  align-items: center;      /* horizontal center for children */
  justify-content: center;  /* vertical center inside the band */
  min-height: 80px;        /* adjust until it feels right */
}

.content-section:first-of-type h2 {
  margin: 0;                /* remove extra top/bottom margin */
}

/* keep inner text nicely centered */
.content-section h2,
.content-section h3,
.content-section p,
.content-section ul {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  margin-bottom: 10px;
}




/* Headings and text */

h1 {
  font-size: 60px;
  text-align: center;
  margin: 0;
  padding: 20px 0;
  color: #ff00f7;
  text-shadow: 3px 3px 1px black;
}

h2 {
  font-size: 30px;
  text-align: center;
  margin: 40px 0 10px;        /* top, right/left, bottom */
  color: #000000;
  text-shadow: 0.5px 0.5px 0.5px #ff00f7;
}

h3 {
  font-size: 20px;
  text-align: center;
}

p,
li {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.7px;
}


/* Fun facts + qualifications lists */

.fun-facts {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 20px auto;
}

.fun-facts li {
  position: relative;
  margin: 12px 0;
  padding-left: 28px;
  line-height: 1.5;
}

.fun-facts li::before {
  content: "★";               /* change to ♥ if you prefer hearts */
  position: absolute;
  left: 0;
  top: 0;
  color: #ff00f7;
  font-size: 18px;
}

.qualifications {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 20px auto;
}

.qualifications li {
  position: relative;
  margin: 12px 0;
  padding-left: 28px;
  line-height: 1.5;
}

.qualifications li::before {
  content: "♥";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff00f7;
  font-size: 18px;
}

.page p,
.fun-facts,
.qualifications {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

footer p {
  max-width: none;      /* do not limit footer text width */
  margin-left: 0;
  margin-right: 0;
  text-align: center;
}


/* Images and photo rows */

img {
  display: block;
  margin: 0 auto;
}

.photo-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  max-width: 900px;
  margin: 40px auto 40px;        /* bottom space before next section */
}

.photo-row img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.photo-row img:hover {
  transform: scale(1.08);     /* slightly larger */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Schedule button */

.button-wrapper {
  text-align: center;
  margin: 20px 0;
}

.button-1 {
  background-color: #ff00f7;
  border-radius: 8px;
  border-style: none;
  box-sizing: border-box;
  color: black;
  cursor: pointer;
  display: inline-block;
  font-family: "Haas Grot Text R Web", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  height: 40px;
  line-height: 20px;
  list-style: none;
  margin: 0;
  outline: none;
  padding: 10px 16px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: color 100ms, background-color 100ms;
  vertical-align: baseline;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-1:hover,
.button-1:focus {
  background-color: #F082AC;
}


/* Footer */

footer {
  margin-top: 40px;
  background-color: #2b0030;   /* footer background */
  color: #ffffff;              /* default footer text */
  padding: 30px 20px;
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%),
    linear-gradient(135deg, transparent 75%, rgba(255, 255, 255, 0.03) 75%);
  background-size: 10px 10px;
  background-position: 0 0, 9px 9px;
}

footer h2 {
  color: #ffffff;              /* white text only in footer */
}

footer h2,
footer p {
  text-align: center;
  margin: 0 0 10px;
}

/* social icons + labels */

.footer-social {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 30px 0;
}

.footer-social-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;             /* label text size */
}

.footer-social a {
  font-size: 36px;
  color: #ff00f7;
  text-shadow: 0 0 10px rgba(0, 0, 0, 1);
}

.footer-social a:hover {
  color: #000000;
  text-shadow: 0 0 10px #ff00f7;
}

/* Mobile tweaks */
@media (max-width: 600px) {
  body {
    padding: 0;
  }

  .hero {
    width: 100%;
    max-width: 100%;
    padding: 24px 16px;
    border-width: 0 0 4px 0;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .page {
    padding: 16px;
    border-width: 2px;
  }

  .content-section {
    margin: 20px 0;
    padding: 16px;
  }

  .photo-row {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin: 24px 0;
  }

  .photo-row img {
    width: 100%;
    max-width: 320px;
    height: auto;
  }

  h2 {
    font-size: 22px;
    margin: 20px 0 8px;
  }

  h3 {
    font-size: 18px;
  }

  p,
  li {
    font-size: 14px;
    line-height: 1.6;
  }

  .footer-social {
    flex-wrap: wrap;
    gap: 1.2rem;
  }
}
