* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.site-advert {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px auto;
  width: 100%;
  max-height: 120px;
  overflow: hidden;
}

.site-advert img {
  max-width: 100%;
  height: 6em;
  display: block;
}


body {
    font-family: 'Lexend', sans-serif;
    background: url(/assets/images/desktopbg.png) no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    text-align: center;
    margin-top: 35px;
    margin-left: 10em;
    margin-right: 10em;
}

header {
  width: 100%;
  background-color: white;
}

header img {
  width: 100%;
  display: block;
}

nav {
  background-color: #cd793b;
  letter-spacing: 2px;
  position: sticky;
  top: 0;
  z-index: 9999;
  overflow: visible;
}

.nav-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem;
}

.logo {
  font-size: 1.8em;
  font-weight: bold;
  color: white;
  text-decoration: none;
  margin-bottom: 0.5rem;
}

.menu-toggle {
  display: none;
  font-size: 1.8em;
  color: white;
  cursor: pointer;
  position: absolute;
  top: 1rem;
  right: 1rem;
}

ul.nav-menu {
  list-style: none;
  display: flex;
  gap: 1.8rem;
  justify-content: center;
  align-items: center;
  font-family: "Boldonse", system-ui;
}

ul.nav-menu li {
  position: relative;
}

ul.nav-menu a {
  color: white;
  text-decoration: none;
  padding: 8px 14px;
  display: block;
  font-size: 1.1em;
  transition: 0.3s ease;
}

ul.nav-menu a:hover {
  background-color: #ba3722;
  border-radius: 5px;
}

/* Dropdowns */
.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgba(34, 34, 34, 0.95);
  min-width: 180px;
  display: none;
  flex-direction: column;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
  z-index: 99999;
  border-radius: 6px;
}

.dropdown-content a {
  padding: 10px 14px;
  color: white;
  font-size: 1em;
}

.dropdown-content a:hover {
  background-color: #ba3722;
}

.dropdown:hover .dropdown-content {
  display: flex;
}

/* Main Content */
main {
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    width: 100%;
}

/* Main Headline */

.featured-article {
  position: relative;
  width: 100%;
  height: 50vh;
  background-image: url('/assets/images/Covers/mankindmedia.jpg'); /* change this image anytime */
  background-size: cover;
  background-position: center; /* change to 'top', 'bottom', or 'left' etc. */
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  color: white;
  overflow: hidden;
}

/* Optional dark overlay gradient for readability */
.featured-article::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0,0,0,0.1));
  z-index: 0;
}

.featured-overlay {
  position: relative;
  z-index: 1;
  padding: 40px;
  max-width: 700px;
  text-align: left;
}

.featured-title {
  font-family: "Boldonse", system-ui;
  font-size: 2em;
  line-height: 2em;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #ff4444;
}

.featured-desc {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: #f0f0f0;
}

.featured-meta {
  font-size: 0.9em;
  color: #ccc;
  margin-bottom: 20px;
}

.featured-btn {
  background: #ff4444;
  color: white;
  padding: 10px 25px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: 0.3s ease;
}

.featured-btn:hover {
  background: #ff2222;
}

/* headlines slide */

.cardslideshow-container {
      position: relative;
      width: 100%;
      overflow: hidden;
      background-color: black;
    }
    .slides {
      display: flex;
      transition: transform 0.5s ease;
    }

    .card {
      flex: 0 0 calc(100% / 3);
      box-sizing: border-box;
      padding: 10px;
      height: 25em;
    }
    .card-inner {
      position: relative;
      width: 100%;
      height: 100%;
      border-radius: 12px;
      overflow: hidden;
      background: #222;
    }
    .card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .card:hover img { transform: scale(1.05); }
    .card-info {
      position: absolute;
      bottom: 0;
      left: 0;
      height: 14em;
      right: 0;
      background: rgba(0,0,0,0.6);
      padding: 1.6em;
      font-size: 0.85rem;
    }
    .card-info h2 {
    margin: 0 0 5px;
    font-size: 1.3em;
    line-height: 2em;
    color: white;
    font-family: "Boldonse", system-ui;
}

    
    .card-info p {
    font-size: 1.4em;
    line-height: 1.3em;
    color: white;
}

    .prev, .next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0,0,0,0.6);
      border: none;
      color: white;
      font-size: 2rem;
      padding: 10px;
      cursor: pointer;
      border-radius: 50%;
      z-index: 10;
      width: 2em;
    }
    .prev { left: 10px; }
    .next { right: 10px; }
    
    .upcoming-shows {
  text-align: center;
  font-family: "Boldonse", system-ui;
  padding: 20px;
}

.city-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.city-buttons button {
    background-color: #111;
    color: white;
    border: 2px solid #444;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s 
ease;
    font-family: "Boldonse", system-ui;
}

.city-buttons button:hover {
  background-color: #444;
  border-color: #888;
  transform: scale(1.05);
}

/*grid blogs */

.blog-section {
  padding: 20px 20px;
  text-align: center;
  background-image: linear-gradient(to top, #750808, #ff4444);
}

.blog-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: "Boldonse", system-ui;
  text-shadow: 2px 2px black;
  color: white;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.blog-grid article {
  position: relative;
  height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.blog-grid .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: white;
}

.blog-grid .overlay h3 {
  margin-bottom: 8px;
  font-size: 1.5rem;
  font-family: "Boldonse", system-ui;
}

.blog-grid .overlay p {
  font-size: 1rem;
  line-height: 1.4;
}

.blog-grid .article-meta {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #ddd;
}

.siteInfoBox {
    background-color: white;
    border-radius: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    opacity: 0.9;
}
  
.siteInfoBox p {
   font-family: 'Arial', sans-serif;     
   font-size:1em;
   margin:5px;
   opacity:1;
   text-align:center;
   line-height: 1.4em;
  }

.siteInfoBox b {
    font-size: 1em;
    font-family: "Boldonse", system-ui;
}

.siteInfoBox span {
  color:#2b78c3;                    
  font-weight:bold;
  }

.siteInfoBox .icon {
  float:left;
  width:5%;
   }

.siteInfoHeading {
  font-size:1.5em;                    
  color:#2b78c3;
  font-weight:bold;
  margin-bottom:-10px;
  margin-top:20px;
  text-align:left;
  margin-left:15px;
  }
  
  .slideshow-wrapper {
      overflow: hidden;
      width: 100vw;
      overflow: hidden;
    }
    .slideshow-container {
      display: flex;
      animation: scroll 40s linear infinite;
    }
    .slideshow-container img {
      height: 50px;
      margin-right: 10px;
      flex-shrink: 0;
    }
     
    @keyframes scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

#footer {
  border-top: 5px solid #c83e26;
  padding: 30px;
  text-align: center;
  font-weight: bold;
  margin-top: 30px;
  color: white;
  background: black;
}

#footer .socials a {
  color: #c83e26;
  font-size: 1.5em;
  margin: 0 10px;
  text-decoration: none;
}

#footer .socials a:hover {
  color: #2b78c3;
}

/* Venue Styles */
  #search-area {
      text-align: center;
      margin-bottom: 20px;
    }

    #search-box {
      padding: 10px;
      width: 280px;
      font-size: 25px;
      border-radius: 6px;
      border: none;
    }

    button {
      padding: 10px;
      font-size: 25px;
      margin-left: 8px;
      border: none;
      background: #333;
      color: white;
      border-radius: 5px;
      cursor: pointer;
    }
    
#Titles {
     padding: 1em;
    font-size: 2em;
    }

#venue-results {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20em, 1fr));
  gap: 14px;
  justify-content: center; /* 👈 this centers the whole grid */
  padding: 10px;
}

.venue-card {
  display: block;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 8px rgba(0,0,0,0.5);
  text-decoration: none;
  color: inherit;
  height: 100%;
  width: 100%;
  position: relative;
}

.venue-overlay {
  background: rgba(0, 0, 0, 0.4);
  height: 100%;
  width: 100%;
  padding: 10px;
  display: flex;
  flex-direction: row; /* logo left, text right */
  align-items: center; /* vertically center text next to logo */
  justify-content: flex-start; /* keep logo on left */
}

.venue-logo {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  background: white;
  position: relative; 
  top: -5px;
}

.venue-info {
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertically center text */
  margin-left: 10px; /* spacing from logo */
}

.venue-info h2,
.venue-info p {
  margin: 0;
  text-align: left; /* keep text left-aligned */
}

.venue-info h2 {
 font-size: 2.6em;
 line-height: 1em;
 padding-bottom: 0.3em;
}

.venue-info p {
  margin: 0;
  font-size: 0.75em;
  margin-right: 15%;
}

#content {
  background: white;
}

.venue-wrapper {
  margin-bottom: 40px;
}

#band-results {
  display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25em, 1fr));
    gap: 20px;
    margin-top: 30px;
    padding: 15px;
}

.band-card {
  display: block;
  text-decoration: none; /* removes underline */
  color: inherit;         /* ensures it keeps the default text color */
  position: relative;
  height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.band-overlay {
  background: rgba(0, 0, 0, 0.6);
  color: white;
  width: 100%;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.band-logo {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  background: white;
  flex-shrink: 0;
}

.band-info h2 {
  margin: 0 0 6px;
  color: white;
  font-size: 1em;
  text-align: left;
}

.band-info p {
    margin: 2px 0;
    text-align: left;
}

.band-card {
  text-decoration: none !important;
}

#venue-results p {
 font-size: 1em; 
}

#genre-filter-buttons {
  text-align: center;
  margin: 20px 0;
}

#genre-filter-buttons button {
  padding: 8px 16px;
  margin: 4px;
  border: none;
  background: #222;
  color: #fff;
  cursor: pointer;
  font-family: sans-serif;
  border-radius: 6px;
  font-size: 1em;
}

#city-filter-buttons {
  text-align: center;
  margin: 20px 0;
}

#city-filter-buttons button {
  padding: 8px 16px;
  margin: 4px;
  border: none;
  background: #222;
  color: #fff;
  cursor: pointer;
  font-family: sans-serif;
  border-radius: 6px;
  font-size: 1em;
}

#flyer-gallery {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 10px;
  flex-wrap: wrap;
}

.flyer-card {
  display: inline-block;
      margin: 10px;
}

.flyer-card img {
  width: auto;
  height: 22em;
  display: block;
  border-radius: 10px;
}

.hidden {
  display: none;
}

#vendors-results {
  display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25em, 1fr));
    gap: 20px;
    margin-top: 30px;
    padding: 15px;
}

.vendors-card {
  display: block;
  text-decoration: none; /* removes underline */
  color: inherit;         /* ensures it keeps the default text color */
  position: relative;
  height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.vendors-overlay {
  background: rgba(0, 0, 0, 0.6);
  color: white;
  width: 100%;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.vendors-logo {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  background: white;
  flex-shrink: 0;
}

.vendors-info h2 {
  margin: 0 0 6px;
  color: white;
  font-size: 1em;
  text-align: left;
}

.vendors-info p {
    margin: 2px 0;
    text-align: left;
}

.vendors-card {
  text-decoration: none !important;
}

#post-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.post-box {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  width: 25em;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  margin-bottom: auto;
  margin-top: 2em;
}

.post-box img {
  width: 100%;
  height: 20em;
  object-fit: cover;
}

.post-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.post-title {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 8px;
}

.post-author {
  font-size: 1.3em;
  color: #777;
  margin-bottom: 12px;
}

.post-description {
  font-size: 1.7em;
  flex-grow: 1;
  margin-bottom: 16px;
}

.read-more {
  background: #c04037;
  color: white !important;
  padding: 10px 15px;
  text-align: center;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s;
}

.read-more:hover {
  background: #ff8b00;
}

#pagination {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 20px 0;
  }

#pagination button {
    padding: 10px 18px;
    font-size: 1em;
    border: none;
    background: #222;
    color: white;
    border-radius: 6px;
    cursor: pointer;
 }

#pagination button:disabled {
    background: #aaa;
    cursor: default;
      }
      
.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.article-layout {
  font-family: Arial, sans-serif;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
}

.article-category {
  text-transform: uppercase;
  font-weight: bold;
  color: #c04037;
  margin-bottom: 8px;
  font-size: 1em;
  display: flex;
  text-align: left;
  font-family: "Boldonse", system-ui;
}

.article-title {
  font-size: 2em;
  margin-bottom: 10px;
  display: flex;
  text-align: left;
  font-family: "Boldonse", system-ui;
}

.article-subquote {
  font-style: italic;
  color: #555;
  margin: 10px 0 20px 0;
  display: flex;
  text-align: left;
  font-size: 1.3em;
}

.article-date {
  font-size: 1.2em;
  color: #888;
  margin: -15px 0 20px 0;
  display: flex;
  text-align: left;
}

.article-author {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
  text-align: left;
  font-size: 1.3em;
}

.author-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  text-align: left;
}

.author-img {
  width: 50px;
  height: 50px;
  margin-right: 10px;
  display: flex;
  text-align: left;
}

.author-name {
  font-weight: bold;
  display: flex;
  text-align: left;
}

.article-image img {
  width: 50%;
  border-radius: 6px;
  margin-bottom: 5px;
  display: flex;
  text-align: left;
}

.image-source {
  font-size: 0.8em;
  color: #888;
  text-align: right;
  margin-bottom: 20px;
  display: flex;
  text-align: left;
  font-size: 1.3em;
}

.article-body p {
  line-height: 1.2;
  font-size: 1.7em;
  margin-bottom: 15px;
  color: #333;
  display: flex;
  text-align: left;
 padding: 12px 0px;
}

.article-body h1 {
 font-size: 1.5em;
  letter-spacing: 0.3em;
  color: #f03434;
 margin-bottom: 10px; 
 display: flex;
 text-align: left;
 font-family: "Boldonse", system-ui;
} 

.article-body h2 {
 font-size: 1.5em;
 letter-spacing: 0.1em;
 font-family: "Boldonse", system-ui;
 color: #f03434;
 margin-bottom: 10px; 
 display: flex;
 text-align: left;
} 

.article-body i {
 margin-bottom: 10px;
 display: flex;
 font-size: 1.5em;
 text-align: left;
} 

.article-body li {
 font-size: 2em; 
}

.photo-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  padding: 20px;
}

.photo-gallery a {
  text-decoration: none;
  color: inherit;
}

.pic-card {
  color: white;
  width: 24em;
  height: 21em;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease;
  cursor: pointer;
}

.photo-card {
  color: white;
  width: 24em;
  height: 21em;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease;
  cursor: pointer;
}

.photo-card:hover {
  transform: scale(1.03);
}

.photo-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  max-height: 80%;        /* limits height so text doesn’t overflow too far */
  overflow-y: auto;       /* adds vertical scroll if needed */
  padding: 12px;
  background: rgba(0, 0, 0, 0.65);
  color: white;
  font-family: sans-serif;
  box-sizing: border-box; /* ensures padding counted */
}

.photo-info h2, 
.photo-info p {
  color: white;
  margin: 0 0 4px 0;
  word-wrap: break-word;  /* ensure long words wrap */
}

.photo-info h2 {
  font-size: 0.8em;
}

#ShowDesc {
 padding: 1em;
 font-size: 1.5em; 
}

#video-list {
display: inline-flex;
gap: 1em; 
flex-wrap: wrap;
}

#video-list h3 {
font-size: 2em;
}

#galleryDisplay {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 25px;
      padding: 25px;
      justify-items: center;
    }

    .imageBoxUnique {
      background: #101010;
      border-radius: 14px;
      overflow: hidden;
      max-width: 600px;
      width: 100%;
      box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .imageBoxUnique:hover {
      transform: scale(1.03);
      box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
    }

    .imageElementUnique {
      display: block;
      width: 100%;
      height: auto;
    }

  .band-meta {
    text-align: left;
  }
  
  .band-meta h1 {
    font-family: "Boldonse", system-ui; 
  }
  
  .band-meta i {
   font-size: 1.5em; 
  }
  
 .band-slideshow {
  position: relative;
  top: -3em;
  width: 85%;
  max-width: 900px;
  aspect-ratio: 16 / 9; /* keeps responsive shape */
  margin-top: 4em;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  background: #000; /* helps if images don’t fill entire area */
}

.band-slideshow img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: contain; /* keeps full image visible */
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.band-slideshow img.active {
  opacity: 1;
}

.band-socials {
  display: flex;
  gap: 20px;
  position: relative;
  top: -3em;
  margin: 30px;
}

.band-socials a {
  text-decoration: none;
  font-size: 2rem;
  color: #fff;
  background: #111;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.band-socials a:hover {
  transform: scale(1.1);
  color: #ffcc00;
  background: #222;
}

/* Optional: brand-specific hover colors */
.band-socials .fa-instagram:hover { color: #E1306C; }
.band-socials .fa-facebook:hover { color: #1877F2; }
.band-socials .fa-spotify:hover { color: #1DB954; }
.band-socials .fa-youtube:hover { color: #FF0000; }
.band-socials .fa-twitter:hover { color: #1DA1F2; }
.band-socials .fa-twitter:hover { color: #1DA1F2; }
.band-socials .bandcamp-icon:hover { color: #629aa9; }
.band-socials .shopping-cart-icon:hover { color: grey; }

 .bandcard-container {
  display: flex;
  flex-direction: column;  /* make cards vertical */
  align-items: flex-end;   /* align cards to right side */
  gap: 15px;               /* spacing between cards */
  width: 30%;             /* optional, adjust to fit the column */
}

    .bandcard {
      width: 120px;
      height: 120px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    .bandcard img {
      width: 100%;
      height: 100%;
      object-fit: cover; /* Keeps the image proportional without stretching */
    }

    .bandcard-name {
        position: relative;
        bottom: 120px;
        width: 100%;
        text-align: center;
        font-size: 12px;
        font-weight: bold;
        color: white;
        background-color: rgba(0, 0, 0, 0.6);
        padding: 0px 0;
        box-sizing: border-box;
        border-radius: 4px;
        visibility: hidden; /* Hide by default */
        transition: visibility 0.3s ease;
    }

    .bandcard:hover .card-name {
        visibility: visible; /* Show on hover */
    }

    .bandcard a {
      text-decoration: none;
      color: inherit;
    }
    
    .main-container {
  display: flex;
  justify-content: space-between; /* space between left and right */
  align-items: flex-start;
  gap: 20px; /* space between columns */
  padding: 20px;
}

.left-side {
  flex: 1; /* take up remaining space */
  max-width: 70%; /* optional max width */
}

.right-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* align items to the right */
  gap: 20px;
  position: relative;
  width: 300px; /* adjust as needed */
}

.right-side #song-player {
  position: relative;
  bottom: 0;
  right: 0;
}

.band-song-directory {
  width: 100%;
  text-align: center;
  margin-top: 10px;
  position: relative;
}

.band-dropdown-btn {
    width: 23em;
    position: relative;
    bottom: 1em;
}

.band-dropdown-btn:hover {
  background-color: #333;
}

/* hide by default */
.band-dropdown-content {
  display: none;          /* <--- hide until .open is applied */
  width: 27em;
  position: relative;
  bottom: 1.2em;
  left: 1em;
  margin: 0 auto;
  text-align: left;
  background: #111;
  border: 1px solid #333;
  border-top: none;
  list-style: none;
  padding: 0;
  max-height: 200px;
  overflow-y: auto;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
  border-radius: 6px;
}

.band-song-item {
  padding: 10px;
  cursor: pointer;
  border-bottom: 1px solid #222;
  transition: background 0.2s;
  color: #fff;
}

.band-song-item:hover {
  background-color: #333;
}

.band-song-item.active-song-container {
  background-color: #444;
}

/* visible when wrapper has .open */
.band-song-directory.open .band-dropdown-content {
  display: block;
}

/* optional smooth fade */
.band-dropdown-content {
  opacity: 0;
  transform-origin: top;
  transition: opacity 160ms ease, transform 160ms ease;
  transform: translateY(-6px);
}
.band-song-directory.open .band-dropdown-content {
  opacity: 1;
  transform: translateY(0);
}

.band-featured-article {
  width: 190%;
  position: relative;
  bottom: 2em;
  left: 14em;
  background-color: rgba(34, 34, 34, 0.85);
  padding: 10px;
  border-radius: 6px;
  color: white;
  font-family: "Boldonse", system-ui;
  margin-top: 15px;       /* spacing from player or other elements */
}

.band-featured-article h3 {
  font-size: 1.2em;
  margin-bottom: 8px;
}

.band-featured-article-dropdown {
  width: 100%;
  padding: 8px 10px;
  border-radius: 4px;
  border: none;
  font-size: 1em;
  cursor: pointer;
}



/* Mobile (up to 767px) */
@media only screen and (max-width: 767px) {
  body { margin-top: 0;
    margin-left: 0;
    margin-right: 0; }
  #outerWrapper { width: 100%; }
  .site-advert img {
  max-width: 100%;
  height: 2em; }

  .card {
    flex: 1 1 100%;
    margin-bottom: 1em;
    flex: 0 0 calc(100% / 1);
  }

  .card-info h2 { font-size: 1em; }
  .card-info p { font-size: 0.9em; }

  .city-buttons button { font-size: 0.7rem; }

  .menu-toggle {
    display: block;
    top: -5px;
    font-size: 40px;
  }

  .nav-container {
    align-items: flex-start;
    padding: 25px;
  }

  ul.nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #222;
    padding: 1rem 0;
  }

  ul.nav-menu.active { display: flex; }

  ul.nav-menu li { width: 100%; text-align: center; }

  .dropdown-content { position: static; background-color: #333; }
  .dropdown:hover .dropdown-content { display: none; }
  .dropdown.open .dropdown-content { display: flex; }

  .featured-article { height: 60vh; background-position: center top; }
  .featured-overlay { padding: 20px; }
  .featured-title { font-size: 0.9em; }
  .featured-desc { font-size: 0.8em; }
  .featured-meta { font-size: 0.8em; margin-bottom: 1.5em; }
  
  /* Venue Style */
  
  #Titles {
    font-size: 1em;
}

   .venue-overlay {
    flex-direction: column; /* stack logo above text */
    align-items: center;    /* center everything horizontally */
    justify-content: center;
    padding: 10px;
  }

  .venue-logo {
    width: 60px;   /* smaller logo on mobile */
    height: 60px;
    margin-bottom: 10px;
  }

  .venue-info {
    margin-left: 0;       /* remove left margin since stacked */
    text-align: center;   /* center text */
    top: 0;
    left: 0;
  }

  .venue-info h2 {
    font-size: 1.2em;   /* slightly smaller on mobile */
  }

  .venue-info p {
    font-size: 0.8em;   /* slightly smaller on mobile */
    margin-right: 0;
    text-align: center;
  }
  
  #venue-results {
  display: grid;
  grid-template-columns: auto;
  gap: 14px;
}

button {
    padding: 9px;
    margin: 10px;
}

#band-results {
  display: grid;
    grid-template-columns: auto;
    gap: 20px;
    margin-top: 30px;
    padding: 15px;
}

#vendors-results {
 grid-template-columns: repeat(auto-fit, minmax(17em, 1fr));
}

.photo-card {
   width: 14em!important; 
    height: 11em!important; 
  }
  
  #post-wrapper {
    margin-left: 1em;
    margin-right: 1em;
}
  
  .post-box img {
    width: 100%;
    height: 11em;
  }
  
  .post-title {
    font-size: 1.3em
  }
  
  .post-author {
    font-size: 1em;
  }
  
  .post-description {
    font-size: 1em;
  }
  
  .article-image img {
    width: 100%;
  }
  
  .image-source {
    font-size: 0.5em;
}

.article-category {
    font-size: 0.7em;
}

.article-date {
    font-size: 0.7em;
}

.article-subquote {
    font-size: 0.7em;
}

.author-name {
    font-size: 0.7em;
}

.article-title {
    font-size: 1em;
}

.article-body p {
    font-size: 1em;
}

.article-body i {
    font-size: 0.7em;
}

}

/* Tablet (768px to 1439px) */
  body { padding: 0; }
@media only screen and (min-width: 768px) and (max-width: 1439px) {
  #outerWrapper { width: 100%; }
 
  .site-advert img {
  max-width: 100%;
  height: 3em;
  }

  .card {
    flex: 0 0 calc(100% / 3);;
    margin: 0.5em;
  }

  .card-info h2 { font-size: 1.1em; }
  .card-info p { font-size: 1em; }

  .city-buttons button { font-size: 0.8rem; }

  .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1em;
  }

  .menu-toggle {
    display: block;
    top: -5px;
    font-size: 40px;
  }

  .nav-container {
    align-items: flex-start;
    padding: 20px;
  }

  ul.nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #222;
    padding: 1rem 0;
  }

  ul.nav-menu.active { display: flex; }

  ul.nav-menu li { width: 100%; text-align: center; }

  .dropdown-content { position: static; background-color: #333; }
  .dropdown:hover .dropdown-content { display: none; }
  .dropdown.open .dropdown-content { display: flex; }

  .featured-article { height: 65vh; background-position: center top; }
  .featured-overlay { padding: 25px; }
  .featured-title { font-size: 1em; }
  .featured-desc { font-size: 0.9em; }
  .featured-meta { font-size: 0.9em; margin-bottom: 1.5em; }
  
  .post-box {
    width: auto;
  }
  
  .article-image img {
    width: 100%;
  }
}




