/* Place these at the very top of your CSS file */
@font-face {
  font-family: 'Capture It';
  src: url('assets/fonts/Capture it.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Junkos Typewriter';
  src: url('assets/fonts/junkos typewriter.ttf') format('truetype');
}

/* Background and body setup */
body {
  min-height: 100vh;
  margin: 0;
  padding: 0;
  background: url('assets/images/webimages/POFTX_web020background.jpg') no-repeat center center fixed;
  background-size: cover;
  padding-top: 80px; /* for header */
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
}

/* Animated background particles */
.bg-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #00ff00;
  border-radius: 50%;
  animation: float 8s infinite linear;
  opacity: 0.3;
}

@keyframes float {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.3; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
}

/* Header styles */
.main-header {
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  transition: all 0.9s ease;
  font-family: 'Junkos Typewriter', monospace;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 32px;
  width: calc(100% - 64px);
}

.header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

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

.header-logo img {
  height: 48px;
  width: auto;
  display: block;
}

.header-logo-text {
  font-size: 20px;
  font-weight: bold;
  color: #00ff00;
  text-shadow: 0 0 3px #ff0000;
  letter-spacing: 1px;
  margin-left: 15px;
  font-family: 'Capture It', Arial, sans-serif;
}

.header-nav {
  display: flex;
  gap: 24px;
}

.header-nav a, .header-nav span {
  color: #fff !important;
  font-family: 'Capture It', Arial, sans-serif!important;
  text-decoration: none;
  font-size: 1.1em;
  letter-spacing: 1px;
  transition: color 0.2s;
}

.header-nav a:hover {
  color: #00ff00;
}

.main-header.sticky {
  background: rgba(0,0,0,0.85);
  border-bottom: 2px solid #000;
}

/* Hero section styles */
.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  width: 100%;
  z-index: 2;
  position: relative;
}

.logo {
  max-width: 450px;
  width: 100%;
  margin-bottom: 20px;
  display: block;
  animation: pulse 3s infinite;
}

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

.tagline-image {
  max-width: 450px;
  width: 100%;
  display: block;
  margin-bottom: 20px;
}

.header-junkos {
  font-family: 'Junkos Typewriter', monospace;
  color: #00ff00;
  font-size: 2.1em;
  text-align: center;
  margin: 10px 0 8px 0;
  letter-spacing: 1px;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from { text-shadow: 0 0 50px #00ff00; }
  to { text-shadow: 0 0 20px #00ff00, 0 0 30px #00ff00; }
}

.subheader-captureit {
  font-family: 'Capture It', Arial, sans-serif;
  color: #00ff00;
  font-size: 1.4em;
  font-weight: bold;
  text-align: center;
  margin: 0 0 12px 0;
}

.body-captureit {
  font-family: 'Capture It', Arial, sans-serif;
  color: #00ff00;
  font-size: 1.1em;
  text-align: center;
  margin: 0 0 24px 0;
  max-width: 800px;
  line-height: 1.4;
}

.platform-icons {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
  z-index: 2;
  position: relative;
}

.icon-row {
  display: flex;
  flex-direction: row;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.icon-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.icon-link:hover {
  transform: translateY(-10px);
}

.icon-link img {
  width: 100px;
  height: 100px;
  margin-bottom: 10px;
  border-radius: 8px;
}

.icon-link span, .icon-link a {
  font-family: 'Capture It', Arial, sans-serif !important;
  color: #fff;
  text-decoration: none;
  font-size: 1.1em;
  margin-top: 2px;
}

.icon-link a:hover span {
  text-decoration: underline;
  color: #00ff00;
}

.featured-video {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
  width: 100%;
  z-index: 2;
  position: relative;
}

.featured-video h2 {
  color: #fff;
  margin-bottom: 20px;
  font-family: 'Capture It', Arial, sans-serif;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16 / 9;
  margin: 0 auto 40px auto;
  background: transparent;
  border: 2px solid #00ff00;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.video-wrapper:hover {
  transform: scale(1.02);
  box-shadow: 0 0 40px rgba(0, 255, 0, 0.5);
}

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

/* EP Release section */
.ep-release {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
  width: 100%;
  z-index: 2;
  position: relative;
}

.ep-cover {
  max-width: 300px;
  width: 100%;
  margin: 20px 0;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.ep-cover:hover {
  transform: scale(1.05);
}

/* Upcoming shows */
.upcoming-shows {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
  width: 100%;
}

.show-card {
  background: rgba(0, 0, 0, 0.8);
  border: 2px solid #00ff00;
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
  text-align: center;
  font-family: 'Capture It', Arial, sans-serif;
  color: #00ff00;
  transition: all 0.3s ease;
  max-width: 500px;
  width: 100%;
}

.show-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(0, 255, 0, 0.4);
}

.cta-button {
  background: transparent;
  border: 2px solid #00ff00;
  color: #00ff00;
  padding: 12px 24px;
  font-family: 'Capture It', Arial, sans-serif;
  font-size: 1.1em;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  margin-top: 20px;
  display: inline-block;
}

.cta-button:hover {
  background: #00ff00;
  color: #000000;
  box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
  transform: translateY(-2px);
}

/* Promo image */
.promo-image {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  z-index: 2;
  position: relative;
}

.promo-image img {
  max-width: 600px;
  width: 100%;
  border-radius: 8px;
}

/* EPK specific styles */
.epk-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  z-index: 2;
  position: relative;
}

.epk-bio {
  display: flex;
  text-align: center;
  margin-bottom: 40px;
}

.band-info-section {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.promo-image-section {
  flex: 1;
  min-width: 300px;
}

.promo-image-section img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid #00ff00;
}

.lineup-section {
  flex: 1;
  min-width: 250px;
}

.lineup-section h2 {
  color: #00ff00;
  font-family: 'Junkos Typewriter', monospace;
  margin-bottom: 20px;
}

.lineup-member {
  margin-bottom: 15px;
  padding-left: 10px;
  border-left: 2px solid #00ff00;
}

.lineup-member strong {
  color: #00ff00;
  text-shadow: 0 0 1px #0a0f00;
}

.lineup-member p {
  color: #00ff00;
  font-family: 'Capture It', Arial, sans-serif;
  margin: 0;
}

.streaming-section {
  text-align: center;
  margin-bottom: 40px;
}

.streaming-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.streaming-links a {
  padding: 15px 30px;
  background: rgba(26, 26, 26, 0.9);
  color: #00ff00;
  border: 2px solid #00ff00;
  text-decoration: none;
  font-family: 'Junkos Typewriter', monospace;
  text-transform: uppercase;
  font-size: 14px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.streaming-links a:hover {
  background: #00ff00;
  color: #000000;
  box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
  transform: translateY(-2px);
}

.performance-section {
  text-align: center;
  margin-bottom: 40px;
}

.performance-section h2 {
  color: #00ff00;
  font-family: 'Capture It', Arial, sans-serif;
  font-size: 1.4em;
  margin-bottom: 20px;
}

.performance-section h3 {
  color: #00ff00;
  font-family: 'Junkos Typewriter', monospace;
  font-size: 20px;
  margin-bottom: 15px;
}

.tech-section {
  margin-bottom: 40px;
}

.stage-plot {
  text-align: center;
  margin-bottom: 20px;
}

.stage-plot img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  border: 2px solid #00ff00;
}

.downloads-section {
  text-align: center;
  margin-bottom: 40px;
}

.downloads-section a {
  color: #00ff00;
  text-decoration: underline;
  font-size: 18px;
  margin: 0 20px;
  transition: all 0.3s ease;
  font-family: 'Capture It', Arial, sans-serif;
}

.downloads-section a:hover {
  text-shadow: 0 0 10px #00ff00;
}

.contact-section {
  text-align: center;
  margin-bottom: 40px;
}

.contact-section a {
  color: #00ff00;
  text-decoration: underline;
  font-size: 20px;
  font-weight: bold;
  text-shadow: 0 0 2px #00ff00;
  font-family: 'Capture It', Arial, sans-serif;
}

/* Footer */
footer {
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  width: 100%;
  margin-top: 40px;
  font-family: 'Capture It', Arial, sans-serif;
  z-index: 2;
  position: relative;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.social-icons a {
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
}

.social-icons img {
  width: 40px;
  height: 40px;
}

.footer-nav {
  margin-bottom: 20px;
}

.footer-nav a {
  color: #00ff00;
  text-decoration: none;
  margin: 0 5px;
}

.footer-nav a:hover {
  text-decoration: underline;
}

/* Responsive design */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 10px;
  }

  .header-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .icon-row {
    flex-direction: column;
    gap: 20px;
  }

  .header-junkos {
    font-size: 1.8em;
  }

  .body-captureit {
    padding: 0 20px;
  }

  .show-card {
    margin: 20px 20px;
  }

  .band-info-section {
    flex-direction: column;
  }
  
  .streaming-links {
    flex-direction: column;
    align-items: center;
  }

  .streaming-links a {
    width: 200px;
    text-align: center;
  }
}

/* Contact Page Styles - Add these to your styles.css file */

/* Contact Container */
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Contact Form Section */
.contact-form-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  border: 2px solid #00ff00;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 255, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.contact-form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.1), transparent);
  transition: left 0.8s ease;
}

.contact-form-section:hover::before {
  left: 100%;
}

.contact-form {
  position: relative;
  z-index: 1;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  color: #00ff00;
  font-size: 1.1em;
  margin-bottom: 8px;
  font-weight: bold;
  text-shadow: 0 0 5px rgba(0, 255, 0, 0.3);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  border: 2px solid #333;
  border-radius: 8px;
  color: #ffffff;
  font-family: 'Capture It', Arial, sans-serif;
  font-size: 1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #00ff00;
  box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

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

.submit-button {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  border: 2px solid #00ff00;
  border-radius: 8px;
  color: #00ff00;
  font-family: 'Capture It', Arial, sans-serif;
  font-size: 1.2em;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.submit-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.2), transparent);
  transition: left 0.6s ease;
}

.submit-button:hover::before {
  left: 100%;
}

.submit-button:hover {
  background: linear-gradient(135deg, #00ff00 0%, #00cc00 100%);
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 255, 0, 0.4);
}

.submit-button:active {
  transform: translateY(0);
}

/* Contact Info Section */
.contact-info-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  border: 2px solid #333;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.contact-info {
  position: relative;
  z-index: 1;
}

.contact-email {
  margin-bottom: 40px;
  padding: 20px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  border: 1px solid #00ff00;
  border-radius: 8px;
  text-align: center;
}

.contact-email strong {
  color: #00ff00;
  font-size: 1.2em;
  display: block;
  margin-bottom: 10px;
}

.contact-email a {
  color: #00ff00;
  text-decoration: none;
  font-size: 1.1em;
  transition: all 0.3s ease;
}

.contact-email a:hover {
  text-shadow: 0 0 10px rgba(0, 255, 0, 0.8);
  color: #ffffff;
}

.contact-social h3 {
  color: #00ff00;
  font-size: 1.4em;
  margin-bottom: 20px;
  text-align: center;
  text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  border: 1px solid #333;
  border-radius: 8px;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-links a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.1), transparent);
  transition: left 0.6s ease;
}

.social-links a:hover::before {
  left: 100%;
}

.social-links a:hover {
  border-color: #00ff00;
  color: #00ff00;
  transform: translateX(5px);
}

.social-links a img {
  width: 24px;
  height: 24px;
  filter: brightness(0.8);
  transition: all 0.3s ease;
}

.social-links a:hover img {
  filter: brightness(1) drop-shadow(0 0 8px rgba(0, 255, 0, 0.5));
}

/* Contact Images */
.contact-images {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.image-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.contact-logo {
  width: 100%;
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(0, 255, 0, 0.3));
  transition: all 0.3s ease;
  justify-self: center;
}

.contact-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 30px rgba(0, 255, 0, 0.5));
}

.contact-promo {
  width: 50%;
  height: auto;
  border-radius: 12px;
  border: 2px solid #00ff00;
  box-shadow: 0 8px 32px rgba(0, 255, 0, 0.2);
  transition: all 0.3s ease;
}

.contact-promo:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 255, 0, 0.3);
}

/* Hidden field for form */
.hidden {
  display: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 20px;
  }

  .contact-form-section,
  .contact-info-section {
    padding: 25px;
  }

  .image-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-logo {
    max-width: 250px;
  }

  .form-group input,
  .form-group textarea {
    padding: 12px;
  }

  .submit-button {
    padding: 15px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .contact-container {
    padding: 15px;
  }

  .contact-form-section,
  .contact-info-section {
    padding: 20px;
  }

  .form-group label {
    font-size: 1em;
  }

  .submit-button {
    padding: 12px;
    font-size: 1em;
  }

  .contact-logo {
    max-width: 200px;
  }
}
/* Enhanced Contact Form Styles - Add to styles.css */

/* Contact Container */
.contact-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Contact Form Section */
.contact-form-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  border: 2px solid #00ff00;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 
    0 0 30px rgba(0, 255, 0, 0.1),
    inset 0 0 30px rgba(0, 255, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.contact-form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.1), transparent);
  transition: left 1s ease;
}

.contact-form-section:hover::before {
  left: 100%;
}

.contact-form {
  position: relative;
  z-index: 1;
}

/* Form Rows */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 25px;
}

.form-group {
  position: relative;
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  color: #00ff00;
  font-size: 1.1em;
  margin-bottom: 8px;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
  transition: all 0.3s ease;
}

.form-group.focused label {
  color: #00ff44;
  text-shadow: 0 0 15px rgba(0, 255, 0, 0.6);
}

.required {
  color: #ff0000;
  font-size: 1.2em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  border: 2px solid #333;
  border-radius: 8px;
  color: #ffffff;
  font-family: 'Capture It', Arial, sans-serif;
  font-size: 1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  position: relative;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #00ff00;
  box-shadow: 
    0 0 20px rgba(0, 255, 0, 0.3),
    inset 0 0 20px rgba(0, 255, 0, 0.1);
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path fill="%2300ff00" d="M6 8L2 4h8z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 12px;
}

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

.input-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00ff00, #00ff44);
  transition: width 0.3s ease;
}

.form-group.focused .input-border {
  width: 100%;
}

.char-count {
  text-align: right;
  margin-top: 5px;
  font-size: 0.9em;
  color: #00ff00;
  transition: color 0.3s ease;
}

/* Submit Button */
.form-actions {
  text-align: center;
  margin-top: 30px;
}

.submit-button {
  position: relative;
  width: 100%;
  padding: 20px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
  border: 2px solid #00ff00;
  border-radius: 10px;
  color: #00ff00;
  font-family: 'Capture It', Arial, sans-serif;
  font-size: 1.3em;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.submit-button:hover {
  background: linear-gradient(135deg, #00ff00 0%, #00cc00 50%, #00ff00 100%);
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 
    0 8px 25px rgba(0, 255, 0, 0.4),
    0 0 50px rgba(0, 255, 0, 0.2);
}

.submit-button:active {
  transform: translateY(-1px);
}

.submit-button.loading {
  pointer-events: none;
  opacity: 0.8;
}

.submit-button.loading .btn-text {
  opacity: 0.5;
}

.submit-button.loading .btn-icon {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.btn-ripple {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.submit-button:hover .btn-ripple {
  left: 100%;
}

/* Form Status */
.form-status {
  margin-top: 20px;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  font-weight: bold;
  display: none;
}

.form-status.success {
  background: linear-gradient(135deg, #0a4a0a 0%, #1a7a1a 100%);
  border: 2px solid #00ff00;
  color: #00ff00;
}

.form-status.error {
  background: linear-gradient(135deg, #4a0a0a 0%, #7a1a1a 100%);
  border: 2px solid #ff0000;
  color: #ff0000;
}

/* Contact Info Section */
.contact-info-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  border: 2px solid #333;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  border: 2px solid #333;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.1), transparent);
  transition: left 0.8s ease;
}

.contact-card:hover::before {
  left: 100%;
}

.contact-card:hover {
  border-color: #00ff00;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 255, 0, 0.2);
}

.card-icon {
  font-size: 2.5em;
  margin-bottom: 15px;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.contact-card:hover .card-icon {
  filter: grayscale(0%) drop-shadow(0 0 10px #00ff00);
}

.contact-card h3 {
  color: #00ff00;
  font-size: 1.3em;
  margin-bottom: 10px;
  text-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

.contact-card p {
  color: #cccccc;
  margin-bottom: 15px;
  font-size: 0.9em;
}

.contact-link {
  color: #00ff00;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.contact-link:hover {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(0, 255, 0, 0.8);
}

/* Social Section */
.social-section {
  text-align: center;
}

.social-section h3 {
  color: #00ff00;
  font-size: 1.5em;
  margin-bottom: 25px;
  text-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
}

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

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 10px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  border: 2px solid #333;
  border-radius: 10px;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.1), transparent);
  transition: left 0.6s ease;
}

.social-card:hover::before {
  left: 100%;
}

.social-card:hover {
  border-color: #00ff00;
  color: #00ff00;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 255, 0, 0.2);
}

.social-card img {
  width: 24px;
  height: 24px;
  filter: brightness(0.8);
  transition: all 0.3s ease;
}

.social-card:hover img {
  filter: brightness(1) drop-shadow(0 0 10px rgba(0, 255, 0, 0.5));
}

.social-card span {
  font-size: 0.9em;
  font-weight: bold;
  position: relative;
  z-index: 1;
}

.social-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(0, 255, 0, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.social-card:hover .social-pulse {
  width: 100%;
  height: 100%;
  opacity: 0;
}

/* Enhanced Image Section */
.contact-images {
  max-width: 1400px;
  margin: 80px auto;
  padding: 0 20px;
}

.image-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.image-container {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.contact-logo {
  width: 100%;
  max-width: 350px;
  height: auto;
  transition: all 0.3s ease;
  justify-self: center;
  position: relative;
  z-index: 1;
}

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

.image-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0, 255, 0, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-container:hover .image-glow {
  opacity: 1;
}

.contact-promo {
  width: 100%;
  height: auto;
  border-radius: 15px;
  border: 2px solid #00ff00;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.contact-promo:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 255, 0, 0.3);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.8), transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 15px;
}

.image-container:hover .image-overlay {
  opacity: 1;
}

.overlay-text {
  color: #00ff00;
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
  padding: 20px;
  text-shadow: 0 0 20px rgba(0, 255, 0, 0.8);
}

/* Hidden field for form */
.hidden {
  display: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form-section,
  .contact-info-section {
    padding: 25px;
  }

  .image-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-logo {
    max-width: 280px;
  }

  .social-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .contact-container {
    padding: 15px;
  }

  .contact-form-section,
  .contact-info-section {
    padding: 20px;
  }

  .submit-button {
    padding: 15px;
    font-size: 1.1em;
  }

  .contact-logo {
    max-width: 220px;
  }

  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Hamburger Menu Styles */
.hamburger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  position: relative;
}

.hamburger-menu span {
  width: 25px;
  height: 3px;
  background-color: #00ff00;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
  box-shadow: 0 0 5px rgba(0, 255, 0, 0.3);
}

/* Hamburger animation when active */
.hamburger-menu.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

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

/* Mobile navigation styles */
.header-nav {
  transition: all 0.3s ease;
}

.header-nav.mobile-active {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  gap: 30px;
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Mobile navigation links */
.header-nav.mobile-active a {
  font-size: 24px;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  padding: 15px 30px;
  border: 2px solid transparent;
  border-radius: 5px;
  transition: all 0.3s ease;
  min-width: 200px;
}

.header-nav.mobile-active a:hover,
.header-nav.mobile-active a.active {
  color: #00ff00;
  border-color: #00ff00;
  box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
  text-shadow: 0 0 10px #00ff00;
}

.header-nav.mobile-active .merch-link {
  font-size: 24px;
  color: #666666;
  text-align: center;
  padding: 15px 30px;
  border: 2px solid #333333;
  border-radius: 5px;
  min-width: 200px;
  opacity: 0.5;
  cursor: not-allowed;
}

.footer-form {
align-items: center;
padding: 20px;
}
/* Close button for mobile menu */
.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #00ff00;
  font-size: 30px;
  cursor: pointer;
  z-index: 1002;
  padding: 10px;
  border: 2px solid #00ff00;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.8);
  transition: all 0.3s ease;
}

.mobile-close:hover {
  background: #00ff00;
  color: #000000;
  box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

/* Responsive breakpoints */
@media (max-width: 768px) {
  .hamburger-menu {
    display: flex;
  }
  
  .header-nav {
    display: none;
  }
  
  .header-content {
    justify-content: space-between;
  }
  
  .header-logo-text {
    font-size: 18px;
  }
  
  /* Prevent body scroll when menu is open */
  body.menu-open {
    overflow: hidden;
  }
}

@media (max-width: 480px) {
  .header-logo-text {
    font-size: 16px;
  }
  
  .header-nav.mobile-active a {
    font-size: 20px;
    min-width: 180px;
  }
}

/* Header spacing fix for mobile responsiveness */

/* Ensure header doesn't overlap content */
.main-header {
  position: relative;
  z-index: 100;
  min-height: 60px; /* Minimum header height */
}

/* Add consistent top margin to prevent header overlap */
.hero-section {
  margin-top: 20px;
  padding-top: 20px;
}

.featured-video {
  margin-top: 20px;
}

.platform-icons {
  margin-top: 20px;
}

.ep-release {
  margin-top: 20px;
}

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

/* General content spacing */
body {
  margin: 0;
  padding: 0;
}

main, section, .content-section {
  margin-top: 20px;
}

/* Mobile specific adjustments */
@media (max-width: 768px) {
  .main-header {
    min-height: 70px; /* Slightly taller on mobile */
  }
  
  .hero-section {
    margin-top: 30px;
    padding-top: 15px;
  }
  
  .featured-video {
    margin-top: 25px;
  }
  
  .platform-icons {
    margin-top: 25px;
  }
  
  .ep-release {
    margin-top: 25px;
  }
  
  .about-content {
    margin-top: 25px;
    padding: 15px;
  }
  
  /* Prevent horizontal overflow */
  body, html {
    overflow-x: hidden;
  }
  
  /* Ensure all content stays within viewport */
  * {
    max-width: 100%;
    box-sizing: border-box;
  }
  
  /* Fix any image overflow issues */
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Ensure video containers don't overflow */
  .video-wrapper {
    max-width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .hero-section {
    margin-top: 35px;
    padding-top: 10px;
  }
  
  .about-content {
    padding: 10px;
  }
  
  /* Tighter spacing on very small screens */
  .featured-video,
  .platform-icons,
  .ep-release {
    margin-top: 20px;
  }
}

/* Mobile padding fixes for index.html and epk.html pages */

/* General mobile container padding */
@media (max-width: 768px) {
  
  /* Fix for index.html specific elements */
  .hero-section {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .featured-video {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .platform-icons {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .ep-release {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .about-content {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* Fix for promo images */
  .promo-image {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: 0;
    margin-right: 0;
  }
  
  .promo-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  
  /* Fix for EP cover and other large images */
  .ep-cover {
    max-width: calc(100% - 30px);
    margin-left: 15px;
    margin-right: 15px;
  }
  
  /* Fix for logo and tagline images */
  .logo {
    max-width: calc(100% - 30px);
    margin-left: 15px;
    margin-right: 15px;
  }
  
  .tagline-image {
    max-width: calc(100% - 30px);
    margin-left: 15px;
    margin-right: 15px;
  }
  
  /* Fix for member photos */
  .member-photos {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .member-photo {
    width: calc(100% - 30px);
    margin-left: 15px;
    margin-right: 15px;
  }
  
  /* Fix for show cards */
  .show-card {
    margin-left: 15px;
    margin-right: 15px;
  }
  
  .upcoming-shows {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* EPK specific fixes */
  .epk-content,
  .epk-section {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* Fix for any press photos or EPK images */
  .press-photo,
  .epk-image,
  .band-photo {
    max-width: calc(100% - 30px);
    margin-left: 15px;
    margin-right: 15px;
  }
  
  /* General image container fix */
  .image-container,
  .photo-container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* Fix for video wrappers */
  .video-wrapper {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: 0;
    margin-right: 0;
  }
  
  .video-wrapper iframe {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  /* Tighter padding on very small screens */
  .hero-section,
  .featured-video,
  .platform-icons,
  .ep-release,
  .about-content,
  .promo-image,
  .epk-content,
  .epk-section,
  .upcoming-shows,
  .video-wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }
  
  .ep-cover,
  .logo,
  .tagline-image,
  .member-photo,
  .press-photo,
  .epk-image,
  .band-photo {
    max-width: calc(100% - 20px);
    margin-left: 10px;
    margin-right: 10px;
  }
  
  .show-card {
    margin-left: 10px;
    margin-right: 10px;
  }
}

/* Ensure no horizontal scrolling */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
  
  /* Fix any remaining overflow issues */
  .main-header,
  .hero-section,
  .featured-video,
  .platform-icons,
  .ep-release,
  .about-content,
  .promo-image,
  footer {
    max-width: 100vw;
    box-sizing: border-box;
  }
}

/* Fix for videos.html page - Force proper mobile navigation behavior */

/* Ensure desktop nav is hidden on mobile across ALL pages */
@media (max-width: 768px) {
  
  /* Hide desktop navigation on mobile - use high specificity instead of !important */
  .main-header .header-content .header-nav {
    display: none;
  }
  
  /* Ensure hamburger menu shows on mobile */
  .main-header .header-content .hamburger-menu {
    display: flex;
  }
  
  /* When mobile menu is active, show it properly */
  .main-header .header-content .header-nav.mobile-active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    gap: 30px;
    animation: slideIn 0.3s ease-out;
  }
  
  /* Ensure header content layout is correct on mobile */
  .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  
  /* Additional specificity for stubborn pages */
  body .main-header .header-nav {
    display: none;
  }
  
  body .main-header .hamburger-menu {
    display: flex;
  }
  
  /* Show mobile menu when active */
  body .main-header .header-nav.mobile-active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    gap: 30px;
    animation: slideIn 0.3s ease-out;
  }
}

/* Double-check for smaller screens */
@media (max-width: 480px) {
  .main-header .header-content .header-nav {
    display: none;
  }
  
  .main-header .header-content .hamburger-menu {
    display: flex;
  }
  
  /* Force proper mobile menu behavior when active */
  .main-header .header-content .header-nav.mobile-active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    gap: 30px;
    animation: slideIn 0.3s ease-out;
  }
}

/* Ensure desktop behavior is preserved */
@media (min-width: 769px) {
  .main-header .header-content .header-nav {
    display: flex;
  }
  
  .main-header .header-content .hamburger-menu {
    display: none;
  }
}

/* contact Container Stack Images*/
.contact-subscription-container {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.contact-images {
  flex: 1;
}

.image-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.subscription-form-container {
  flex: 1;
}

/* Responsive design */
@media (max-width: 768px) {
  .contact-subscription-container {
    flex-direction: column;
  }
}

.form-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  background-color: #111; /* optional background */
}

.ep-promo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: rgba(0, 0, 0, 0.8);
  padding: 30px 20px;
  border: 2px solid #00ff00;
  margin: 40px auto;
  max-width: 900px;
  border-radius: 10px;
}

.ep-cover-art {
  max-width: 300px;
  width: 100%;
  border: 3px solid #00ff00;
  border-radius: 5px;
}

.ep-promo-text {
  max-width: 500px;
  color: #fff;
  font-family: 'Capture It', Arial, sans-serif;
  text-align: left;
}

.ep-promo-text h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #00ff00;
}

.ep-promo-text p {
  font-size: 1.1rem;
  line-height: 1.4;
}

.ep-cover-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.ep-cover {
  width: 320px;
  max-width: 90%;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: grayscale(60%) brightness(0.8) contrast(1.1);
  border: 3px solid #00ff00;
  box-shadow: 0 0 20px rgba(0,255,0,0.4);
}

.ep-cover:hover {
  transform: scale(1.05) rotate(-1deg);
  filter: none;
  animation: glitchPulse 5s infinite;
}
@keyframes glitchPulse {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 4px #aa0000);
  }
  50% {
    transform: scale(1.02);
    filter: drop-shadow(0 0 12px #ff0000);
  }
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 4px #aa0000);
  }
  
}

/* Get-In-Touch-Section*/
.get-in-touch-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 768px) {
  .get-in-touch-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 20px;
  }
}
  @media (max-width: 768px) {
  .get-in-touch-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 20px;
  }
}