/* Band Website Custom Styles */

/* Header Section */
.header {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.logo-container {
  margin-bottom: 30px;
}

.band-logo {
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

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

.band-name {
  font-family: 'Orbitron', 'Share Tech Mono', monospace;
  font-size: 3.5em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  background: linear-gradient(45deg, #fff, #ccc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.band-tagline {
  font-family: 'Roboto', sans-serif;
  font-size: 1.4em;
  font-weight: 300;
  color: #ccc;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.header-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.header-buttons .btn {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 25px;
  border-width: 2px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  color: #337ab7;
}

.header-buttons .btn:hover {
  transform: translateY(-2px);
  background-color: #ff6b35;
  border-color: #ff6b35;
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.header-buttons .btn::before {
  display: none;
}

/* About Section */
.about {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
}

.section-title {
  font-family: 'Orbitron', 'Share Tech Mono', monospace;
  font-size: 2.5em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #333;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.section-description {
  font-family: 'Roboto', sans-serif;
  font-size: 1.3em;
  font-weight: 300;
  color: #666;
  max-width: 800px;
  margin: 0 auto 0px;
  line-height: 1.6;
}

.members-title {
  font-family: 'Orbitron', 'Share Tech Mono', monospace;
  font-size: 1.8em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #333;
  margin-bottom: 40px;
  position: relative;
}

.members-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ff6b35, #ff8c42);
  border-radius: 2px;
}

.band-members-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.band-member:nth-child(1) {
  grid-column: 1;
}

.band-member:nth-child(2) {
  grid-column: 2;
}

.band-member:nth-child(3) {
  grid-column: 3;
}

.band-member:nth-child(4) {
  grid-column: 1;
}

.band-member:nth-child(5) {
  grid-column: 2;
}

.band-member {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.band-member::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35, #ff8c42);
}

.band-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.member-photo {
  margin-bottom: 20px;
  position: relative;
}

.member-photo img {
  width: 150px;
  height: 200px;
  border-radius: 10%;
  object-fit: cover;
  border: 4px solid #f8f9fa;
  transition: all 0.3s ease;
  filter: grayscale(20%);
}

.band-member:hover .member-photo img {
  filter: grayscale(0%);
  border-color: #ff6b35;
  transform: scale(1.05);
}

.member-info h4 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.3em;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.member-role {
  font-family: 'Roboto', sans-serif;
  font-size: 1em;
  font-weight: 400;
  color: #666;
  font-style: italic;
  margin: 0;
}

.member-role.quote {
  font-weight: lighter;
  color: #999;
  font-size: 2.5em;
}

.band-story {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}

.band-story::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35, #ff8c42);
}

.story-content h3 {
  font-family: 'Orbitron', 'Share Tech Mono', monospace;
  font-size: 1.8em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #333;
  margin-bottom: 25px;
  text-align: center;
}

.story-content p {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1em;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
  text-align: justify;
}

.story-cta {
  text-align: center;
  margin-top: 30px;
}

.story-cta .btn {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 15px 30px;
  background: linear-gradient(45deg, #ff6b35, #ff8c42);
  border: none;
  color: #fff;
  border-radius: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.story-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  background: linear-gradient(45deg, #ff8c42, #ff6b35);
}

/* Albums Section */
.album-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.album-cover img {
  border-radius: 10px;
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.album-info h3 {
  color: #fff;
  margin-bottom: 5px;
}

.album-year {
  color: #ccc;
  font-size: 1.1em;
  margin-bottom: 10px;
}

.album-description {
  color: #ddd;
  margin-bottom: 20px;
}

.album-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.album-links .btn {
  margin: 5px;
  min-width: 100px;
}

/* Gigs Section */
.gig-tabs {
  border-bottom: 2px solid #ddd;
  margin-bottom: 10px;
  display: inline-block;
}

.gig-tabs>li>a {
  border: none;
  color: #666;
  font-weight: 600;
  padding: 15px 25px;
  margin-right: 5px;
  border-radius: 5px 5px 0 0;
  transition: all 0.3s ease;
}

.gig-tabs>li>a:hover {
  background-color: #f8f9fa;
  color: #333;
  border: none;
}

.gig-tabs>li.active>a,
.gig-tabs>li.active>a:focus,
.gig-tabs>li.active>a:hover {
  background-color: #337ab7;
  color: #fff;
  border: none;
}

.gig-tabs>li>a>i {
  margin-right: 8px;
}

.gigs h2 {
  color: #BBB;
}

.tab-content {
  margin-top: 20px;
}

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

.show-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  align-items: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.show-card:hover {
  transform: translateY(-3px);
}

.show-card.upcoming {
  border-left: 5px solid #28a745;
}

.show-card.past {
  border-left: 5px solid #6c757d;
}

.show-date {
  text-align: center;
  margin-right: 20px;
  min-width: 80px;
}

.show-date .day {
  display: block;
  font-size: 2em;
  font-weight: bold;
  color: #333;
  line-height: 1;
}

.show-date .month {
  display: block;
  font-size: 1.1em;
  color: #666;
  text-transform: uppercase;
}

.show-date .year {
  font-size: 1.2em;
  font-weight: bold;
  color: #666;
}

.show-details h4 {
  color: #333;
  margin-bottom: 5px;
}

.show-location {
  color: #666;
  margin-bottom: 5px;
}

.show-time {
  color: #888;
  font-size: 0.9em;
  margin-bottom: 10px;
}

.past-shows {
  opacity: 0.85;
}

.no-shows {
  text-align: center;
  padding: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  grid-column: 1 / -1;
}

.no-shows p {
  font-size: 1.2em;
  color: #666;
  margin-bottom: 20px;
}

/* Contact Section */
.contact-info,
.social-links,
.booking-info {
  margin-bottom: 40px;
}

.contact-info h3,
.social-links h3,
.booking-info h3 {
  color: #fff;
  margin-bottom: 20px;
}

.contact-info p {
  color: #ddd;
  font-size: 1.1em;
  margin-bottom: 10px;
}

.contact-info a {
  color: #fff;
  text-decoration: underline;
}

.contact-info a:hover {
  color: #ccc;
}

.social-links ul {
  margin-top: 20px;
}

.social-links li {
  margin: 0 15px;
}

.social-links a {
  color: #fff;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #ccc;
}

.booking-info ul {
  margin: 20px 0;
}

.booking-info li {
  color: #ddd;
  margin-bottom: 8px;
  font-size: 1.1em;
}

.booking-info .fa-check {
  color: #28a745;
  margin-right: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header {
    padding: 40px 0;
  }

  .band-logo {
    max-width: 200px;
  }

  .band-name {
    font-size: 2.5em;
    letter-spacing: 2px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }

  .band-tagline {
    font-size: 1.2em;
  }

  .header-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .header-buttons .btn {
    width: 200px;
    padding: 10px 20px;
    font-size: 0.9em;
  }

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

  .band-members-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 100%;
  }

  .band-member:nth-child(1) {
    grid-column: 1;
  }

  .band-member:nth-child(2) {
    grid-column: 2;
  }

  .band-member:nth-child(3) {
    grid-column: 1;
  }

  .band-member:nth-child(4) {
    grid-column: 2;
  }

  .band-member:nth-child(5) {
    grid-column: 1;
  }

  .band-member {
    padding: 15px;
  }

  .member-photo img {
    width: 120px;
    height: 160px;
  }

  .member-info h4 {
    font-size: 1.1em;
  }

  .member-role {
    font-size: 0.9em;
  }

  .band-story {
    padding: 25px 15px;
  }

  .story-content h3 {
    font-size: 1.5em;
  }

  .story-content p {
    font-size: 1em;
  }

  .merch-showcase {
    padding: 25px 15px;
  }

  .merch-info h3 {
    font-size: 1.5em;
  }

  .merch-info p {
    font-size: 1em;
  }

  .merch-features {
    gap: 20px;
  }

  .feature i {
    font-size: 1.5em;
  }

  .feature span {
    font-size: 0.8em;
  }

  .shows-container {
    grid-template-columns: 1fr;
  }

  .show-card {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }

  .show-date {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .show-date .day {
    font-size: 1.5em;
  }

  .show-date .month {
    font-size: 1em;
  }

  .album-links {
    flex-direction: column;
    align-items: center;
  }

  .album-links .btn {
    width: 200px;
  }

  .gig-tabs>li>a {
    padding: 10px 15px;
    font-size: 0.9em;
  }

  .gigs h2 {
    font-size: 1.5em;
  }
}

@media (max-width: 300px) {
  .header {
    padding: 30px 0;
  }

  .band-logo {
    max-width: 150px;
  }

  .band-name {
    font-size: 2em;
    letter-spacing: 1px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }

  .band-tagline {
    font-size: 1em;
  }

  .header-buttons {
    gap: 10px;
  }

  .header-buttons .btn {
    width: 180px;
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .section-title {
    font-size: 1.8em;
  }

  .band-members-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .band-member:nth-child(1),
  .band-member:nth-child(2),
  .band-member:nth-child(3),
  .band-member:nth-child(4),
  .band-member:nth-child(5) {
    grid-column: 1;
  }

  .band-member {
    padding: 20px 15px;
  }

  .member-photo img {
    width: 100px;
    height: 133px;
  }

  .member-info h4 {
    font-size: 1em;
  }

  .member-role {
    font-size: 0.8em;
  }

  .band-story {
    padding: 20px 10px;
  }

  .story-content h3 {
    font-size: 1.3em;
  }

  .story-content p {
    font-size: 0.9em;
  }

  .merch-showcase {
    padding: 20px 10px;
  }

  .merch-info h3 {
    font-size: 1.3em;
  }

  .merch-info p {
    font-size: 0.9em;
  }

  .merch-features {
    gap: 15px;
  }

  .feature i {
    font-size: 1.3em;
  }

  .feature span {
    font-size: 0.7em;
  }

  .gigs h2 {
    font-size: 1.3em;
  }

  .gig-tabs>li>a {
    padding: 8px 12px;
    font-size: 0.8em;
  }

  .show-card {
    padding: 12px;
  }

  .show-date .day {
    font-size: 1.3em;
  }

  .show-date .month {
    font-size: 0.9em;
  }

  .show-details h4 {
    font-size: 1em;
  }

  .show-location,
  .show-time {
    font-size: 0.9em;
  }
}

/* Section Spacing */
section {
  padding: 50px 0;
}

section h2 {
  margin-bottom: 20px;
  color: #333;
}

section.bg-primary h2, .gigs h2, .merch h2 {
  color: #f67b01;
  font-weight: bolder;
  font-family: 'Orbitron', 'Share Tech Mono', monospace;
  font-size: 2.0em;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
  text-align: center;
}

hr.small {
  max-width: 100px;
  margin: 20px auto;
  border-color: #333;
}

section.bg-primary hr.small {
  border-color: #fff;
}

/* Merch Section */
.merch-showcase {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  margin-top: 30px;
  position: relative;
  overflow: hidden;
}

.merch-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35, #ff8c42);
}

.merch-image {
  margin-bottom: 30px;
}

.merch-image img {
  border-radius: 15px;
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease;
  margin: 0 auto;
}

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

.merch-info h3 {
  font-family: 'Orbitron', 'Share Tech Mono', monospace;
  font-size: 1.8em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 20px;
}

.merch-info p {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1em;
  line-height: 1.6;
  color: #ddd;
  margin-bottom: 30px;
}

.merch-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
}

.feature i {
  font-size: 2em;
  margin-bottom: 10px;
  color: #ff6b35;
}

.feature span {
  font-family: 'Roboto', sans-serif;
  font-size: 0.9em;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.merch-info .btn {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 15px 30px;
  background: #fff;
  color: #333;
  border: none;
  border-radius: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.merch-info .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
  background: #f8f9fa;
}

.merch-info .btn i {
  margin-right: 8px;
}