@font-face {
  font-family: 'VivalaBlack';
  src: url('../fonts/VivalaBlack-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

body {
  color: #2E5E78;
  background-color: #56BBAC;
  line-height: 1.5;
}

h1 {
  font-weight: bold;
  text-transform: uppercase;
}

h2 {
  font-weight: bold;
  text-transform: uppercase;
}

h3 {
  font-weight: bold;
  text-transform: uppercase;
}

/* ---------- HERO SECTION ---------- */
.hero {
  position: relative;
  background: url("../images/header-bg.jpg") center/cover no-repeat;
  height: 45vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
}

.hero .overlay {
  color: #EA6A5D;
  background-color: rgba(0, 0, 0, 0.55);
  width: 100%;
  padding: 2rem 0;
}

.hero .overlay h1 {
  font-family: 'VivalaBlack', "Helvetica Neue", Arial, sans-serif;
  font-size: 3em;
  letter-spacing: 2px;
}

.hero .overlay h2 {
  font-family: 'VivalaBlack', "Helvetica Neue", Arial, sans-serif;
  font-size: 1.5em;
  font-weight: 300;
  margin-top: 0.5rem;
}

/* ---------- NAVIGATION ---------- */
nav {
  background-color: rgba(36, 36, 36, 0.75);
  width: 100%;
  position: relative;
}

.menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0.75rem;
  gap: 1.2rem;
  transition: all 0.3s ease;
}

.menu li a {
  color: #F3F0E7;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.menu li.active a,
.menu li a:hover {
  color: #F3F0E7;
  border-bottom: 2px solid #EA6A5D;
}

/* ---------- HAMBURGER ---------- */
.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: #F3F0E7;
  position: absolute;
  left: 1rem;
  top: 1rem;
  background: rgba(0,0,0,0.4);  /* subtle background for legibility */
  border-radius: 4px;
  padding: 0.3rem 0.6rem;
  z-index: 1000;
  border: none;
  transition: background 0.2s ease;
}

.menu-toggle:hover {
  background: rgba(0,0,0,0.6);
}

.menu-toggle.open {
  color: #EA6A5D;
}

/* ---------- MAIN PHOTO AND CONTENT ---------- */
.main-photo {
  text-align: center;
  background-color: #56BBAC;
  padding: 2rem 0;
}

.main-photo img {
  max-width: 80%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.content {
  padding: 2rem;
  max-width: 800px;
  margin: auto;
  color: #2E5E78;
}

.content a {
  color: #2E5E78;
}

/* ---------- ARTIST LIST INLINE ---------- */
.artist-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;              /* horizontal spacing between items */
  margin-top: 1.5rem;
  padding: 0 1rem;
  text-align: center;
}

.artist-card {
  background: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  transform: none;
  font-weight: bold;
  font-size: 2em;
  text-transform: uppercase;
  cursor: default;
}

/* Alternate colors */
.artist-card:nth-child(odd) {
  color: #2E5E78;
}

.artist-card:nth-child(even) {
  color: #E0C07B;
}

/* Bullet separator between names */
.artist-card::after {
  content: " •";
  color: #EA6A5D;
  margin: 0 0.35rem 0 0;
}

/* Remove bullet after the last name */
.artist-card:last-child::after {
  content: "";
}

/* Remove underline from artist links */
.artist-card,
.artist-card:link,
.artist-card:visited,
.artist-card:active {
  text-decoration: none;
}

/* Add underline on artist links on hover */
.artist-card:hover {
  transform: none;
  text-decoration: underline;
}

/* ---------- FAQ ACCORDION ---------- */
.faq {
  max-width: 800px;
  margin: auto;
  padding: 1rem;
}

.faq-item + .faq-item {
  margin-top: 0.75rem;
}

.faq-question {
  width: 100%;
  text-align: left;
  background-color: rgba(0, 0, 0, 0.55);
  color: #EA6A5D;
  border: none;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: "+";
  font-size: 1.2rem;
}

.faq-question.open::after {
  content: "–";
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.25s ease-out;
  background-color: #56BBAC;
  padding: 0 1rem;
  border-radius: 0 0 4px 4px;
}

.faq-answer p {
  padding: 0.75rem 0 0.75rem 0;
  margin: 0;
  color: #2E5E78;
}

.faq-answer a {
  color: #2E5E78;
}

.disclaimer {
  text-align: center;
  padding: 1rem;
  background-color: #56BBAC;
  color: #2E5E78;
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: #56BBAC;
  font-size: 0.9em;
  color: #E0C07B;
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: #56BBAC;
  font-size: 0.9em;
  color: #E0C07B;
}

/* Instagram / social link styling */
footer .social-link {
  margin-top: 0.25rem;
}

footer .social-link a {
  color: #E0C07B;
  text-decoration: none;
  font-weight: bold;
}

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

footer {
  text-align: center;
  padding: 1rem;
  background-color: #56BBAC;
  font-size: 0.9em;
  color: #E0C07B;
}

footer .social-link {
  margin-top: 0.25rem;
}

footer .instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #E0C07B;
  text-decoration: none;
  font-weight: bold;
}

footer .instagram-link:hover {
  text-decoration: underline;
}

.instagram-icon {
  width: 18px;
  height: 18px;
  fill: #E0C07B;
}

/* ---------- RESPONSIVE LAYOUTS ---------- */
@media (max-width: 700px) {

  h1 {
    font-size: 1.8em;
  }

  h2 {
    font-size: 1em;
  }

  h3 {
    font-size: .8em;
  }

  .hero {
    height: 30vh;
  }

  .hero .overlay {
    padding: 1.5rem 0.5rem;
  }

  .hero .overlay h1 {
    font-size: 1.8em;
  }

  .hero .overlay h2 {
    font-size: 1em;
  }

  .artist-card {
    font-size: 1em;
  }

  /* Hamburger visible over background image */
  .menu-toggle {
    display: block;
  }

  /* Hide menu by default */
  .menu {
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
    background-color: rgba(36, 36, 36, 0.95);
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
  }

  .menu.show {
    display: flex;
  }

  .menu li a {
    display: block;
    padding: 0.5rem 0;
    width: 100%;
    text-align: center;
  }
}
