/* RESET */
* { margin:0; padding:0; box-sizing:border-box; }

/* ===== TOP BAND (GREEN HEADER) ===== */
.top-band {
  background: #0b3f33; /* dark green */
  padding: 32px 16px;
  text-align: center;
}

.top-band-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.title-box {
  display: inline-block;
  background: #0b47b5; /* Wix-like blue */
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  font-weight: bold;
  letter-spacing: 1px;
  padding: 6px 18px;
  margin-bottom: 12px;
}

.subtitle {
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.4;
}


/* GLOBAL */
body {
  font-family: system-ui, sans-serif;
  line-height: 1.6;
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  background: black;
  display: flex;
  justify-content: space-between;
  padding: 14px 18px;
  z-index: 1000;
}

.menu-toggle {
  font-size: 24px;
  background: none;
  border: none;
}

/* MOBILE NAV */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: white;
  display: none;
  flex-direction: column;
  padding: 60px 20px;
  z-index: 999;
}

.mobile-nav a {
  padding: 14px 0;
  font-size: 20px;
  text-decoration: none;
  color: black;
}

/* ===== HERO IMAGE SECTION ===== */
.hero-wrap {
  background: #d04a12; /* orange side bands */
}

.hero-inner {
  max-width: 980px;
  margin: 0 auto;
}

.hero-inner img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== ABOUT SECTION ===== */
.about {
  background: #000000; /* orange side bands */
}

.about-wrap {
  background: #000000; /* orange side bands */
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.about-inner img {
  width: 100%;
  height: auto;
  display: block;
}


.artist-wrap {
  background: #000000; /* orange side bands */
}



/* SECTIONS */
.section {
  padding: 40px 20px;
  text-align: center;
}

/* GRID */
.grid-3 {
  display: grid;
  gap: 20px;
  background-color: #000000;
}

.grid-3 img {
  width: 100%;
}


.grid-2 {
  display: grid;
  gap: 20px;
  background-color: #000000;
}

.grid-2 img {
  width: 100%;
}

.gallery_row {
  gap: 20px;
  background-color: #E7DDFF;
}

/***********************/
/* SLIDESHOW CONTAINER */
/***********************/

* {box-sizing:border-box}

.slideshow-container {
	max-width: 1000px;
	position: relative;
	margin: auto;
	background-color: #000000;
}


/* Hide the images by default */
.mySlides {
	display: none;
}

/* NEXT and PREVIOUS buttons */
.prev, .next {
	cursor: pointer;
	position: absolute;
	top: 50%;
	width: auto;
	margin-top: -22px;
	padding: 16px;
	color: white;
	font-weight: bold;
	font-size: 18px;
	transition: 0.6s ease;
	border-radius: 0 3px 3px 0;
	user-select: none;
}

/* NEXT button goes on the right */
.next {
	right: 0;
	border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little see-through */

.prev:hover, .next:hover {
	background-color: rgba(0,0,0,0.8);
}

/* Caption text */

.text {
	color: #f2f2f2;
	font-size: 15px;
	padding: 8px 12px;
	position: absolute;
	bottom: 8px;
	width: 100%;
	text-align: center;
}


/* Number text (1/3 etc) */

.numbertext {
	color: #f2f2f2;
	font-size: 12px;
	padding: 8px 12px;
	position: absolute;
	top: 0;
}


/* dots/bullets/indicators */

.dot {
	cursor: pointer;
	height: 15px;
	width: 15px;
	margin: 0 2px;
	background-color: #bbb
	border-radius: 50%;
	display: inline-block;
	transition: background-color 0.6s ease;
}

.active, .dot:hover {
	background-color: #717171;
}


/* Fading animation */
.fade {
	animation-name: fade;
	animation-duration: 1.5s;
}

@keyframes fade {
	from {opacity: .4}
	to {opacity: 1}
}


/* GALLERY */
.gallery {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fill, minmax(150px,1fr));
  background-color: #000000;

}

.gallery img {
  width: 100%;
  cursor: pointer;
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.lightbox img {
  max-width: 95%;
  max-height: 90%;
}

/********************/
/** SONG PLAYLIST **/
/********************/
    song_body {
        font-family: Arial, sans-serif;
        background: #f4f4f4;
        text-align: center;
        padding: 20px;
    }
    .player {
        background: url('images_artists/artist_group_3.jpg');
        background-size: cover;
        padding: 20px;
        border-radius: 10px;
        display: inline-block;
        box-shadow: 0 0 10px rgba(0,0,0,0.1);
 max-width: 1200px;
  margin: 0 auto;
color: #98F5F9; /* Default text color */
width: 100%;
height: 100%;
    }

    .controls button {
        margin: 5px;
        padding: 10px 15px;
        font-size: 16px;
        cursor: pointer;
    }
    ul {
        list-style: none;
        padding: 0;
    }
    li {
        padding: 5px;
        cursor: pointer;
    }
    li.active {
        background: #007BFF;
        color: white;
        border-radius: 5px;
    }



/* FOOTER */
.footer {
  padding: 20px;
  background: #E7DDFF;
  text-align: center;
}

/* DESKTOP BREAKPOINT */
@media (min-width: 768px) {
    
  .menu-toggle, .mobile-nav { display: none; }

  .grid-3 {
    grid-template-columns: repeat(3,1fr);
  }

  .section {
    padding: 80px 40px;
  }
}
