:root {
  --pink:   #FCD6DF;
  --green:  #A3B565;
  --blue:   #C4DDF2;
  --white:  #ffffff;
  --yellow: #F9C349;

  --serif:  "Playfair Display", serif;
  --script: "Great Vibes", cursive;
  --sans:   gill-sans, "Gill Sans MT", Calibri, sans-serif;
}

* { box-sizing: border-box; }
html, body {
  height: 100%;
}
body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--sans);
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(rgba(255,255,255,0.3), rgba(255,255,255,0.3)),
    url("../images/sparklebackground.png") repeat;
  background-size: 200px 200px;
}

.spacer {
  width: 100vw;
  height: 2.5rem;
  background: url("../images/checkerprint.png") repeat-x center;
  background-size: auto 100%;
  margin: 0;
  padding: 0;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  box-sizing: border-box;
}

.glass-nav {
  position: fixed;
  inset: 0 0 auto 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  border-bottom: 1px solid rgba(255 255 255 / 0.3);
  background: rgba(255 255 255 / 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(184 191 199 / 0.50);
  z-index: 1000;
}

.nav-logo img { height: 40px; width: auto; display: block; }

.nav-links {
  flex: 1;
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.nav-links a {
  font: 700 1.1rem var(--serif);
  color: rgb(240 110 154);
  text-decoration: none;
  transition: color 0.3s, font-family 0.3s;
}
.nav-links a:hover {
  font-family: var(--script);
  font-size: 0.8rem;
}

.social-links {
  display: flex;
  height: 40px;
  align-items: center;
  justify-content: center
}
.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3rem;
  color: rgb(240 110 154);
  text-decoration: none;
  transition: color 0.2s;
}
.social-links a:hover { color: var(--pink); }

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  min-height: 60vh;
  padding: 6rem 0 2rem;
  background: url("../images/main.jpg") center / cover no-repeat;
  overflow: hidden;
  z-index: 0;
}
.hero .name { display: flex; align-items: center; }
.name-text { display: flex; flex-direction: column; align-items: flex-start; }
.hero h1 {
  margin: 0;
  line-height: 1;
  letter-spacing: -0.05em;
  font-family: var(--serif);
  font-size: 6vw;
  color: var(--pink);
  text-shadow: 2px 2px rgb(237 87 112);
}
.hero h2 {
  margin: 0;
  font-family: var(--script);
  font-size: 2.5vw;
  color: rgb(224 237 250);
}
.hero-badge {
  width: 10em;
  height: 10em;
  pointer-events: none;
  animation: spin 20s linear infinite;
}
.hero-badge:hover { cursor: url("../images/like.png"), auto; }
@keyframes spin { to { transform: rotate(360deg); } }

.section {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 1rem;
}

.glass-footer {
  position: relative;
  z-index: 10;
  overflow: hidden;
  width: 100%;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 7rem;
  padding-bottom: 5rem;
}
.glass-footer .footer-bg {
  position: absolute;
  inset: 0;
  background-color: var(--blue);
  z-index: 1;
}
.glass-footer .footer-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  padding: 2rem 1rem 1rem;
  text-align: center;
  font-family: var(--sans);
  font-size: 1rem;
  color: #333;
}
.footer-sections {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.footer-info,
.footer-connect,
.footer-logo { flex: 1 1 200px; min-width: 180px; }
.footer-info h3,
.footer-connect h3 {
  margin-bottom: 0.5rem;
  font-size: 2rem;
  color: rgb(240 110 154);
  letter-spacing: 0.05em;
  font-family: var(--script);
}
.footer-info ul,
.footer-social ul { list-style: none; margin: 0; padding: 0; }
.footer-info ul li,
.footer-social ul li { margin-bottom: 0.3rem; }
.footer-info ul li a,
.footer-social ul li a {
  color: var(--white);
  font-family: var(--sans);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-info ul li a:hover,
.footer-social ul li a:hover { font-family: var(--script); }
.footer-social {
  display: flex;
  gap: 0.7rem;
  justify-content: center;
  margin-bottom: 0.7rem;
}
.footer-logo { display: flex; align-items: center; justify-content: center; }
.footer-logo img { height: 10rem; width: auto; border-radius: 12px; }
.footer-copy {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: rgb(240 110 154);
  letter-spacing: 0.03em;
}

.curved-title {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 2rem;
  width: 100%;
}
.curved-title svg {
  width: 400px;
  max-width: 90vw;
  height: 80px;
  overflow: visible;
}
.curved-text {
  font-family: var(--script);
  font-size: 3.5rem;
  fill: rgb(240 110 154);
  font-weight: bold;
  letter-spacing: 0.08em;
  text-shadow: 1px 1px 8px rgba(163,181,101,0.08);
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.project-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0 0 0 / 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}
.project-card:hover {
  transform: translateY(-6px) scale(1.03) rotate(-1deg);
  box-shadow: 0 12px 32px rgba(0 0 0 / 0.10);
}
.project-card h3 {
  margin: 1rem 1.2rem 0.5rem;
  font-family: var(--script);
  font-size: 1.6rem;
  color: rgb(240 110 154);
  display: flex;
  justify-content: center;
  letter-spacing: .05rem;
}
.project-desc {
  flex: 1;
  margin: 0 1.2rem 1.2rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #864b58;
}

.btn {
  display: inline-block;
  margin: 0 1.2rem 1.6rem;
  padding: 0.55rem 1.4rem;
  border-radius: 2em;
  font: 600 1rem var(--sans);
  color: rgb(240 110 154);
  background: color-mix(in srgb, #e2eaee 70%, var(--blue) 30%);
  box-shadow:
    0 4px 24px rgba(196, 221, 242, 0.18),
    0 1.5px 6px rgba(255,255,255,0.18) inset;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, border 0.2s;
  cursor: pointer;
  text-align: center;
  justify-content: center;
}
.btn:hover {
  font-family: var(--script);
}

.resume-cta {
  width: 100%;
  background: var(--white);
}
.resume-cta-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 1rem;
}
.resume-cta h2 {
  margin-bottom: 1rem;
  font-family: var(--serif);
  font-size: 2rem;
  color: rgb(240 110 154);
}
.star-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.star {
  width: 5em;
  height: 5em;
  pointer-events: none;
  animation: star-pulse 2.5s ease-in-out infinite;
}
@keyframes star-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.18); opacity: 0.85; }
}

.resume-links {
  text-align: center;
  justify-content: center;
  margin-top: 1rem;
  margin-bottom: -1rem;
}

.script-accent {
  font-family: var(--script);
  font-size: 2.5rem;
}

.about {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--white);
  padding: 4rem 0;
  box-sizing: border-box;
}
.about-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 1.4fr;
  gap: 2.5rem;
  align-items: center;
  padding: 0 1rem;
}
.about .hello {
  margin: 0 0 0.6rem;
  font-family: var(--script);
  letter-spacing: -0.02em;
  color: var(--pink);
  text-shadow: 2.2px 2.2px rgb(237 87 112);
  font-size: 6rem;
  line-height: 0.9;
}
.about .about-bio {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgb(240 110 154);
}
.about-points {
  width: 5.5rem;
  height: auto;
  vertical-align: middle;
  margin-top:-2.5rem;
}
.about-image-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-top: 0.5rem;
}
.about-badge {
  color: rgb(240 110 154);
  background: color-mix(in srgb, #e2eaee 70%, var(--blue) 30%);
  font-family: var(--sans);
  font-size: 1rem;
  padding: 0.35em 1.1em;
  border-radius: 2em;
  box-shadow: 0 2px 8px rgba(163,181,101,0.10);
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: transform 0.18s cubic-bezier(.4,2,.6,1), box-shadow 0.18s;
  cursor: default;
  user-select: none;
  z-index: 1;
  position: relative;
}
.about-badge:hover {
  transform: scale(1.25) rotate(-7deg);
  box-shadow: 0 4px 16px rgba(163,181,101,0.18);
  z-index: 2;
}

@media (max-width: 900px) {
  .glass-nav      { padding: 0.7rem 1rem; }
  .nav-links      { gap: 1rem; }
  .hero           { min-height: 50vh; padding-top: 5rem; }
  .hero-badge     { width: 70px; height: 70px; }
  .hero h1        { font-size: 8vw; }
  .hero h2        { font-size: 4vw; }
}
@media (max-width: 800px) {
  .about-inner { grid-template-columns: 1fr; }
  .about .hello,
  .about .about-bio { text-align: center; }
}
@media (max-width: 600px) {
  .glass-nav        { flex-direction: column; align-items: stretch; padding: 0.5rem; border-radius: 0 0 12px 12px; }
  .nav-logo         { display: flex; justify-content: center; margin-bottom: 0.5rem; }
  .nav-links        { flex: none; justify-content: center; gap: 0.7rem; margin-bottom: 0.5rem; }
  .social-links     { justify-content: center; width: 100%; margin-bottom: 0.5rem; }
  .hero             { min-height: 40vh; padding: 4rem 0 1rem; }
  .hero-badge       { width: 8em; height: 8em; }
  .hero h1          { font-size: 12vw; }
  .hero h2          { font-size: 6vw; }
  .section          { padding: 2rem 0.5rem; }
  footer            { padding: 1rem 0.5rem; }
}