/* SXRGEMANE — light grey + light purple theme */

:root {
  --bg-page: #f4f2f8;
  --bg-section: #ebe6f2;
  --bg-footer: #e2dae8;
  --purple-soft: #d4c8e4;
  --purple-mid: #9b85b3;
  --purple-deep: #4a3d5c;
  --text-body: #3a3248;
  --text-muted: #6b5f7a;
  --hero-overlay: rgba(232, 224, 242, 0.82);
  --hero-overlay-bottom: rgba(244, 242, 248, 0.92);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-body);
  background: var(--bg-page);
}

/* Hero: greyed FL Studio background */
.hero {
  position: relative;
  min-height: min(78vh, 720px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 6vw, 4rem) 1.5rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("1470133240_fl_studio.jpg");
  background-size: cover;
  background-position: center;
  filter: grayscale(0.55) brightness(0.72) contrast(1.05);
  transform: scale(1.02);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .social__link {
    transition: none;
  }

  .social__link:hover {
    transform: none;
  }
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    var(--hero-overlay) 0%,
    rgba(220, 208, 235, 0.78) 45%,
    var(--hero-overlay-bottom) 100%
  );
}

.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: min(100%, 40rem);
  width: 100%;
  padding-inline: clamp(0.5rem, 3vw, 0);
}

.hero__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--purple-deep);
  opacity: 0.92;
}

.hero__title {
  margin: 0 0 0.75rem;
  font-family: "Syne", "DM Sans", sans-serif;
  font-weight: 800;
  /* Scales down on narrow screens so long name + tracking fits */
  font-size: clamp(1.35rem, 4vw + 0.65rem, 4rem);
  letter-spacing: clamp(0.02em, 0.5vw + 0.01em, 0.06em);
  line-height: 1.05;
  color: var(--purple-deep);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  max-width: 100%;
}

.hero__tagline {
  margin: 0;
  font-size: 1.125rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* About */
.about {
  padding: clamp(3rem, 8vw, 5rem) 1.5rem;
  background: linear-gradient(180deg, var(--bg-page) 0%, var(--bg-section) 100%);
  border-top: 1px solid rgba(155, 133, 179, 0.2);
}

.about__inner {
  max-width: 38rem;
  margin: 0 auto;
}

.about__title {
  margin: 0 0 1.25rem;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 1.875rem);
  letter-spacing: 0.04em;
  color: var(--purple-deep);
}

.about__content p {
  margin: 0 0 1rem;
  color: var(--text-body);
}

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

.about__content strong {
  color: var(--purple-deep);
  font-weight: 600;
}

/* Footer */
.site-footer {
  padding: clamp(2rem, 5vw, 3rem) 1.5rem;
  background: var(--bg-footer);
  border-top: 1px solid rgba(155, 133, 179, 0.25);
}

.site-footer__inner {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
}

.site-footer__brand {
  margin: 0 0 1.25rem;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.2em;
  color: var(--purple-deep);
}

.social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  color: var(--purple-deep);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(155, 133, 179, 0.35);
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease,
    border-color 0.2s ease;
}

.social__link:hover {
  color: #fff;
  background: var(--purple-mid);
  border-color: var(--purple-mid);
  transform: translateY(-2px);
}

.social__link:focus-visible {
  outline: 2px solid var(--purple-mid);
  outline-offset: 3px;
}

.social__icon {
  width: 1.25rem;
  height: 1.25rem;
}

.site-footer__note {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
}
