/* Home page styles */

.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 48px;
  color: var(--primary);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(160deg, #4e4e4e 0%, #353535 60%, #202020 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.5;
  transition: opacity 0.5s;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.15) 50%, transparent 100%);
  mix-blend-mode: normal;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.26;
  z-index: 1;
  pointer-events: none;
  animation: floatBlob 14s ease-in-out infinite;
}

.hero-blob-a {
  width: 260px;
  height: 260px;
  background: rgba(45,197,111,0.36);
  top: 12%;
  left: -60px;
}

.hero-blob-b {
  width: 320px;
  height: 320px;
  background: rgba(255,138,61,0.35);
  right: -90px;
  top: 16%;
  animation-delay: -4s;
}

.hero-blob-c {
  width: 220px;
  height: 220px;
  background: rgba(255,138,61,0.28);
  bottom: 8%;
  right: 28%;
  animation-delay: -8s;
}

@keyframes floatBlob {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-16px) scale(1.05); }
}

.hero-floating-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.hero-floating-icons i {
  position: absolute;
  color: rgba(217, 108, 18, 0.7);
  font-size: 2rem;
  animation: floatIcon 7s ease-in-out infinite;
}

.hero-floating-icons i:nth-child(1) { left: 14%; top: 24%; }
.hero-floating-icons i:nth-child(2) { right: 18%; top: 34%; animation-delay: -2s; }
.hero-floating-icons i:nth-child(3) { left: 22%; bottom: 18%; animation-delay: -4s; }

.section-floating-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.section-floating-icons i {
  position: absolute;
  font-size: 1.7rem;
  color: rgba(255, 138, 61, 0.46);
  animation: floatIcon 8s ease-in-out infinite;
}

.section-floating-icons-artists i:nth-child(1) { left: 8%; top: 22%; }
.section-floating-icons-artists i:nth-child(2) { right: 12%; top: 32%; animation-delay: -2.5s; }
.section-floating-icons-artists i:nth-child(3) { left: 18%; bottom: 16%; animation-delay: -5s; }

.section-floating-icons-venue i:nth-child(1) { left: 10%; top: 26%; }
.section-floating-icons-venue i:nth-child(2) { right: 14%; top: 22%; animation-delay: -2s; }
.section-floating-icons-venue i:nth-child(3) { right: 24%; bottom: 16%; animation-delay: -4.5s; }

.section-floating-icons-contact i:nth-child(1) { left: 9%; top: 30%; }
.section-floating-icons-contact i:nth-child(2) { right: 10%; top: 20%; animation-delay: -2s; }
.section-floating-icons-contact i:nth-child(3) { left: 22%; bottom: 12%; animation-delay: -4s; }

@keyframes floatIcon {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(6deg); }
}

#visualizer-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 24px;
  max-width: 800px;
  width: 100%;
}

.hero-logo-circle {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 400px;
  height: 400px;
  max-width: 90vw;
  max-height: 90vw;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,138,61,0), rgba(255,138,61,0));
  filter: drop-shadow(0 8px 24px rgba(18, 164, 217, 0));

}

.hero-logo {
  max-width: 250px;
  max-height: 250px;
  width: 100%;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 8px 24px rgba(27, 27, 27, 0.5));
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-5%);
}

@keyframes logoGlide {
  0%, 100% { transform: translateY(0); }
  45% { transform: translateY(-5px); }
  46% { transform: translate(-1px, -4px); }
  47% { transform: translate(1px, -5px); }
  60% { transform: translateY(-4px); }
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 900;
  letter-spacing: -2px;
  background: linear-gradient(135deg, #FF6B35, #7B2FBE, #00C9A7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--text-muted);
  font-weight: 400;
  margin-bottom: 40px;
}

/* Countdown */
.countdown {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.countdown-wrap {
  position: relative;
  padding: 22px 18px 30px;
  margin: 0 auto;
  width: min(860px, 100%);
  min-height: 210px;
  overflow: visible;
}

.countdown-particles {
  position: absolute;
  inset: -80px -120px -70px;
  pointer-events: none;
  z-index: 1;
}

.countdown-particle {
  position: absolute;
  width: var(--size, 4px);
  height: var(--size, 4px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 196, 87, 0.95), rgba(255, 107, 53, 0.34));
  opacity: 0;
  transform: translate3d(0, 0, 0);
  will-change: transform, opacity;
  animation: countdownParticleFloat var(--dur, 7s) ease-in-out var(--delay, 0s) infinite;
}

@keyframes countdownParticleFloat {
  0% { transform: translate3d(0, 14px, 0) rotate(0deg) scale(0.8); opacity: 0; }
  20% { opacity: 0.65; }
  50% { transform: translate3d(var(--dx, 0), var(--dy, 0), 0) rotate(var(--rot, 0deg)) scale(1); opacity: 0.4; }
  100% { transform: translate3d(calc(var(--dx, 0) * 1.6), calc(var(--dy, 0) * -1.1), 0) rotate(var(--rot, 0deg)) scale(0.75); opacity: 0; }
}

.particle-sparkle {
  background: radial-gradient(circle, rgba(255, 248, 203, 1), rgba(255, 156, 46, 0.18) 72%, rgba(255, 156, 46, 0));
  box-shadow: 0 0 14px rgba(255, 196, 87, 0.55);
  animation-timing-function: ease-in-out;
}

.particle-mist {
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 210, 119, 0.25), rgba(255, 122, 41, 0.08) 62%, rgba(255, 122, 41, 0));
  filter: blur(2px);
  box-shadow: 0 0 24px rgba(255, 149, 59, 0.14);
  animation-timing-function: ease-in-out;
}

.particle-orbit {
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 221, 136, 0.95), rgba(255, 142, 49, 0.8));
  box-shadow: 0 0 12px rgba(255, 164, 64, 0.42);
  animation-name: countdownParticleFloat, countdownOrbitSpin;
}

.particle-pulse {
  border-radius: 50%;
  background: rgba(255, 201, 87, 0.22);
  box-shadow: 0 0 0 0 rgba(255, 166, 52, 0.36);
  animation-name: countdownParticleFloat, countdownPulseRing;
  animation-duration: var(--dur, 7s), calc(var(--dur, 7s) * 0.75);
  animation-timing-function: ease-in-out, ease-out;
  animation-iteration-count: infinite, infinite;
}

@keyframes countdownPulseRing {
  0% { box-shadow: 0 0 0 0 rgba(255, 166, 52, 0.28); opacity: 0.25; }
  50% { box-shadow: 0 0 0 16px rgba(255, 166, 52, 0); opacity: 0.7; }
  100% { box-shadow: 0 0 0 0 rgba(255, 166, 52, 0); opacity: 0.25; }
}

@keyframes countdownOrbitSpin {
  0% { transform: translate3d(0, 0, 0) rotate(0deg) scale(0.95); }
  50% { transform: translate3d(0, 0, 0) rotate(180deg) scale(1.08); }
  100% { transform: translate3d(0, 0, 0) rotate(360deg) scale(0.95); }
}

.particle-rain {
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 244, 172, 1), rgba(255, 115, 45, 0.9));
  box-shadow: 0 0 8px rgba(255, 152, 61, 0.45);
  animation-name: countdownRainFloat;
}

.particle-embers {
  background: radial-gradient(circle, rgba(255, 220, 118, 1), rgba(255, 121, 35, 0.3) 58%, rgba(255, 121, 35, 0));
  box-shadow: 0 0 16px rgba(255, 144, 53, 0.58);
}

.particle-wave {
  width: var(--size, 28px);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 230, 146, 0), rgba(255, 200, 82, 0.95), rgba(255, 120, 46, 0));
  box-shadow: 0 0 18px rgba(255, 154, 58, 0.24);
  animation-name: countdownWaveFloat;
}

@keyframes countdownRainFloat {
  0% { transform: translate3d(0, -18px, 0) rotate(18deg) scale(0.92); opacity: 0; }
  15% { opacity: 0.7; }
  100% { transform: translate3d(20px, 46px, 0) rotate(18deg) scale(1); opacity: 0; }
}

@keyframes countdownWaveFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scaleX(0.8); opacity: 0.2; }
  50% { transform: translate3d(0, -8px, 0) scaleX(1.15); opacity: 0.9; }
}

.countdown-item {
  background: transparent;
  border: none;
  border-radius: 16px;
  padding: 8px 12px;
  width: 130px;
  min-width: 130px;
  text-align: center;
}

.countdown-value {
  display: block;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  min-width: 3ch;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.42), 0 0 20px rgba(255, 107, 53, 0.24);
}


.countdown-value.value-bump { animation: countdownValueBump 0.34s ease; }
.countdown-value.value-flip { animation: countdownValueFlip 0.44s cubic-bezier(.4,0,.2,1); }
.countdown-value.value-pulse { animation: countdownValuePulse 0.4s ease; }
.countdown-value.value-glow { animation: countdownValueGlow 0.46s ease; }
.countdown-value.value-slide { animation: countdownValueSlide 0.36s ease; }
.countdown-value.value-zoom { animation: countdownValueZoom 0.36s ease; }
.countdown-value.value-shake { animation: countdownValueShake 0.34s ease; }

@keyframes countdownValueBump {
  0% { transform: translateY(2px) scale(0.92); opacity: 0.8; }
  60% { transform: translateY(-2px) scale(1.08); opacity: 1; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}

@keyframes countdownValueFlip {
  0% { transform: rotateX(90deg); opacity: 0; }
  100% { transform: rotateX(0deg); opacity: 1; }
}

@keyframes countdownValuePulse {
  0% { transform: scale(0.88); }
  50% { transform: scale(1.12); }
  100% { transform: scale(1); }
}

@keyframes countdownValueGlow {
  0% { text-shadow: 0 0 0 rgba(255, 138, 61, 0); }
  50% { text-shadow: 0 0 20px rgba(255, 138, 61, 0.7); }
  100% { text-shadow: 0 2px 8px rgba(0, 0, 0, 0.42), 0 0 20px rgba(255, 107, 53, 0.24); }
}

@keyframes countdownValueSlide {
  0% { transform: translateY(10px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes countdownValueZoom {
  0% { transform: scale(0.72); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes countdownValueShake {
  0% { transform: translateX(0); }
  25% { transform: translateX(-2px); }
  50% { transform: translateX(2px); }
  75% { transform: translateX(-1px); }
  100% { transform: translateX(0); }
}

.countdown-label {
  display: block;
  font-size: 0.72rem;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.32);
}

.countdown-message {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
  padding: 20px;
  text-align: center;
}

/* Music player in hero */
.music-player-hero {
  position: absolute;
  top: 80px;
  right: 24px;
  z-index: 3;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(255,138,61,0.22);
  border-radius: 16px;
  padding: 14px 18px;
  min-width: 180px;
  text-align: center;
  backdrop-filter: blur(12px);
}

.music-player-track {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 160px;
}

.music-player-artist {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.music-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.music-controls button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 1.2rem;
  padding: 4px;
  transition: color 0.2s;
  line-height: 1;
}

.music-controls button:hover { color: var(--primary); }

.music-controls .play-btn {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
}

.music-controls .play-btn:hover { background: #e55a24; color: white; }

/* Autoplay overlay */
.autoplay-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 5, 5, 0.45);
  cursor: pointer;
  backdrop-filter: blur(2px);
  transition: opacity .45s ease, transform .45s ease, filter .45s ease;
  transform-origin: center;
}

.autoplay-overlay-hidden {
  pointer-events: none;
}

.autoplay-overlay-exit--fade { animation: autoplayExitFade .55s ease forwards; }
.autoplay-overlay-exit--shrink { animation: autoplayExitShrink .55s ease forwards; }
.autoplay-overlay-exit--slide-up { animation: autoplayExitSlideUp .58s ease forwards; }
.autoplay-overlay-exit--slide-down { animation: autoplayExitSlideDown .58s ease forwards; }
.autoplay-overlay-exit--zoom-blur { animation: autoplayExitZoomBlur .6s ease forwards; }
.autoplay-overlay-exit--rotate { animation: autoplayExitRotate .6s ease forwards; }
.autoplay-overlay-exit--burst { animation: autoplayExitBurst .6s ease forwards; }

@keyframes autoplayExitFade {
  from { opacity: 1; }
  to { opacity: 0; }
}

@keyframes autoplayExitShrink {
  from { opacity: 1; transform: scale(1); }
  to { opacity: 0; transform: scale(0.88); }
}

@keyframes autoplayExitSlideUp {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(-20px); }
}

@keyframes autoplayExitSlideDown {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(24px); }
}

@keyframes autoplayExitZoomBlur {
  from { opacity: 1; transform: scale(1); filter: blur(0); }
  to { opacity: 0; transform: scale(1.08); filter: blur(12px); }
}

@keyframes autoplayExitRotate {
  from { opacity: 1; transform: rotate(0deg) scale(1); }
  to { opacity: 0; transform: rotate(-7deg) scale(0.84); }
}

@keyframes autoplayExitBurst {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(1.08); }
  100% { opacity: 0; transform: scale(1.2); }
}

.play-prompt {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  background: rgba(255,255,255,0.9);
  border: 2px solid rgba(255,138,61,0.65);
  border-radius: 50px;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: pulse 2s ease-in-out infinite;
  transition: transform .3s ease, opacity .3s ease;
}

.play-prompt.clicked {
  transform: scale(0.92);
  opacity: 0;
}

.play-prompt[data-animation="none"] { animation: none; }
.play-prompt[data-animation="pulse"] { animation: pulse 2s ease-in-out infinite; }
.play-prompt[data-animation="ripple"] { animation: ripplePrompt 1.8s ease-out infinite; }
.play-prompt[data-animation="bounce"] { animation: bouncePrompt 1.3s ease-in-out infinite; }
.play-prompt[data-animation="glow"] { animation: glowPrompt 1.8s ease-in-out infinite; }
.play-prompt[data-animation="wave"] { animation: wavePrompt 2s ease-in-out infinite; }
.play-prompt[data-animation="shake"] { animation: shakePrompt 1.7s ease-in-out infinite; }
.play-prompt[data-animation="pop"] { animation: popPrompt 1.4s ease-in-out infinite; }

.play-prompt i { font-size: 1.8rem; color: var(--primary); }

@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,107,53,0.4); }
  50% { transform: scale(1.03); box-shadow: 0 0 0 12px rgba(255,107,53,0); }
}

@keyframes ripplePrompt {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 138, 61, 0.45); }
  70% { box-shadow: 0 0 0 16px rgba(255, 138, 61, 0); }
}

@keyframes bouncePrompt {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes glowPrompt {
  0%, 100% { box-shadow: 0 0 0 rgba(255, 138, 61, 0); }
  50% { box-shadow: 0 0 20px rgba(255, 138, 61, 0.5); }
}

@keyframes wavePrompt {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

@keyframes shakePrompt {
  0%, 100% { transform: rotate(0deg); }
  20% { transform: rotate(-1.5deg); }
  40% { transform: rotate(1.5deg); }
  60% { transform: rotate(-1deg); }
  80% { transform: rotate(1deg); }
}

@keyframes popPrompt {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: orange;
  font-size: 1.4rem;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Blob decorations */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.12;
  animation: blobAnim 14s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes blobAnim {
  0%, 100% { border-radius: 60% 40% 30% 70%/60% 30% 70% 40%; }
  50% { border-radius: 30% 60% 70% 40%/50% 60% 30% 60%; }
}

/* Artists grid */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.artist-card {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(255,138,61,0.16);
  border-radius: 20px;
  padding: 32px 20px 24px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  backdrop-filter: blur(8px);
}

.artist-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 14px 34px rgba(255,138,61,0.2);
}

.artist-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-size: 2.5rem;
  color: white;
}

.artist-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.artist-name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.artist-genre {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 500;
}

/* Venue */
.venue-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.venue-name {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.venue-address {
  font-size: 1rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.venue-map-container {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,138,61,0.2);
  aspect-ratio: 16/9;
}

.venue-map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Contact */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-info p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s;
}

.contact-email:hover { opacity: 0.8; }

.contact-form {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,138,61,0.2);
  border-radius: 20px;
  padding: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 7px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: #f8fcff;
  border: 1px solid rgba(255,138,61,0.2);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus { border-color: var(--primary); }

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--primary), #f57b20);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 14px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.3s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.submit-btn:hover { opacity: 0.9; transform: translateY(-2px); }
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.form-message {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-message.success { background: rgba(0,201,167,0.12); border: 1px solid var(--accent); color: var(--accent); }
.form-message.error { background: rgba(255,107,53,0.12); border: 1px solid var(--primary); color: var(--primary); }

/* Back to top */
#back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 800;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
  box-shadow: 0 4px 16px rgba(255,107,53,0.4);
}

#back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
#back-to-top:hover { background: #e55a24; }

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .music-player-hero { display: none; }
  .countdown { gap: 10px; }
  .countdown-item { width: 100px; min-width: 100px; }
  .section-floating-icons i { font-size: 1.35rem; opacity: .7; }
  .venue-info { grid-template-columns: 1fr; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .artists-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .artists-grid { grid-template-columns: 1fr; }
}
