body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #181818;
  color: #f5f5f5;
}
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(24,24,24,0.98);
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.container.nav-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5rem 2rem;
}
.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo-img {
  height: 48px;
  width: auto;
  margin-right: 0.5rem;
  display: block;
}
.logo {
  display: none;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.2s;
  padding: 0.5rem 0.8rem;
  border-radius: 5px;
}
nav a:hover, nav a.active {
  background: linear-gradient(90deg, #ffb347 0%, #ff5e62 100%);
  color: #181818;
}
.hero-section {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('https://images.unsplash.com/photo-1511671782779-c97d3d27a1d4?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(120deg, rgba(24,24,24,0.8) 60%, rgba(255,179,71,0.3) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}
.hero-content h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  font-weight: 700;
}
.tagline {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: #ffb347;
}
.cta-btn {
  background: linear-gradient(90deg, #ffb347 0%, #ff5e62 100%);
  color: #181818;
  padding: 0.9rem 2.2rem;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: background 0.2s, color 0.2s;
}
.cta-btn:hover {
  background: linear-gradient(90deg, #ff5e62 0%, #ffb347 100%);
  color: #fff;
}
.section {
  max-width: 1100px;
  margin: 3rem auto;
  padding: 2.5rem 1.5rem;
  background: #232323;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.13);
}
.section-title {
  font-size: 2.2rem;
  color: #ffb347;
  margin-bottom: 2rem;
  text-align: center;
  letter-spacing: 1px;
}
.members-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.member-card {
  background: #292929;
  border-radius: 14px;
  box-shadow: 0 1px 8px rgba(0,0,0,0.10);
  padding: 1.5rem 1rem;
  text-align: center;
  width: 210px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.member-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 4px 16px rgba(255,179,71,0.15);
}
.member-card img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid #ffb347;
}
.member-card h3 {
  margin: 0.5rem 0 0.2rem 0;
  font-size: 1.15rem;
  color: #fff;
}
.member-card .role {
  color: #ffb347;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.member-card a {
  color: #ff5e62;
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 500;
  transition: color 0.2s;
}
.member-card a:hover {
  color: #ffb347;
}
.events-section .events-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.event-card {
  background: linear-gradient(120deg, #ffb347 60%, #ff5e62 100%);
  color: #181818;
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(0,0,0,0.10);
  padding: 1.5rem 1.2rem;
  min-width: 250px;
  max-width: 320px;
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 500;
}
.event-card h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1.2rem;
  color: #181818;
}
.contact-section .social-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
}
.contact-section .social-links a {
  color: #ffb347;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.2s;
}
.contact-section .social-links a:hover {
  color: #ff5e62;
}
footer {
  text-align: center;
  padding: 2rem 0 1rem 0;
  background: #222;
  border-top: 2px solid #444;
  color: #aaa;
  font-size: 1rem;
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('band/band.png') center/cover no-repeat;
  opacity: 0.25;
  z-index: 0;
  background-color: #181818;
}
.footer-contact, footer p {
  position: relative;
  z-index: 1;
}
.youtube-link {
  margin-top: 2rem;
  text-align: center;
}
.youtube-btn {
  display: inline-block;
  background: #ff0000;
  color: #fff;
  font-weight: bold;
  padding: 0.9rem 2.2rem;
  border-radius: 30px;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: background 0.2s, color 0.2s;
}
.youtube-btn:hover {
  background: #c20000;
  color: #fff;
}
.footer-contact {
  text-align: center;
  margin-bottom: 1.2rem;
  color: #fff;
}
.footer-contact p {
  margin: 0.2rem 0;
  font-size: 1.08rem;
}
.footer-contact a {
  color: #ffb347;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-contact a:hover {
  color: #ff5e62;
}
.footer-logo {
  display: block;
  margin: 0 auto 1rem auto;
  height: 210px;
  width: auto;
  max-width: 360px;
}
@media (max-width: 900px) {
  .members-grid, .events-section .events-list {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
  }
  .container.nav-flex {
    flex-direction: column;
    gap: 0.7rem;
    padding: 0.7rem 1rem;
  }
}
@media (max-width: 600px) {
  .hero-content h2 {
    font-size: 1.5rem;
  }
  .section {
    padding: 1.2rem 0.5rem;
  }
  .section-title {
    font-size: 1.3rem;
  }
  .member-card {
    width: 90vw;
    min-width: unset;
  }
  .event-card {
    min-width: unset;
    max-width: 95vw;
  }
}
.band-tile-section {
  max-width: 1100px;
  margin: 3rem auto 2rem auto;
  padding: 2.5rem 1.5rem;
  background: #232323;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.13);
}
.band-tile-container {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.band-tile-image {
  flex: 1 1 320px;
  min-width: 220px;
  max-width: 400px;
  text-align: center;
}
.band-tile-image img {
  width: 100%;
  max-width: 350px;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.band-tile-desc {
  flex: 2 1 400px;
  min-width: 220px;
  color: #fff;
}
.band-tile-desc h2 {
  color: #ffb347;
  margin-top: 0;
  font-size: 2rem;
}
.band-tile-desc p {
  font-size: 1.15rem;
  line-height: 1.7;
  margin: 1rem 0 0 0;
}
@media (max-width: 900px) {
  .band-tile-container {
    flex-direction: column;
    gap: 1.5rem;
  }
  .band-tile-image img {
    max-width: 90vw;
  }
}
.band-tile-welcome h2 {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 2.2rem;
  margin-top: 0;
  letter-spacing: 1.5px;
  font-weight: 800;
  background: linear-gradient(90deg, #ffb347 0%, #ff5e62 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.18));
}
.decorative-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2.2rem 0 2.2rem 0;
  min-height: 48px;
}
.divider-line {
  flex: 1;
  height: 3px;
  background: linear-gradient(90deg, #ffb347 0%, #ff5e62 100%);
  border-radius: 2px;
  margin: 0 18px;
  opacity: 0.7;
}
.divider-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #232323;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  padding: 0.3rem;
}
.divider-icon svg {
  display: block;
}
@media (max-width: 600px) {
  .decorative-divider {
    margin: 1.2rem 0 1.2rem 0;
    min-height: 36px;
  }
  .divider-line {
    margin: 0 8px;
  }
  .divider-icon svg {
    width: 26px;
    height: 26px;
  }
}
.footer-divider {
  border: none;
  height: 4px;
  width: 60%;
  margin: 1.5rem auto;
  background: linear-gradient(90deg, #ffb347 0%, #ff5e62 100%);
  border-radius: 2px;
  opacity: 0.85;
  display: block;
}
.band-gif-section {
  text-align: center;
  margin: 3rem auto 2rem auto;
  padding: 2rem 0 1.5rem 0;
  background: #232323;
  border-radius: 18px;
  max-width: 900px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.13);
}
.band-gif-section h2 {
  color: #ffb347;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}
.band-gif-img {
  width: 100%;
  max-width: 400px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  display: block;
  margin: 0 auto;
} 
