@media (min-width: 761px) {
  .wrap#page {
    padding-left: 12px;
    padding-right: 12px;
  }
}
/* Utility: Tighter hero spacing for subpages */
.hero.hero-tight {
  min-height: 20vh;
  padding-top: 24px;
}
@media (max-width: 900px) {
  .site-footer {
    padding-bottom: 80px !important; /* Ensure enough space for bottom nav bar */
  }
}

/* Modern Footer Styles - Updated */
@media (max-width: 760px) {
  .bottom-nav {
    position: static;
    width: 100%;
    background: #181818;
    border-top: 1px solid rgba(242,220,228,0.08);
  }
  .site-footer {
    margin-bottom: 0 !important;
  }
}
/* Mobile: keep 12px bottom padding to avoid overlap with nav */
.site-footer {
  background: #181818;
  color: #f2dce4;
  padding: 12px 0 12px 0;
  margin-top: 12px;
  font-size: 15px;
  border-top: 1px solid rgba(242,220,228,0.08);
}
@media (min-width: 761px) {
  .site-footer {
    padding: 8px 0 0 0 !important;
    margin-bottom: 0 !important;
  }
}
.footer-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.footer-subscribe-btn {
  background: #f2dce4;
  color: #181818;
  border: none;
  padding: 6px 18px;
  border-radius: 18px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  margin-top: 2px;
  transition: background 0.2s, color 0.2s;
}
.footer-subscribe-btn:hover {
  background: #e2b6c7;
  color: #181818;
}
.footer-social-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 0 auto 0 auto;
}
.footer-social-links a {
  display: inline-flex;
  align-items: center;
  background: #222;
  border-radius: 50%;
  padding: 7px;
  transition: background 0.2s, transform 0.2s;
}
.footer-social-links a:hover {
  background: #f2dce4;
  transform: translateY(-2px) scale(1.08);
}
.footer-social-links img {
  width: 24px;
  height: 24px;
  filter: grayscale(0.2) brightness(1.1);
}
.footer-links {
  display: flex;
  justify-content: center;
  margin: 0 auto 0 auto;
}
.footer-links a {
  color: #bfaec2;
  font-size: 13px;
  opacity: 0.7;
  transition: opacity 0.2s;
  margin: 0 8px;
}
.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}
.footer-bottom {
  border-top: 1px solid rgba(242,220,228,0.08);
  text-align: center;
  padding: 10px 0 4px 0;
  color: #bfaec2;
  font-size: 13px;
  letter-spacing: 1px;
  background: #181818;
}
@media (max-width: 900px) {
  .footer-main {
    gap: 8px;
    padding: 0 8px 8px 8px;
  }
  .footer-social-links {
    gap: 12px;
  }
}
/* filepath: css/styles.css */

/* Kaoli Website Stylesheet */

/* Reset */
* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

.wrap,
#page {
  flex: 1;
  display: flex;
  flex-direction: column;
}
main {
  flex: 1;
}

.site-footer {
  margin-top: auto;
  flex-shrink: 0;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.45;
  position: relative;
}

/* Fixed background - works on iOS */
.background-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url("../images/gray-petales.jpg") center/cover no-repeat;
  opacity: 0.2; /* Changed from 0.3 to 0.2 (reduced by 10%) */
  z-index: -1;
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Container */
.wrap#page {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  min-height: 0;
}

/* Only constrain inner content, not the page wrapper */
.page-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gap);
  width: 100%;
  min-width: 0;
}

/* header spacing: leave a CSS fallback header height,
   JS will set --header-height dynamically on load/resize */
:root {
  --header-height: 72px;
}

/* keep header visible on top */
header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  /* subtle background so content can scroll under */
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
}

/* Header */
header.site-header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
}

/* Nav */
nav.main-nav {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

/* Nav Link */
.nav-link {
  font-size: 14px;
  font-weight: 600;
  transition: color 0.3s;
  color: inherit;
  background: transparent;   /* make buttons visually identical to links */
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
  text-transform: none;
}

.nav-link:focus {
  outline: 2px solid rgba(242, 220, 228, 0.12);
  outline-offset: 4px;
  border-radius: 6px;
}

.nav-link:hover {
  color: var(--sakura);
}

/* Active navigation state */
.nav-link.active {
  color: var(--sakura);
  border-bottom: 2px solid var(--sakura);
  padding-bottom: 2px;
}

/* Dropdown Navigation */
.nav-item.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  padding: 8px 0;
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 10px 20px;
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s;
  border-left: 2px solid transparent;
}

.dropdown-link:hover {
  color: var(--sakura);
  background: rgba(242, 220, 228, 0.05);
  border-left-color: var(--sakura);
}

.icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  object-fit: contain;
}

a .icon {
  transition: transform 0.2s, opacity 0.2s;
}

a:hover .icon {
  transform: scale(1.1);
  opacity: 0.9;
}

.platform-icon img {
  display: block;
  width: 18px;
  height: 18px;
}

/* Ensure main nav stays on the right when the brand element is removed */
.main-nav {
  margin-left: auto;
}

/* Hero */
.hero {
  position: relative;
  min-height: 35vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.hero .hero-content {
  position: relative;
  z-index: 1;
}

.hero .title {
  font-family: Poppins, sans-serif;
  font-size: 72px;
  font-weight: 700;
  margin: 0 0 12px 0;
  letter-spacing: 4px;
}

.hero .tag {
  font-size: 16px;
  color: var(--sakura);
  margin-bottom: 30px;
}

.cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background: var(--sakura);
  color: var(--bg);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(242, 220, 228, 0.2);
}

.btn.secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--muted);
}

.btn.secondary:hover {
  border-color: var(--sakura);
  color: var(--sakura);
}

/* Navigation Buttons - subtle outline style */
.btn-nav {
  display: inline-block;
  padding: 10px 20px;
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-transform: uppercase;
}

.btn-nav:hover {
  border-color: var(--sakura);
  color: var(--sakura);
  background: rgba(242, 220, 228, 0.05);
  transform: translateY(-1px);
}

/* Next Release */
.next {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: center;
  margin: 60px 0;
}

@media (min-width: 901px) {
  .next {
    margin: 60px 40px;
  }
}

.next .cover {
  aspect-ratio: 1;
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
}

.next .cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kicker {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--sakura);
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.song-title {
  font-family: Poppins, sans-serif;
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 8px 0;
}

.release-sub {
  color: var(--muted);
  margin-bottom: 20px;
}

.countdown-wrapper {
  margin-bottom: 20px;
}

.countdown {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 12px;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.countdown-label {
  color: var(--text);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  opacity: 0.6;
}

.countdown-value {
  font-family: Poppins, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: var(--sakura);
  min-width: 42px;
  display: inline-block;
}

.countdown-cta {
  color: var(--muted);
  font-size: 14px;
}

/* Release Section */
.release-meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-row {
  display: flex;
  gap: 12px;
}

/* Out Now - Featured Releases */
.out-now {
  margin: 80px 0;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}

.featured-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.featured-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.5);
}

.featured-thumb {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--muted);
}

.featured-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-meta {
  padding: 20px;
}

.featured-meta h3 {
  margin: 0 0 8px 0;
  font-size: 18px;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.featured-meta .date {
  font-size: 14px;
  color: var(--muted);
}

/* Discography */
.discography {
  margin: 80px 0;
}

.section-subtitle {
  color: var(--muted);
  margin: -20px 0 30px 0;
  font-size: 14px;
}

.section-title {
  font-family: Poppins, sans-serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 901px) {
  .grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.card .thumb {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--muted);
  height: 256px; 
  width: 100%;
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

@media (min-width: 901px) {
  .card .thumb {
    height: 300px;
    width: 100%;
    border-top-left-radius: var(--radius);
    border-top-right-radius: var(--radius);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
}

.card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card .meta {
  padding: 12px;
}

.card .meta h4 {
  margin: 0 0 6px 0;
  font-size: 14px;
  line-height: 1.4;
}

.card .meta .date {
  font-size: 12px;
  color: var(--muted);
}

.badge-latest {
  display: inline-block;
  background: var(--sakura);
  color: var(--bg);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
}

.badge-feature {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* About */

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: center;
  margin: 60px 0;
}

@media (min-width: 901px) {
  .about {
    margin: 60px 40px;
  }
}

.out-now .section-title {
  align-self: flex-start;
  margin-left: calc((100% - 700px) / 2); /* match featured-grid max-width */
}

.featured-grid {
}

.about .portrait {
  aspect-ratio: 1;
  overflow: hidden;
  width: 100%;
  border-radius: var(--radius);
}

.about .portrait img {
  width: 100%;
  object-fit: cover;
  object-position: top;
}

.about h3 {
  letter-spacing: 3px;
  margin: 0 0 8px 0;
  font-family: Poppins, sans-serif;
  font-size: 32px;
  font-weight: 700;
}

.about .description {
  color: var(--muted);
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.6;
}

.about > div > p:first-of-type {
  margin: 0;
  text-align: justify;
}

.about p {
  font-size: 16px;
  line-height: 1.6;
}

.about > div > p:last-of-type {
  margin-top: 12px;
  color: var(--muted);
}

/* Footer */
footer {
  margin-top: 80px;
  padding: 60px 0;
  border-top: 1px solid var(--card);
  text-align: center;
}

footer .copyright {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 1px;
}

footer .links {
  margin-bottom: 40px;
}

.follow-section {
  margin-bottom: 32px;
}

.follow-section h3 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin: 0 0 20px 0;
  font-weight: 700;
  color: var(--text);
}

.social-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-links a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--sakura);
  font-size: 12px;
  font-weight: 600;
  transition: all 0.3s;
  text-decoration: none;
}

.social-links a:hover {
  color: var(--text);
  transform: translateY(-4px);
}

.social-links .icon {
  width: 24px;
  height: 24px;
}

footer .genres {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
  letter-spacing: 0.5px;
  line-height: 1.6;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8); /* Darker backdrop */
  z-index: 1000;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  padding: 20px;
  backdrop-filter: blur(8px); /* Add blur effect */
}

.modal.open {
  display: flex;
}

.modal .panel {
  background: var(--card);
  border-radius: var(--radius);
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  flex-shrink: 0;
  margin: auto;
  border: 2px solid rgba(242, 220, 228, 0.2); /* Add sakura border */
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 
              0 0 0 1px rgba(242, 220, 228, 0.1); /* Enhanced shadow + inner glow */
}

/* Prevent body scroll when modal is open */
body.modal-open {
  overflow: hidden;
}

/* Listen Modal - specific styling */
#listenModal .panel {
  max-width: 500px;
  width: 90%;
  padding: 28px;
  background: var(--modalPanelBackground);
  border-radius: var(--radius);
  overflow: visible;
  display: block;
  max-height: 90vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  border: 2px solid rgba(242, 220, 228, 0.2); /* Add sakura border */
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8),
              0 0 0 1px rgba(242, 220, 228, 0.1);
}

#listenModal header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

#listenModal h3 {
  margin: 0;
  font-family: Poppins, sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.modal-cover {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(242, 220, 228, 0.2);
}

#modalSub {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 16px;
}

.modal-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 14px;
}

.platform {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  transition: all 0.3s;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  width: 100%;
}

.platform:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(242, 220, 228, 0.2);
  transform: translateY(-2px);
}

.platform span:first-child {
  font-size: 13px;
  font-weight: 600;
}

.platform .icon {
  font-size: 18px;
  transition: transform 0.2s;
}

.platform:hover .icon {
  transform: scale(1.2);
}

.platform-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.platform-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.platform:hover .platform-icon {
  transform: scale(1.2);
}

/* Contact Modal - specific styling */
#contactModal .panel {
  max-width: 1000px;
  width: calc(100% - 40px);
  padding: 0;
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  place-items: center;
  max-height: 90vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  border: 2px solid rgba(242, 220, 228, 0.25); /* Add sakura border */
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9),
              0 0 0 1px rgba(242, 220, 228, 0.15); /* Enhanced shadow */
}

.contact-panel {
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  min-height: auto;
}

/* left column: image + info */
.contact-info {
  background: linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.45));
  color: var(--text);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  justify-content: flex-start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.contact-image {
  width: 100%;
  height: 240px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}

.contact-copy h3 {
  margin: 8px 0 6px;
  font-family: Poppins, sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 2px;
}

.contact-copy p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.contact-meta {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.contact-follow {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-follow a {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s;
}

.contact-follow a:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.contact-follow .icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* right column: form */
.contact-form {
  background: var(--bg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
}

#contactForm .form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 10px;
}

#contactForm label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

#contactForm input,
#contactForm textarea {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(242, 220, 228, 0.2);
  padding: 14px;
  border-radius: 8px;
  color: var(--text);
  font-size: 14px;
  outline: none;
  transition: all 0.3s;
  font-family: Inter, sans-serif;
}

#contactForm input::placeholder,
#contactForm textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

#contactForm input:focus,
#contactForm textarea:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--sakura);
  box-shadow: 0 0 0 8px rgba(242, 220, 228, 0.08);
}

#contactForm input:hover:not(:focus),
#contactForm textarea:hover:not(:focus) {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(242, 220, 228, 0.15);
}

.form-actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  align-items: center;
  justify-content: flex-end; /* move buttons to the right on desktop */
  flex-wrap: wrap;
}

/* ensure buttons have a comfortable target size on desktop */
.form-actions .btn {
  min-width: 140px;
}

/* mobile: stack and stretch buttons */
@media (max-width: 760px) {
  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .form-actions .btn {
    width: 100%;
    min-width: 0;
  }
}

.name-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.name-fields .form-row {
  margin-bottom: 0;
}

#contactForm .form-row:not(.name-fields .form-row) {
  margin-bottom: 14px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height); /* Offset scroll position by header height */
}

/* Ultra-modern minimal close button */
#listenModal header button,
#contactModal .close-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  cursor: pointer;
  padding: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  font-size: 0;
}

#listenModal header button::before,
#listenModal header button::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s;
}

#listenModal header button::before {
  transform: rotate(45deg);
}

#listenModal header button::after {
  transform: rotate(-45deg);
}

#listenModal header button:hover {
  background: rgba(242, 220, 228, 0.08);
  border-color: rgba(242, 220, 228, 0.3);
  transform: scale(1.05);
}

#listenModal header button:hover::before,
#listenModal header button:hover::after {
  background: var(--sakura);
  width: 16px;
}

#listenModal header button:active {
  transform: scale(0.95);
}
/* =======================
   NEW PAGE STYLES
   ======================= */

/* Page Header */
.page-header {
  text-align: center;
  padding: 80px 20px 60px;
  max-width: 800px;
  margin: 0 auto;
}

.page-title {
  font-size: 48px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin: 0 0 12px 0;
  color: var(--sakura);
  letter-spacing: 2px;
}

.page-subtitle {
  font-size: 16px;
  color: var(--text);
  opacity: 0.7;
  margin: 0;
}

/* Section CTA */
.section-cta {
  text-align: center;
  margin-top: 40px;
}

.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  border: 2px solid var(--sakura);
  color: var(--sakura);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--sakura);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 220, 228, 0.3);
}

/* Container for centered content */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Shows Section Styles */
.shows-section {
  padding: 40px 0 80px;
}

.no-shows-placeholder,
.coming-soon-placeholder {
  text-align: center;
  padding: 60px 20px;
}

.placeholder-icon {
  font-size: 64px;
  margin-bottom: 20px;
}

.no-shows-placeholder h2,
.coming-soon-placeholder h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--sakura);
  margin: 0 0 16px 0;
}

.no-shows-placeholder p,
.coming-soon-placeholder p {
  font-size: 16px;
  color: var(--text);
  opacity: 0.8;
  margin: 8px 0;
  line-height: 1.6;
}

/* Newsletter Signup */
.newsletter-signup {
  max-width: 500px;
  margin: 40px auto 0;
}

.newsletter-signup form {
  display: flex;
  gap: 12px;
}

.newsletter-signup input[type="email"] {
  flex: 1;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(242, 220, 228, 0.2);
  border-radius: 4px;
  color: var(--text);
  font-size: 14px;
  transition: all 0.3s ease;
}

.newsletter-signup input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-signup input[type="email"]:focus {
  outline: none;
  border-color: var(--sakura);
  background: rgba(255, 255, 255, 0.08);
}

.newsletter-signup .btn-primary {
  padding: 14px 28px;
  background: var(--sakura);
  color: var(--bg);
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-signup .btn-primary:hover {
  background: rgba(242, 220, 228, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(242, 220, 228, 0.3);
}

/* Shows Dates List (for when you have shows) */


/* Shows Table (Desktop) */
.shows-table-wrapper {
  width: 100%;
  margin: 0 auto;
}
.shows-table {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  background: #232323;
}
.shows-table-header {
  background: #181818;
  font-weight: 700;
  color: var(--sakura);
}
.shows-table-row {
  display: flex;
  width: 100%;
}
.shows-table-cell {
  flex: 1;
  padding: 18px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  font-size: 17px;
}
.shows-table-row:last-child .shows-table-cell {
  border-bottom: none;
}
.shows-table-row:not(.shows-table-header):hover {
  background: rgba(255,255,255,0.04);
}

/* Hide mobile cards on desktop */
.shows-cards {
  display: none;
}
.mobile-only {
  display: none !important;
}
.desktop-only {
  display: block !important;
}

.date-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80px;
  padding: 12px;
  background: rgba(242, 220, 228, 0.1);
  border-radius: 8px;
  flex-shrink: 0;
}

.date-month {
  font-size: 12px;
  font-weight: 700;
  color: var(--sakura);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.date-day {
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-top: 4px;
}

.show-info {
  flex: 1;
}

.venue-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 6px 0;
}

.location {
  font-size: 14px;
  color: var(--text);
  opacity: 0.7;
  margin: 0;
}

.ticket-link {
  flex-shrink: 0;
}

.btn-tickets {
  display: inline-block;
  padding: 12px 24px;
  background: var(--sakura);
  color: var(--bg);
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-tickets:hover {
  background: rgba(242, 220, 228, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(242, 220, 228, 0.3);
}

/* Shop Section Styles */
.shop-section {
  padding: 40px 0 80px;
}

.external-shop {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(242, 220, 228, 0.1);
}

.external-shop p {
  font-size: 14px;
  color: var(--text);
  opacity: 0.7;
  margin: 0 0 20px 0;
  text-align: center;
}

.platform-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.platform-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(242, 220, 228, 0.2);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: all 0.3s ease;
}

.platform-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--sakura);
  transform: translateY(-2px);
}

.platform-btn img {
  width: 20px;
  height: 20px;
}

/* Merch Grid (for when you have products) */
.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.merch-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(242, 220, 228, 0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.merch-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(242, 220, 228, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.merch-image {
  width: 100%;
  aspect-ratio: 1;
  background: rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.merch-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.merch-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin: 16px 16px 8px;
}

.merch-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--sakura);
  margin: 0 16px 16px;
}

.btn-buy {
  display: block;
  width: calc(100% - 32px);
  margin: 0 16px 16px;
  padding: 12px;
  background: var(--sakura);
  color: var(--bg);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-buy:hover {
  background: rgba(242, 220, 228, 0.9);
  transform: translateY(-2px);
}

/* Footer Updates */
footer .industry-link {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(242, 220, 228, 0.1);
}

footer .industry-link a {
  font-size: 12px;
  color: var(--text);
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

footer .industry-link a:hover {
  opacity: 0.8;
}