/* === BASE RESET === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Oswald', sans-serif;
  background-color: #111;
  color: #fff;
  text-align: center;
}

/* === HEADER / NAVIGATION === */
#tabs-top {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #111;
  padding: 10px 20px;
  z-index: 999;
  box-shadow: 0 0 10px red;
  border-bottom: 2px solid red;
  flex-wrap: wrap;
}

.tabs-logo {
  height: 45px;
  width: auto;
  border-radius: 5px;
  margin-right: 15px;
}

/* Hamburger menu (mobile only) */
.hamburger {
  display: none; /* hidden on desktop */
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 10px;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: white;
  border-radius: 2px;
}

/* Navigation links */
.tab-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.tab-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 14px;
  background-color: #000;
  border: 2px solid red;
  border-radius: 8px;
  box-shadow: 0 0 10px red;
  transition: all 0.3s ease;
}

.tab-links a:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #ff1a1a;
  background-color: #ff1a1a;
  color: #000;
}

/* Social icons */
.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-links a {
  color: white;
  font-size: 22px;
  padding: 6px;
  border: 2px solid red;
  border-radius: 5px;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
  transform: scale(1.1);
  background-color: red;
  color: black;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  /* Show hamburger on mobile */
  .hamburger {
    display: flex;
  }

  /* Hide navigation links by default on mobile ONLY */
  .tab-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #111;
    flex-direction: column;
    align-items: center;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0;
    box-shadow: 0 5px 10px red;
    z-index: 1000;
    transition: all 0.3s ease;
  }

  /* Show nav when active on mobile */
  .tab-links.active {
    max-height: 500px;
    opacity: 1;
    padding: 10px 0;
  }

  /* Make links full width and centered on mobile */
  .tab-links a {
    width: 90%;
    text-align: center;
    padding: 15px;
    margin: 5px 0;
    border: 1px solid #333;
    border-radius: 5px;
    box-shadow: none;
    background-color: #222;
  }

  .tab-links a:hover {
    background-color: red;
    color: black;
    transform: none;
    box-shadow: none;
  }

  /* Header layout on mobile */
  #tabs-top {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Social icons wrap */
  .social-links {
    justify-content: center;
    gap: 10px;
    padding: 10px 0;
    width: 100%;
  }
}

/* Desktop styles - make sure these override mobile when screen is larger */
@media (min-width: 769px) {
  .tab-links {
    display: flex !important;
    position: static !important;
    max-height: none !important;
    opacity: 1 !important;
    flex-direction: row !important;
    background-color: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
  }
  
  .hamburger {
    display: none !important;
  }
}

/* === MAIN CONTENT / PAGE SPECIFIC === */

#main-home {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

#main-home img {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 15px #e50914;
  margin-bottom: 30px;
}

#main-home {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

#main-home img {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 15px #e50914;
  margin-bottom: 30px;
  display: block;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  #main-home {
    padding: 10px;
  }
  
  #main-home img {
    border-radius: 8px;
    box-shadow: 0 0 10px #e50914;
  }
}

/* MUSIC PAGE */
/* === MAIN CONTENT FOR MUSIC PAGE === */
#main-man {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

#main-man h1 {
  margin-bottom: 30px;
  font-size: 2.5rem;
  color: #e50914;
  text-shadow: 0 0 10px #e50914;
}

/* === IMAGE STYLES WITH FADE-IN === */
#main-man img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 15px #e50914;
  margin-bottom: 30px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  animation: fadeIn 1.5s ease-in forwards;
}

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

/* === RESPONSIVE AUDIO PLAYER === */
.custom-audio-player {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 0 20px #e50914;
  margin: 20px auto;
  max-width: 800px;
  border: 2px solid #e50914;
}

.custom-audio-player h2 {
  margin-bottom: 15px;
  font-size: 1.5rem;
  color: #e50914;
  text-shadow: 0 0 5px #e50914;
}

.custom-audio-player p {
  font-size: 1rem;
  margin: 5px 0;
  color: #fff;
}

/* Enhanced audio player styling */
audio {
  width: 100%;
  margin-top: 15px;
  border-radius: 8px;
  outline: none;
}

/* Custom audio controls styling (works in some browsers) */
audio::-webkit-media-controls-panel {
  background-color: #f0e9e9;
  border-radius: 8px;
}

audio::-webkit-media-controls-play-button,
audio::-webkit-media-controls-pause-button {
  background-color: #e50914;
  border-radius: 50%;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
  #main-man {
    padding: 15px;
  }
  
  #main-man h1 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  #main-man img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 0 10px #e50914;
    margin-bottom: 20px;
  }
  
  .custom-audio-player {
    padding: 20px;
    margin: 15px;
    border-radius: 10px;
  }
  
  .custom-audio-player h2 {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }
  
  .custom-audio-player p {
    font-size: 0.9rem;
    line-height: 1.4;
  }
}

@media (max-width: 480px) {
  #main-man {
    padding: 10px;
  }
  
  #main-man h1 {
    font-size: 1.8rem;
  }
  
  .custom-audio-player {
    padding: 15px;
    margin: 10px;
  }
  
  .custom-audio-player h2 {
    font-size: 1.2rem;
  }
  
  .custom-audio-player p {
    font-size: 0.85rem;
  }
}

/* === ADDITIONAL ENHANCEMENTS === */
/* Hover effects for desktop */
@media (min-width: 769px) {
  .custom-audio-player:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px #e50914;
    transition: all 0.3s ease;
  }
  
  #main-man img:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
  }
}

/* Loading state for images */
#main-man img {
  transition: opacity 0.3s ease;
}

#main-man img:not([src]) {
  opacity: 0;
}

/* Multiple audio players container */
.audio-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

@media (min-width: 1024px) {
  .audio-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 25px;
  }
}

/* === GIGS PAGE === */
.gigs-page {
  padding: 20px;
  text-align: center;
  color: white;
}

.gigs-page h1 {
  margin-bottom: 30px;
  font-size: 2.5rem; /* Make it larger like your bio page */
  font-weight: bold;
  text-transform: uppercase; /* This makes it ALL CAPS */
}

.gig-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 20px 0;
}

.gig-gallery img {
  width: 250px;
  height: auto;
  border: 3px solid red;
  border-radius: 10px;
  transition: transform 0.3s ease, opacity 0.5s ease;
  opacity: 0;
  animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.gig-gallery img:hover {
  transform: scale(1.2);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* === BOOKING FORM === */
#booking {
  background-color: #1a1a1a;
  color: #fff;
  padding: 40px 20px;
  font-family: 'Open Sans', sans-serif;
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 0 15px #e50914;
}

.contact-section h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #fff;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
}

#booking p {
  margin-bottom: 20px;
  font-size: 1rem;
  text-align: center;
}

#booking label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
}

#booking input,
#booking select,
#booking textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  background-color: #222;
  color: #fff;
  resize: vertical;
}

#booking button {
  background-color: #e50914;
  color: #fff;
  padding: 14px 24px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  
  /* Centering styles */
  display: block;
  margin: 20px auto;
  width: fit-content;
}

#booking button:hover {
  background-color: #c20710;
  transform: scale(1.02);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #booking button {
    width: 90%;
    max-width: 300px;
    padding: 16px 20px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  #booking button {
    width: 95%;
    padding: 18px 16px;
    font-size: 1rem;
  }
}

/* === BIO SECTION === */
.bio-content {
  max-width: 900px;
  margin: 40px auto;
  padding: 30px 20px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  box-shadow: 0 0 15px #e50914;
  font-family: 'Open Sans', sans-serif;
  color: #fff;
  text-align: left;
}

.bio-content h1 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 30px;
}

.bio-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 0 auto 30px auto;
  border-radius: 12px;
  box-shadow: 0 0 15px red;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInImage 1.5s ease forwards;
}

.bio-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

@keyframes fadeInImage {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === MEDIA QUERIES === */
@media (max-width: 768px) {
  .bio-content {
    padding: 20px 15px;
  }

  .bio-content h1 {
    font-size: 2rem;
  }

  .bio-content p {
    font-size: 1rem;
  }

  #main-man {
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .bio-image {
    max-width: 100%;
  }

  .social-links a {
    font-size: 20px;
  }
}

/* MEDIA PAGE */
.media-page {
  padding: 20px;
  text-align: center;
  color: white;
}

.media-page h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
}

/* === FOOTER POSITIONING === */
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main, 
#main-man,
.gigs-page,
.media-page {
  flex: 1;
}

footer {
  margin-top: auto;
  background-color: #111;
  color: white;
  text-align: center;
  padding: 20px;
  border-top: 2px solid #e50914;
}
/* === BACKGROUND IMAGES === */

/* Home page background */
body.home-page {
  background-image: url('images/background23.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* Contact page background */
body.contact-page {
  background-image: url('images/background23.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* Add dark overlay for better text readability */
body.home-page::before,
body.contact-page::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

/* Mobile optimization */
@media (max-width: 768px) {
  body.home-page,
  body.contact-page {
    background-attachment: scroll;
  }
}

/* === BACKGROUND IMAGES === */

/* Home page background */
body.home-page {
  background-image: url('images/background23.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* Add dark overlay for better text readability */
body.home-page::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

/* Mobile optimization */
@media (max-width: 768px) {
  body.home-page {
    background-attachment: scroll;
  }
}