/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #5d0952;
  --secondary-color: #c77dff;
  --dark-bg: #1a1a2e;
  --darker-bg: #0f0f1e;
  --light-text: #ffffff;
  --gray-text: #b0b0b0;
  --accent-gold: #ffd60a;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--dark-bg);
  color: var(--light-text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 3px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-img {
  height: 50px;
  width: auto;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(93, 9, 82, 0.3);
  transition: transform 0.3s;
}

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

.logo-text {
  display: inline-block;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: var(--light-text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s;
}

.nav-link:hover {
  color: var(--primary-color);
}

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

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

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--light-text);
  border-radius: 3px;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, #1a1a2e 0%, #1f0e29 50%, #2d1b3d 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(93, 9, 82, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(199, 125, 255, 0.1) 0%, transparent 50%);
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  animation: fadeInUp 1s ease-out;
}

.hero-logo {
  margin-bottom: 2rem;
  animation: fadeInDown 1s ease-out;
}

.hero-logo img {
  height: 200px;
  width: auto;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(93, 9, 82, 0.5);
  transition: transform 0.3s;
}

.hero-logo img:hover {
  transform: scale(1.05) rotate(2deg);
}

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

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

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 8rem;
  font-weight: 900;
  letter-spacing: 15px;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(93, 9, 82, 0.5);
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    filter: drop-shadow(0 0 20px rgba(93, 9, 82, 0.6));
  }
  to {
    filter: drop-shadow(0 0 40px rgba(199, 125, 255, 0.8));
  }
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 3px;
  margin-bottom: 2rem;
  color: var(--gray-text);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), #9d4edd);
  color: white;
  box-shadow: 0 5px 15px rgba(93, 9, 82, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(93, 9, 82, 0.6);
}

.btn-secondary {
  background: transparent;
  color: var(--light-text);
  border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(199, 125, 255, 0.4);
}

.btn-small {
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  font-size: 2rem;
  color: var(--gray-text);
  cursor: pointer;
}

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

/* Section Styles */
section {
  padding: 6rem 0;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

/* About Section */
.about {
  background: var(--darker-bg);
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
}

.lead {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stat {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s;
}

.stat:hover {
  transform: scale(1.05);
  border-color: var(--primary-color);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent-gold);
  font-family: 'Montserrat', sans-serif;
}

.stat-label {
  font-size: 1rem;
  color: var(--gray-text);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Music Section */
.music {
  background: var(--dark-bg);
}

.albums {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.album-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s;
  cursor: pointer;
}

.album-card:hover {
  transform: translateY(-10px);
}

.album-cover {
  position: relative;
  width: 100%;
  padding-top: 100%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  overflow: hidden;
}

.album-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.3);
}

.album-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.album-card:hover .album-overlay {
  opacity: 1;
}

.play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-color);
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition: transform 0.3s;
}

.play-btn:hover {
  transform: scale(1.1);
}

.album-title {
  padding: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.album-year {
  padding: 0 1rem 1rem;
  color: var(--gray-text);
}

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

.streaming-btn {
  padding: 0.8rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  color: var(--light-text);
  text-decoration: none;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.streaming-btn:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-3px);
}

/* Bands Section */
.bands {
  background: var(--dark-bg);
}

.bands-subtitle {
  text-align: center;
  color: var(--gray-text);
  font-size: 1.1rem;
  margin-top: -2rem;
  margin-bottom: 3rem;
}

.bands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.band-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.band-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(93, 9, 82, 0.1), rgba(199, 125, 255, 0.05));
  opacity: 0;
  transition: opacity 0.3s;
}

.band-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(93, 9, 82, 0.3);
}

.band-card:hover::before {
  opacity: 1;
}

.band-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  position: relative;
  z-index: 1;
  transition: transform 0.3s;
}

.band-card:hover .band-icon {
  transform: scale(1.1) rotate(5deg);
}

.band-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--light-text);
  position: relative;
  z-index: 1;
}

.band-description {
  color: var(--gray-text);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.band-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
}

.band-link:hover {
  color: var(--primary-color);
  gap: 0.8rem;
}

/* Tour Section */
.tour {
  background: var(--darker-bg);
}

.tour-dates {
  max-width: 800px;
  margin: 0 auto;
}

.tour-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border-left: 4px solid var(--primary-color);
  transition: all 0.3s;
}

.tour-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(10px);
}

.tour-date {
  text-align: center;
  min-width: 70px;
}

.date-day {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent-gold);
  font-family: 'Montserrat', sans-serif;
}

.date-month {
  font-size: 1rem;
  color: var(--gray-text);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.tour-info {
  flex: 1;
}

.tour-city {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.tour-venue {
  color: var(--gray-text);
  font-size: 0.9rem;
}

/* Gallery Section */
.gallery {
  background: var(--dark-bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  padding-top: 100%;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, rgba(93, 9, 82, 0.2), rgba(199, 125, 255, 0.2));
}

/* Sponsors Section */
.sponsors {
  background: var(--darker-bg);
  padding: 4rem 0;
}

.sponsors-subtitle {
  text-align: center;
  color: var(--gray-text);
  font-size: 1rem;
  margin-top: -2rem;
  margin-bottom: 3rem;
  font-style: italic;
}

.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.sponsor-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
  aspect-ratio: 3/2;
  position: relative;
  overflow: hidden;
}

.sponsor-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(93, 9, 82, 0.1), rgba(199, 125, 255, 0.05));
  opacity: 0;
  transition: opacity 0.3s;
}

.sponsor-card:hover {
  transform: translateY(-5px);
  border-color: rgba(93, 9, 82, 0.5);
  box-shadow: 0 5px 20px rgba(93, 9, 82, 0.2);
}

.sponsor-card:hover::before {
  opacity: 1;
}

.sponsor-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%) sepia(100%) hue-rotate(270deg) saturate(120%) brightness(0.7) contrast(1.3);
  transition: filter 0.3s;
  position: relative;
  z-index: 1;
  border-radius: 12px;
}

.sponsor-card:hover img {
  filter: grayscale(100%) sepia(100%) hue-rotate(270deg) saturate(150%) brightness(1.0) contrast(1.2);
}

.sponsor-logo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.15);
  width: 100%;
  height: 100%;
}

/* Contact Section */
.contact {
  background: var(--dark-bg);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

.contact-details {
  margin: 2rem 0;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.contact-item i {
  color: var(--accent-gold);
  font-size: 1.5rem;
}

.contact-link {
  color: var(--light-text);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-link:hover {
  color: var(--secondary-color);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-text);
  font-size: 1.5rem;
  text-decoration: none;
  transition: all 0.3s;
}

.social-link:hover {
  background: var(--primary-color);
  transform: translateY(-5px);
}

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

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--light-text);
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s;
}

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

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

/* Footer */
.footer {
  background: var(--darker-bg);
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer p {
  color: var(--gray-text);
  margin: 0.5rem 0;
}

.footer i {
  color: var(--primary-color);
}

/* Band Detail Pages */
.band-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a2e 0%, #1f0e29 50%, #2d1b3d 100%);
  position: relative;
  padding-top: 80px;
}

.band-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(93, 9, 82, 0.15) 0%, transparent 70%);
}

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

.band-hero-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: white;
  box-shadow: 0 10px 40px rgba(93, 9, 82, 0.5);
  animation: fadeInDown 0.8s ease-out;
}

.band-hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s ease-out;
}

.band-hero-subtitle {
  font-size: 1.3rem;
  color: var(--gray-text);
  letter-spacing: 2px;
  animation: fadeInUp 1s ease-out;
}

.band-details {
  padding: 4rem 0;
  background: var(--dark-bg);
}

.band-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.band-detail-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s;
}

.band-detail-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(93, 9, 82, 0.2);
}

.detail-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  margin-bottom: 1.5rem;
}

.band-detail-card h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
}

.band-detail-card p {
  color: var(--gray-text);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.conductor-info h3 {
  font-size: 1.4rem;
  color: var(--light-text);
  margin-bottom: 0.5rem;
}

.conductor-bio {
  color: var(--gray-text);
  font-style: italic;
}

.practice-schedule {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.practice-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border-left: 3px solid var(--primary-color);
}

.practice-day {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.1rem;
}

.practice-day i {
  color: var(--accent-gold);
}

.practice-time {
  font-size: 1.1rem;
  color: var(--secondary-color);
  font-weight: 600;
}

.practice-location {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  align-items: flex-start;
}

.practice-location i {
  color: var(--accent-gold);
  font-size: 1.3rem;
  margin-top: 3px;
}

.practice-location div {
  line-height: 1.6;
}


.band-join-card {
  background: linear-gradient(135deg, rgba(93, 9, 82, 0.2), rgba(199, 125, 255, 0.1));
  border-color: var(--primary-color);
  text-align: center;
}

.band-join-card .btn {
  margin-top: 1rem;
}

.back-button-container {
  text-align: center;
  padding: 2rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: var(--darker-bg);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .logo-img {
    height: 40px;
  }

  .logo-text {
    font-size: 1.5rem;
  }

  .hero-logo img {
    height: 150px;
  }

  .hero-title {
    font-size: 4rem;
    letter-spacing: 8px;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

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

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

  .tour-item {
    flex-direction: column;
    text-align: center;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .sponsors-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }
}