/*
   Global / Base
*/

html {
  box-sizing: border-box;
  font-size: 100%;
}

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

body {
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 2.5rem 1.125rem;
  background: #ffe6f1;
  color: #2b2b2b;
}

a {
  color: #c2185b;
  text-decoration: none;
  font-weight: 700;
}

a:hover {
  text-decoration: underline;
}

/*
   Resume (DO NOT BREAK)
 */

.header {
  background: #ffffff;
  border: 0.125rem solid #ff7fb6;
  border-radius: 1.125rem;
  padding: 1.375rem 1.25rem;
  box-shadow: 0 0.625rem 1.5625rem rgba(255, 127, 182, 0.25);
  margin-bottom: 1.25rem;
}

.name {
  font-family: Poppins, Arial, sans-serif;
  font-weight: 800;
  font-size: 2.75rem;
  color: #c2185b;
  margin: 0 0 0.5rem 0;
}

.contact {
  color: #6b3b5d;
  margin: 0 0 1rem 0;
}

.section-title {
  margin: 1.125rem 0 0.5rem;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7a1450;
}

.body-md {
  font-size: 1rem;
  margin: 0.375rem 0 0.625rem;
}

.subhead {
  margin: 1rem 0 0.25rem;
  font-size: 1rem;
  color: #4b1240;
  font-weight: 700;
}

.item-title {
  margin: 0.75rem 0 0.25rem;
  font-size: 1.125rem;
  color: #4b1240;
}

.item-meta {
  margin: 0 0 0.5rem;
  color: #6b3b5d;
  font-size: 0.9375rem;
}

.section {
  background: #ffffff;
  border-radius: 1.125rem;
  padding: 1.125rem 1.25rem;
  box-shadow: 0 0.625rem 1.5625rem rgba(0, 0, 0, 0.06);
  border: 0.0625rem solid rgba(194, 24, 91, 0.15);
}

.list {
  margin: 0.5rem 0 1.125rem;
  padding-left: 1.125rem;
}
.list li {
  margin: 0.375rem 0;
}

.btn-link {
  display: inline-block;
  padding: 0.5rem 0.875rem;
  border-radius: 999rem;
  background: #ffd0e4;
  border: 0.0625rem solid #ff7fb6;
  color: #7a1450;
  font-weight: 700;
}

.btn-link:hover {
  text-decoration: none;
  filter: brightness(0.98);
}

.top-nav {
  margin-top: 1rem;
}

/* Resume grid: mobile 1 col */
.resume-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

/* Desktop 2 col */
@media (min-width: 48rem) {
  .resume-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.footer {
  margin-top: 2rem;
  text-align: center;
  color: #6b3b5d;
}
.footer-text {
  font-size: 0.875rem;
}

/* 
   HOME PAGE (Cute + Soft + Prettiest)
 */

.home {
  /* keep your flowers background */
  background: url(flowers.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow-x: hidden;
}

/* soft overlay so text pops */
.home::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 208, 228, 0.55),
      transparent 55%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(255, 230, 241, 0.7),
      transparent 55%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.35),
      rgba(255, 255, 255, 0.15)
    );
  pointer-events: none;
  z-index: 0;
}

/* center content */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.75rem 1.125rem;
  position: relative;
  z-index: 1;
}

/* the pretty box */
.hero-card {
  width: 100%;
  max-width: 52rem;
  text-align: left;

  background: rgba(255, 255, 255, 0.86);
  border: 0.125rem solid rgba(255, 127, 182, 0.95);
  border-radius: 1.75rem;
  padding: 2.25rem 2rem;

  /* cute glow + depth */
  box-shadow:
    0 1.5rem 3.25rem rgba(255, 127, 182, 0.22),
    0 0 0 0.45rem rgba(255, 127, 182, 0.09);

  /* soft blur for glassy look */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  /* subtle animation */
  transform: translateY(0);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.hero-card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 2rem 3.75rem rgba(255, 127, 182, 0.26),
    0 0 0 0.55rem rgba(255, 127, 182, 0.12);
  background: rgba(255, 255, 255, 0.9);
}

/* cute badge */
.badge {
  display: inline-block;
  padding: 0.45rem 0.85rem;
  border-radius: 999rem;
  background: rgba(255, 208, 228, 0.9);
  border: 0.0625rem solid rgba(255, 127, 182, 0.95);
  color: #7a1450;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin: 0 0 1.15rem 0;
}

.hero-name {
  font-family: Poppins, Inter, Arial, sans-serif;
  font-weight: 900;
  font-size: 2.75rem;
  color: #c2185b;
  margin: 0 0 0.25rem 0;
}

.hero-subtitle {
  margin: 0 0 1rem 0;
  color: #4b1240;
  font-weight: 700;
}

.hero-text {
  margin: 0 0 1.25rem 0;
  color: #2b2b2b;
  font-size: 1.0625rem;
  max-width: 44rem;
}

/* CTA button */
.cta-row {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin: 0 0 1.25rem 0;
}

.webring-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;

  padding: 0.7rem 1rem;
  border-radius: 999rem;

  background: rgba(255, 208, 228, 0.72);
  border: 0.0625rem solid rgba(255, 127, 182, 0.95);
  color: #7a1450;
  font-weight: 900;

  box-shadow: 0 0.7rem 1.4rem rgba(255, 127, 182, 0.14);
  transition:
    transform 150ms ease,
    filter 150ms ease,
    box-shadow 150ms ease;
}

.webring-link:hover {
  text-decoration: none;
  transform: translateY(-2px) scale(1.04);
  filter: brightness(0.92); /* darker */
  box-shadow: 0 1rem 1.9rem rgba(255, 127, 182, 0.22);
}

.webring-link:active {
  transform: translateY(0) scale(0.99);
}

/* label above nav */
.nav-label {
  font-size: 0.95rem;
  font-weight: 800;
  color: rgba(75, 18, 64, 0.85);
  margin: 0 0 0.6rem 0;
  letter-spacing: 0.04em;
}

/* webring pills */
.webring-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.webring-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;

  padding: 0.7rem 1rem;
  border-radius: 999rem;

  background: rgba(255, 208, 228, 0.72);
  border: 0.0625rem solid rgba(255, 127, 182, 0.95);
  color: #7a1450;
  font-weight: 900;

  box-shadow: 0 0.7rem 1.4rem rgba(255, 127, 182, 0.14);
  transition:
    transform 150ms ease,
    filter 150ms ease,
    box-shadow 150ms ease;
}

.webring-link:hover {
  text-decoration: none;
  transform: translateY(-1px);
  filter: brightness(0.985);
  box-shadow: 0 0.9rem 1.7rem rgba(255, 127, 182, 0.18);
}

.webring-link:focus-visible {
  outline: 0.22rem solid rgba(122, 20, 80, 0.35);
  outline-offset: 0.25rem;
}

/* make Resume pill slightly special */
.webring-link--main {
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(194, 24, 91, 0.55);
}

/* little arrows */
.nav-arrow {
  font-weight: 900;
}

/* tiny footer note */
.tiny-note {
  margin: 1.15rem 0 0 0;
  color: rgba(107, 59, 93, 0.9);
  font-size: 0.9rem;
}

/* Responsive tweaks */
@media (min-width: 48rem) {
  body {
    padding: 3rem 2rem;
  }

  .hero-card {
    padding: 2.5rem 2.25rem;
  }

  .hero-name {
    font-size: 3rem;
  }
}

/* 
   ABOUT PAGE – BIG PRETTY CARD
*/

.about-page {
  background: url(flowers.jpg);
  background-size: cover;
  background-position: center;
}

.about-hero-card {
  max-width: 60rem;
  width: 100%;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 2rem;
  padding: 2.5rem;
  box-shadow:
    0 2rem 4rem rgba(255, 127, 182, 0.3),
    0 0 0 0.6rem rgba(255, 127, 182, 0.12);
  backdrop-filter: blur(10px);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.about-photo img {
  width: 100%;
  max-width: 18rem;
  border-radius: 1.5rem;
  box-shadow: 0 1rem 2rem rgba(194, 24, 91, 0.25);
}

.about-name {
  font-family: Poppins, sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: #c2185b;
  margin-bottom: 0.5rem;
}

.about-subtitle {
  font-weight: 700;
  color: #7a1450;
  margin-bottom: 1rem;
}

.about-paragraph {
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

.about-fact-box {
  background: rgba(255, 208, 228, 0.6);
  border-radius: 1.25rem;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.about-fact-box h2 {
  margin-top: 0;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-buttons {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.about-webring {
  font-weight: 700;
  color: #7a1450;
}

.about-webring a {
  color: #c2185b;
}

@media (min-width: 48rem) {
  .about-layout {
    grid-template-columns: auto 1fr;
    align-items: center;
  }
}
