/* Reset & Base Styles */
* { margin:0; padding:0; box-sizing:border-box; }
body, html { height:100%; font-family: Arial, sans-serif; color:#f5e1d0; overflow-x:hidden; }
html { scroll-behavior: smooth; }

/* Logo */
.logo img {
  height: 50px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}
.logo img:hover { transform: scale(1.05); }

/* Header */
.site-header {
  background: rgba(0,0,0,0.85);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 10;
}
.nav-container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative; /* needed for absolute menu-toggle */
}
.nav-links { 
  list-style:none; 
  display:flex; 
  gap:20px; 
}
.nav-links a {
  color:#ffed6f;
  text-decoration:none;
  font-weight:500;
  transition:0.3s;
}
.nav-links a:hover { color:#ef5839; }

/* Hamburger Menu */
.menu-toggle {
  display: none;           /* hidden on desktop */
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #ffed6f;
  position: absolute;      /* aligns inside nav-container */
  top: 15px;               /* vertical spacing */
  right: 20px;             /* right corner */
  z-index: 20;
}

/* Show burger on mobile */
@media (max-width: 768px) {
  .menu-toggle { display: block; }

  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    right: 20px;
    background: rgba(0,0,0,0.95);
    flex-direction: column;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .nav-links.show { display: flex; }
  .nav-links li { margin: 10px 0; }
}


/* Overlay */
.overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  transition: opacity 0.3s ease;
  z-index: -1;
  pointer-events: none;
}

/* Mobile Menu */
@media (max-width:768px) {
  .menu-toggle { display:flex; }
  .nav-links {
    display:none;
    position:absolute;
    top:60px;
    right:20px;
    background:rgba(0,0,0,0.95);
    flex-direction: column;
    padding:15px;
    border-radius:8px;
    transition: all 0.3s ease;
  }
  .nav-links.show { display:flex; }
  .nav-links li { margin:10px 0; }
}

/* Overlay */
.overlay {
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background-size:cover;
  background-position:center;
  transition:opacity 0.9s ease;
  z-index:-1;
}

/* Music Section */
.main-section { display:flex; justify-content:center; align-items:flex-start; padding:60px 20px; }
.music-box {
  width:90%;
  max-width:700px;
  padding:40px 30px;
  background: rgba(0,0,0,0.6);
  border-radius:10px;
  text-align:center;
}
.music-box h2 {
  font-size:2rem;
  margin-bottom:25px;
  color:#ef5839;
}
.artist-bio {
  margin-top: 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: #f5e1d0;
  text-align: center;
}

/* Carousel Styles */
.carousel-container {
  position: relative;
  overflow: hidden;
  max-width: 650px;
  margin: 20px auto 40px;
}
.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.carousel-slide {
  min-width: 100%;
  text-align: center;
}
.carousel-slide iframe {
  border-radius: 8px;
  margin-bottom: 10px;
}
.carousel-slide a {
  display: inline-block;
  margin-top: 5px;
  color: #ef5839;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
}
.carousel-slide a:hover { text-decoration: underline; }
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: rgba(0,0,0,0.5);
  color: #ffed6f;
  border: none;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 5px;
  z-index: 10;
  transition: transform 0.2s;
}
.carousel-btn:hover { transform: translateY(-50%) scale(1.1); }
.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }

/* Buttons */
.btn, .btn-accent {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  font-size: 1rem;
  background: #ef5839;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn:hover, .btn-accent:hover { background: #ff8c42; }

/* Shows Section */
.shows-section {
  padding: 60px 20px;
  background: rgba(0,0,0,0.9);
  text-align: center;
}
.shows-section h2 { 
  font-size:2rem; 
  margin-bottom:30px; 
  color:#ef5839; 
}
.shows-grid {
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap:20px;
  justify-items:center;
  perspective: 1200px;
}
.show-card {
  width: 220px;
  height: 280px;
  perspective: 1000px;
}
.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s cubic-bezier(0.4, 0.2, 0.2, 1);
  transform-style: preserve-3d;
  cursor: pointer;
}
.show-card:hover .card-inner,
.show-card:focus .card-inner { transform: rotateY(180deg); }
.card-inner.flipped { transform: rotateY(180deg); }
.card-front, .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px;
  color: #f5e1d0;
  background: rgba(255,255,255,0.1);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  font-weight: bold;
}
.card-front { font-size: 1.1rem; }
.card-back { transform: rotateY(180deg); font-size: 0.95rem; }
.card-back .btn-accent { margin-top: 15px; }
.card-front.show1 { background-image: url('images/flyer1.jpg'); }
.card-front.show2 { background-image: url('images/flyer2.jpg'); }
.card-front.show3 { background-image: url('images/flyer3.jpg'); }

/* Contact Section */
.contact-section {
  padding: 60px 20px;
  background: rgba(0,0,0,0.85);
  text-align: center;
  color: #f5e1d0;
}
.contact-section h2 { font-size:2rem; margin-bottom:20px; color:#ef5839; }
#contact-form {
  display:flex;
  flex-direction:column;
  gap:15px;
  max-width:500px;
  margin:0 auto 20px auto;
}
#contact-form input, #contact-form textarea {
  padding:12px 15px;
  border-radius:8px;
  border:none;
  font-size:1rem;
  background: rgba(255,255,255,0.1);
  color:#f5e1d0;
  resize:none;
}
#contact-form input::placeholder, #contact-form textarea::placeholder { color:#ffed6f; }
#contact-form input:focus, #contact-form textarea:focus {
  outline:2px solid #ef5839;
  background: rgba(239,88,57,0.1);
}
#contact-form button {
  padding:12px 25px;
  border-radius:8px;
  border:none;
  cursor:pointer;
  font-size:1rem;
  background:#ef5839;
  color:#fff;
  transition:0.3s;
}
#contact-form button:hover {
  background:#ff8c42;
  transform: scale(1.05);
}
.form-message {
  margin-top:15px;
  font-size:1rem;
  text-align:center;
  font-weight:bold;
  color:#ffed6f;
}

/* Contact Intro Text */
.contact-intro {
  font-size: 1.1rem;
  color: #ddd;
  text-align: center;
  margin-bottom: 20px;
  max-width: 500px; /* matches form width */
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}


/* Social Media Links */
.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin: 20px 0;
}
.social-links img {
  width: 24px;
  height: 24px;
  filter: invert(44%) sepia(98%) saturate(2096%) hue-rotate(349deg) brightness(95%) contrast(95%);
  transition: transform 0.2s ease;
}
.social-links img:hover { transform: scale(1.1); }

/* Footer */
.site-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px 0;
  background-color: rgba(0,0,0,0.85);
  color: #f5e1d0;
  font-size: 1rem;
}

/* Mobile Menu */
@media (max-width:768px) {
  .menu-toggle { display:block; }
  .nav-links {
    display:none;
    position:absolute;
    top:60px;
    right:20px;
    background:rgba(0,0,0,0.9);
    flex-direction:column;
    padding:15px;
    border-radius:8px;
  }
  .nav-links.show { display:flex; }
  .nav-links li { margin:10px 0; }
  .carousel-slide iframe { height: 300px; }
}
