/* SUNNY DOE — simple Cloudflare-safe static site */
:root {
  --black: #050505;
  --panel: #101010;
  --line: #292929;
  --yellow: #ffd400;
  --orange: #ff8a00;
  --white: #f7f7f2;
  --muted: #9d9d9d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 76px;
  display: flex;
  align-items: center;
  padding: 0 4vw;
  background: rgba(5,5,5,.94);
  border-bottom: 1px solid var(--line);
}

.mini-logo {
  display: flex;
  align-items: baseline;
  gap: 7px;
  transform: rotate(-2deg);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-style: italic;
  letter-spacing: .5px;
}

.mini-logo .its {
  color: var(--white);
  font-size: 13px;
}

.mini-logo .sunny {
  color: var(--yellow);
  font-size: 26px;
  text-shadow: 2px 2px 0 #000;
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav a {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.6px;
  transition: color .15s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--yellow);
}

.menu-btn {
  display: none;
}

main {
  padding-top: 76px;
}

.hero {
  min-height: calc(100vh - 76px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px 5vw 45px;
  border-bottom: 1px solid var(--line);
}

.hero-art-wrap {
  position: relative;
  width: min(900px, 92vw);
  margin: 0 auto;
}

.hero-art {
  width: 100%;
  max-height: 68vh;
  object-fit: contain;
}

.its-tag {
  position: absolute;
  z-index: 2;
  top: 8%;
  left: 17%;
  color: white;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-style: italic;
  font-size: clamp(24px, 4vw, 55px);
  transform: rotate(-8deg);
  text-shadow: 3px 3px 0 #000;
}

.hero-bottom {
  margin-top: 20px;
  text-align: center;
}

.hero-bottom p {
  margin: 0 0 22px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
}

.hero-bottom b {
  color: var(--orange);
  padding: 0 5px;
}

.yellow-btn {
  display: inline-flex;
  min-width: 155px;
  height: 48px;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: #000;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
}

.section {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  min-height: 50vh;
  padding: 100px 5vw;
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 45px;
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.section-label h2 {
  margin: 0;
  color: var(--yellow);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(44px, 6vw, 72px);
  font-style: italic;
  transform: rotate(-3deg);
  line-height: 1;
}

.section-label h2::after {
  content: "";
  display: block;
  width: 90px;
  height: 5px;
  margin-top: 9px;
  background: white;
  transform: rotate(-5deg);
}

.section-body {
  min-width: 0;
}

.soundcloud-placeholder {
  min-height: 180px;
  padding: 26px;
  display: flex;
  align-items: center;
  gap: 24px;
  border: 1px solid #3a3a3a;
  background:
    radial-gradient(circle at 80% 50%, rgba(255,212,0,.08), transparent 28%),
    var(--panel);
}

.sc-icon {
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: #000;
  font-size: 24px;
}

.soundcloud-placeholder div:last-child {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.soundcloud-placeholder strong {
  font-size: clamp(22px, 3vw, 38px);
}

.small,
.soundcloud-placeholder span:last-child,
.helper {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.helper {
  margin-top: 14px;
  line-height: 1.7;
}

.show-row {
  min-height: 67px;
  display: grid;
  grid-template-columns: 110px 1fr 1fr auto;
  align-items: center;
  gap: 18px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
}

.show-row:last-child {
  border-bottom: 1px solid var(--line);
}

.show-row time {
  color: var(--yellow);
}

.show-row a {
  padding: 10px 14px;
  background: var(--yellow);
  color: black;
  font-size: 10px;
  font-weight: 900;
}

.about {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 35px;
}

.about p {
  max-width: 650px;
  margin: 0;
  color: #d6d6d6;
  font-size: clamp(18px, 2.4vw, 28px);
  line-height: 1.5;
}

.sun-badge {
  width: 130px;
  height: 130px;
  flex: 0 0 130px;
  display: grid;
  place-items: center;
  border: 3px solid var(--yellow);
  border-radius: 50%;
  color: var(--yellow);
  font-size: 68px;
}

.email {
  display: block;
  margin-top: 13px;
  color: var(--yellow);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(30px, 5vw, 68px);
  font-style: italic;
  overflow-wrap: anywhere;
}

.socials {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.socials a {
  padding: 10px 14px;
  border: 1px solid #414141;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
}

footer {
  max-width: 1250px;
  margin: 0 auto;
  padding: 30px 5vw 45px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #777;
  font-size: 10px;
  letter-spacing: 1.2px;
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 68px;
  }

  .header {
    height: 68px;
    padding: 0 18px;
  }

  main {
    padding-top: 68px;
  }

  .mini-logo .sunny {
    font-size: 20px;
  }

  .menu-btn {
    margin-left: auto;
    width: 40px;
    height: 40px;
    display: block;
    border: 0;
    background: transparent;
    position: relative;
  }

  .menu-btn span {
    position: absolute;
    width: 22px;
    height: 2px;
    left: 9px;
    background: white;
  }

  .menu-btn span:first-child {
    top: 15px;
  }

  .menu-btn span:last-child {
    top: 23px;
  }

  .nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    padding: 25px 20px 30px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    background: #080808;
    border-bottom: 1px solid var(--line);
  }

  .nav.open {
    display: flex;
  }

  .hero {
    min-height: calc(100vh - 68px);
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-art-wrap {
    width: 100%;
  }

  .its-tag {
    left: 14%;
  }

  .section {
    min-height: auto;
    padding: 70px 20px;
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .section-label h2 {
    font-size: 46px;
  }

  .soundcloud-placeholder {
    min-height: 150px;
    padding: 20px;
  }

  .sc-icon {
    width: 55px;
    height: 55px;
    flex-basis: 55px;
  }

  .show-row {
    grid-template-columns: 78px 1fr auto;
    padding: 17px 0;
  }

  .show-row span:nth-of-type(2) {
    display: none;
  }

  .about {
    align-items: flex-start;
    flex-direction: column;
  }

  .sun-badge {
    width: 90px;
    height: 90px;
    flex-basis: 90px;
    font-size: 48px;
  }

  footer {
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
  }
}
