body {
  margin: 0.5rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fdfdfd;
  color: #222;
}

.main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  width: 90vw;
  max-width: 540px;
  min-height: 90vh;
  background: linear-gradient(135deg, #ffaacc 0%, #ffd1e8 100%);
  border-radius: 1rem;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fffffe;
  color: #222;
  padding: 1rem;
  text-align: center;
  border-radius: 1rem;
  width: 90%;
  min-height: 85vh;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

img.profile {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 2px solid #eee;
}

h1 {
  font-size: clamp(1.5rem, 2vw + 1rem, 2rem);
  margin: 0.2rem 0;
}

h2 {
  font-size: clamp(.75rem, 1rem, 1.5rem);
  font-weight: bold;
  margin: 0.2rem 0 0.8rem;
  color: #555;
}

p.bio {
  max-width: 500px;
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 320px;
  gap: 1rem;
}

nav a {
  text-decoration: none;
  padding: 1rem;
  border: 1px solid #702963;
  border-radius: 999px;
  color: #000;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background-color 0.2s ease;
}

nav a:hover {
  background-color: #f5f5f5;
}

nav svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.phoneonly {
  display: none;
}

.footerbox {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
}

.footer {
  font-size: 0.9rem;
  color: #555;
  text-align: center;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.schedule-jazzy {
  background: linear-gradient(135deg, #ffaacc 0%, #ffd1e8 100%);
  border-radius: 14px;
  padding: .5rem 1.50rem 1rem 1.5rem;
  min-width: 265px;
  max-width: 640px;
  margin: .5rem;
  box-shadow: 0 8px 18px rgba(0,0,0,0.1);
  font-family: 'Segoe UI', sans-serif;
}

.schedule-jazzy h3 {
  text-align: center;
  font-size: 1.2rem;
  color: #702963;
  font-weight: 700;
}

.schedule-jazzy ul {
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}

.schedule-jazzy li {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.8);
  border-radius: 10px;
  padding: 0.4rem .4rem;
  margin-bottom: 0.5rem;
  box-shadow: 0 3px 6px rgba(0,0,0,0.05);
}

.schedule-jazzy .icon {
  font-size: 1.5rem;
  margin-right: 1.2rem;
}

.schedule-jazzy .details {
  display: flex;
  flex-direction: column;
}

.schedule-jazzy .date {
  font-weight: bold;
  font-size: 1rem;
  color: #000;
}

.schedule-jazzy .venue {
  font-size: 0.95rem;
  color: #444;
}

.schedule-jazzy .time {
  font-size: 0.9rem;
  color: #702963;
}

div .buytix {
  border-color: red;
  border-width: 2px;
}

    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.5rem .5rem;
      border-radius: 99px;
      font-weight: 700;
      font-size: .85rem;
      text-decoration: none;
      line-height: 1;
      margin-left: auto;
      min-height: 32px; /* good tap target */
      border: 2px solid purple;;
      right: 0;
      margin-right: .5rem;
      position: relative;
      transition: transform 0.08s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
    }

    .btn.ticket {
      background: #D291BC;
      color: #fff;
      box-shadow: 0px 4px 10px rgba(0,0,0,0.4);
    }
    .btn.ticket:hover { transform: translateY(-1px); box-shadow: 0 8px 18px rgba(0,0,0,0.2); }
    .btn.ticket:active { transform: translateY(0);  box-shadow: 0 3px 10px rgba(0,0,0,0.15); }
    .btn.ticket:focus-visible { outline: none; box-shadow: 0 0 0 3px #ffd1e8, 0 0 0 6px var(--accent); }

    .btn.is-outline {
      background: transparent;
      color: var(--accent);
      border-color: var(--accent);
    }

    .btn.is-soldout {
      background: #bdbdbd;
      color: #fff;
      cursor: not-allowed;
      border-color: #bdbdbd;
      box-shadow: none;
      pointer-events: none;
    }

@media (max-width: 400px) {
  .schedule-jazzy li {
    font-size: 1rem;
  }
  .schedule-jazzy .date, .schedule-jzzy .venue, .schedule-jazzy .time {
	  font-size: .8rem;
  }
  h2 {
    font-size: .85rem;
  }
  html, body {
    overflow-x: hidden;
  }
}
