/* ENI Artist Website - Global Styles */

/* Font Faces */
@font-face {
  font-family: 'Cravelo';
  src: url('../fonts/Cravelo-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cravelo Outline';
  src: url('../fonts/Cravelo-Outline.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* CSS Variables */
:root {
  --color-black: #000000;
  --color-blue: #0032A0;
  --color-white: #FFFEF2;
  --font-primary: 'Cravelo', 'Bebas Neue', 'Oswald', sans-serif;
  --font-outline: 'Cravelo Outline', 'Bebas Neue', 'Oswald', sans-serif;
  --font-body: 'Inter', 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: 0.3s ease;
}

/* Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-black);
  color: var(--color-white);
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: var(--color-white);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-blue);
}

img {
  max-width: 100%;
  height: auto;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

h1 { font-size: clamp(3rem, 10vw, 8rem); }
h2 { font-size: clamp(2rem, 6vw, 4rem); }
h3 { font-size: clamp(1.5rem, 4vw, 2.5rem); }

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, transparent 100%);
}

.nav-logo {
  width: 60px;
  height: auto;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  padding: 0.5rem 0.75rem;
  transition: background 0.3s ease, color 0.3s ease;
}

.nav-links a:hover {
  background: var(--color-blue);
  color: var(--color-white) !important;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-blue);
  transition: width var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background: var(--color-white);
  transition: var(--transition);
}

/* Language Toggle */
.lang-toggle {
  display: flex;
  gap: 0.5rem;
  font-size: 0.8rem;
}

.lang-toggle button {
  background: none;
  border: 1px solid var(--color-white);
  color: var(--color-white);
  padding: 0.25rem 0.5rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  text-transform: uppercase;
  font-size: 0.7rem;
}

.lang-toggle button:hover,
.lang-toggle button.active {
  background: var(--color-blue);
  border-color: var(--color-blue);
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-logo {
  width: clamp(200px, 40vw, 400px);
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease;
}

.hero-enter {
  display: inline-block;
  padding: 1rem 3rem;
  border: 2px solid var(--color-white);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: var(--transition);
  animation: fadeInUp 1s ease 0.3s backwards;
}

.hero-enter:hover {
  background: var(--color-blue);
  border-color: var(--color-blue);
  color: var(--color-white);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.scroll-indicator svg {
  width: 30px;
  stroke: var(--color-white);
}

/* Page Sections */
.section {
  padding: 6rem 3rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-header {
  margin-bottom: 3rem;
}

.section-title {
  display: inline-block;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--color-blue);
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 4px;
}

.about-image::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 2px solid var(--color-blue);
  border-radius: 4px;
  z-index: -1;
}

/* Music Section */
.music-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.music-card {
  background: rgba(255, 254, 242, 0.05);
  padding: 2rem;
  border-radius: 8px;
  transition: var(--transition);
}

.music-card:hover {
  background: rgba(255, 254, 242, 0.1);
  transform: translateY(-5px);
}

.spotify-embed {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.music-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.music-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--color-white);
  border-radius: 30px;
  transition: var(--transition);
}

.music-link:hover {
  background: rgba(0, 50, 160, 0.85);
  border-color: var(--color-blue);
  color: var(--color-white);
}

.music-link:hover svg {
  fill: var(--color-white);
}

.music-link svg {
  width: 20px;
  height: 20px;
}

/* Videos Section */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.video-card {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 8px;
}

.video-card iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Shows Section */
.shows-list {
  max-width: 800px;
  margin: 0 auto;
}

.show-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  border-bottom: 1px solid rgba(255, 254, 242, 0.2);
  transition: var(--transition);
}

.show-item:hover {
  background: rgba(255, 254, 242, 0.05);
}

.show-date {
  text-align: center;
}

.show-day {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--color-blue);
}

.show-month {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.show-info h3 {
  margin-bottom: 0.5rem;
}

.show-venue {
  opacity: 0.7;
  font-size: 0.9rem;
}

.show-tickets {
  padding: 0.75rem 2rem;
  background: var(--color-blue);
  border-radius: 30px;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  transition: var(--transition);
}

.show-tickets:hover {
  background: var(--color-white);
  color: var(--color-black);
}

/* Shop Section */
.coming-soon {
  text-align: center;
  padding: 4rem;
}

.coming-soon h2 {
  font-family: var(--font-outline);
  font-size: clamp(4rem, 15vw, 10rem);
  line-height: 1;
  margin-bottom: 2rem;
  color: transparent;
  -webkit-text-stroke: 2px var(--color-white);
}

.coming-soon p {
  opacity: 0.7;
  font-size: 1.1rem;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
}

.social-link {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-white);
  border-radius: 50%;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--color-blue);
  border-color: var(--color-blue);
  transform: scale(1.1);
}

.social-link svg {
  width: 24px;
  height: 24px;
  fill: var(--color-white);
}

/* Footer */
.footer {
  padding: 3rem;
  text-align: center;
  border-top: 1px solid rgba(255, 254, 242, 0.1);
}

.footer p {
  opacity: 0.5;
  font-size: 0.85rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .nav {
    padding: 1rem 1.5rem;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--color-black);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transition: right var(--transition);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.5rem;
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .section {
    padding: 4rem 1.5rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-image {
    order: -1;
  }

  .about-image::before {
    display: none;
  }

  .show-item {
    grid-template-columns: auto 1fr;
    gap: 1rem;
  }

  .show-tickets {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 1rem;
  }

  .videos-grid {
    grid-template-columns: 1fr;
  }
}

/* Dual Language Entry Options */
.hero-entry-options {
  display: flex;
  gap: 4rem;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.entry-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.entry-lang {
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.8;
}

.entry-option .hero-enter {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  border: 1px solid var(--color-white);
  padding: 0.75rem 2rem;
  transition: var(--transition);
}

.entry-option .hero-enter:hover {
  background: var(--color-white);
  color: var(--color-black);
}

@media (max-width: 480px) {
  .hero-entry-options {
    gap: 2rem;
  }
  
  .entry-option .hero-enter {
    font-size: 1.2rem;
    padding: 0.5rem 1.5rem;
  }
}

/* Splash Screen - Language Selection */
.splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.splash.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.splash-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 50, 160, 0.85); /* Gauguin Blue #0032A0 */
}

.splash-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.splash-logo {
  width: 200px;
  height: auto;
  margin-bottom: 3rem;
}

.splash-entry-options {
  display: flex;
  gap: 4rem;
  justify-content: center;
}

.splash-enter {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  background: transparent;
  border: 2px solid var(--color-white);
  color: var(--color-white);
  padding: 1rem 2.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.splash-enter:hover {
  background: var(--color-white);
  color: var(--color-blue);
}

/* Nav hidden initially */
.nav.hidden {
  opacity: 0;
  pointer-events: none;
}

.nav {
  transition: opacity 0.4s ease;
}

/* Body scroll lock when splash is active */
body.splash-active {
  overflow: hidden;
}

@media (max-width: 480px) {
  .splash-entry-options {
    flex-direction: column;
    gap: 2rem;
  }
  
  .splash-logo {
    width: 150px;
  }
}


/* Cover Art Tiled Background */
.music-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  opacity: 0.35;
  z-index: 0;
  overflow: hidden;
}

.music-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: pulse-cover 8s ease-in-out infinite;
}

.music-bg img:nth-child(1) { animation-delay: 0s; }
.music-bg img:nth-child(2) { animation-delay: 0.5s; }
.music-bg img:nth-child(3) { animation-delay: 1s; }
.music-bg img:nth-child(4) { animation-delay: 1.5s; }
.music-bg img:nth-child(5) { animation-delay: 2s; }
.music-bg img:nth-child(6) { animation-delay: 2.5s; }
.music-bg img:nth-child(7) { animation-delay: 3s; }
.music-bg img:nth-child(8) { animation-delay: 3.5s; }
.music-bg img:nth-child(9) { animation-delay: 4s; }
.music-bg img:nth-child(10) { animation-delay: 4.5s; }
.music-bg img:nth-child(11) { animation-delay: 5s; }
.music-bg img:nth-child(12) { animation-delay: 5.5s; }
.music-bg img:nth-child(13) { animation-delay: 6s; }
.music-bg img:nth-child(14) { animation-delay: 6.5s; }
.music-bg img:nth-child(15) { animation-delay: 7s; }
.music-bg img:nth-child(16) { animation-delay: 7.5s; }

@keyframes pulse-cover {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

#music {
  position: relative;
}

#music .section-header,
#music .spotify-embed,
#music .music-links {
  position: relative;
  z-index: 1;
}

/* About Photo Animation */
.about-image img {
  animation: float-about 6s ease-in-out infinite;
}

@keyframes float-about {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.02); }
}

/* Discord CTA */
.discord-cta {
  margin-top: 1.5rem;
}

.discord-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--color-white);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 1px solid #5865F2;
  border-radius: 20px;
  transition: var(--transition);
}

.discord-link:hover {
  background: rgba(88, 101, 242, 0.85);
  color: var(--color-white);
}

.discord-link svg {
  width: 18px;
  height: 18px;
  fill: #5865F2;
}

.discord-link:hover svg {
  fill: var(--color-white);
}

/* Live Schedule */
.live-schedule {
  margin-top: 1.5rem;
  text-align: left;
}

.live-schedule p {
  margin: 0.25rem 0;
  font-size: 0.9rem;
}

.live-schedule p strong {
  color: var(--color-blue);
  letter-spacing: 1px;
}

.kick-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--color-white);
  text-decoration: none;
  padding: 0.4rem 0.8rem;
  border: 1px solid #53fc18;
  border-radius: 15px;
  margin-top: 0.5rem;
  transition: var(--transition);
}

.kick-link:hover {
  background: rgba(83, 252, 24, 0.2);
}

.kick-link svg {
  width: 16px;
  height: 16px;
  fill: #53fc18;
}

/* Align about content to top */
.about-content {
  align-items: flex-start;
}

.about-text {
  padding-top: 0;
}

/* About Subtitles - matching section title style with Cravelo */
.about-subtitle {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  color: var(--color-white);
  margin: 2.5rem 0 1rem 0;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.about-subtitle::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--color-blue);
}

.live-title {
  color: var(--color-white);
}

.live-schedule-text {
  font-size: 1rem;
  margin: 0.5rem 0 1rem 0;
  color: var(--color-white);
  opacity: 0.9;
}

/* Discord and Kick icons - circular like other social icons */
.discord-section .social-link,
.live-section .social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Discord and Live section spacing */
.discord-section {
  margin-top: 3.5rem;
}

.live-section {
  margin-top: 3.5rem;
}

/* Discord and Kick sections - icon to the right of text */
.discord-section,
.live-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.discord-section .about-subtitle,
.live-section .about-subtitle {
  margin: 0;
}

.discord-section .social-links,
.live-section .social-links {
  margin: 0;
}

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

.live-section .live-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.live-section .live-schedule-text {
  margin: 0.5rem 0 0 0;
}

/* Featured Video - Larger */
.featured-video {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 2rem;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Videos Section Background */
#videos {
  position: relative;
  overflow: hidden;
}

video.videos-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  z-index: 0;
}

#videos .section-header,
#videos .featured-video,
#videos > div {
  position: relative;
  z-index: 1;
}

/* Video Thumbnail with Play Button */
.video-thumbnail {
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 56.25%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.video-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-thumbnail:hover img {
  transform: scale(1.05);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 48px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.play-button svg {
  width: 100%;
  height: 100%;
}

.video-thumbnail:hover .play-button {
  transform: translate(-50%, -50%) scale(1.1);
}

/* Contact Section */
.contact-form-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-family: var(--font-primary);
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 1rem;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-blue);
  background: rgba(255, 255, 255, 0.1);
}

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

.submit-btn {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 1rem 2rem;
  background: transparent;
  border: 2px solid var(--color-white);
  border-radius: 30px;
  color: var(--color-white);
  cursor: pointer;
  transition: var(--transition);
  align-self: flex-start;
}

.submit-btn:hover {
  background: rgba(0, 50, 160, 0.85);
  border-color: var(--color-blue);
  color: var(--color-white);
}

/* Thank You Message */
.thank-you-message {
  text-align: center;
  padding: 3rem;
}

.thank-you-message p {
  font-size: 1.2rem;
  color: var(--color-white);
}

/* Shows Section Switching Background */
#shows {
  position: relative;
  overflow: hidden;
}

.shows-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.shows-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.shows-bg-img.active {
  opacity: 0.25;
}

#shows .section-header,
#shows .shows-list,
#shows > * {
  position: relative;
  z-index: 1;
}

/* Uh-Ey Title */
.uh-ey-title {
  font-family: var(--font-outline);
  font-size: 3rem;
  letter-spacing: 4px;
  margin-bottom: 1rem;
  color: var(--color-white);
}

/* More space between sections */
.section {
  padding: 6rem 2rem;
}

/* Align About content better */
.about-text {
  padding-right: 2rem;
}

/* Live schedule under title */
.live-section .live-schedule-text {
  text-align: left;
  margin-left: 56px; /* align with text after icon */
}

/* More space between Discord/Live sections */
.discord-section {
  margin-top: 4rem;
}

.live-section {
  margin-top: 4rem;
}

/* Mobile Improvements */
@media (max-width: 768px) {
  /* Discord and Live sections - keep icons inline on mobile */
  .discord-section,
  .live-section {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .live-section .live-row {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
  }
  
  .live-section .live-schedule-text {
    margin-left: 0;
    width: 100%;
  }
  
  /* Subtitles smaller on mobile */
  .about-subtitle {
    font-size: 1.3rem;
  }
  
  /* Music section */
  .music-links {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
  
  .spotify-embed {
    width: 100%;
    padding: 0 1rem;
  }
  
  .music-link {
    font-size: 0.85rem;
    padding: 0.6rem 1rem;
  }
  
  /* Video thumbnail */
  .featured-video {
    max-width: 100%;
  }
  
  /* Contact form */
  .contact-form-wrapper {
    padding: 0 1rem;
  }
  
  /* Shop section */
  .uh-ey-title {
    font-size: 2rem;
  }
  
  /* Cover art background - less columns on mobile */
  .music-bg {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(8, 1fr);
  }
}

@media (max-width: 480px) {
  .music-links {
    flex-direction: column;
    align-items: stretch;
  }
  
  .music-link {
    justify-content: center;
  }
  
  .about-subtitle {
    font-size: 1.1rem;
  }
  
  .social-links {
    gap: 0.75rem;
  }
  
  .social-link {
    width: 35px;
    height: 35px;
  }
}

/* Center Shop section on mobile */
@media (max-width: 768px) {
  #shop .coming-soon {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  #shop .coming-soon h2,
  #shop .coming-soon h3,
  #shop .coming-soon p {
    text-align: center;
  }
}
