/* ========================================
   Shared Nav & Footer — Minimal white style
   Matches landing page aesthetic.
   Used on shows.html, contact.html, etc.
   ======================================== */

/* Override old header with clean minimal style */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
}

.site-header.scrolled {
  background: #fff;
  box-shadow: none;
  border-bottom: 1px solid var(--color-border);
}

.nav__logo-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.725rem;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.02em;
  color: #1a1a1a;
}

.nav__logo-sub {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
}

.nav__logo:hover {
  color: #1a1a1a;
}

/* Override page title */
.page-title {
  padding: calc(60px + 3rem) var(--container-padding) 1.5rem;
  border-bottom: none;
  background: #fff;
  text-align: center;
}

.page-title__text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-style: italic;
  font-size: 2.75rem;
  color: #1a1a1a;
  border-bottom: none;
  padding-bottom: 0;
  display: block;
}

/* Override section backgrounds */
.section--alt {
  background-color: var(--color-bg-alt);
}

/* Override footer */
.site-footer {
  background: #fff;
  border-top: 1px solid var(--color-border);
  padding: 2rem 0;
}

.footer__name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  color: #1a1a1a;
}

.footer__name-sub {
  color: #999;
}

.footer__bottom {
  color: #999;
  font-size: 0.75rem;
}

.footer__nav a {
  color: #666;
  font-size: 0.875rem;
}

.footer__nav a:hover {
  color: #1a1a1a;
}

.footer__social-link {
  color: #1a1a1a;
}

/* Override buttons for minimal style */
.btn--primary {
  background: #1a1a1a;
  color: #fff;
  border-color: #1a1a1a;
}

.btn--primary:hover {
  background: #333;
  border-color: #333;
  color: #fff;
}

.btn--outline {
  background: transparent;
  color: #1a1a1a;
  border-color: #ccc;
}

.btn--outline:hover {
  background: #1a1a1a;
  color: #fff;
  border-color: #1a1a1a;
}

/* Forms — cleaner styling */
.form-group label {
  color: #1a1a1a;
  font-size: 0.8125rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
  color: #1a1a1a;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #1a1a1a;
  outline: none;
}

/* Shows — cleaner cards */
.show {
  border-color: var(--color-border);
}

.show__title {
  color: #1a1a1a;
}

.shows__month-header {
  color: #444;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0;
  text-transform: none;
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: var(--space-xs);
}

/* Calendar — cleaner */
.calendar__day--has-show,
a.calendar__day--has-show,
a.calendar__day--has-show:visited {
  background: none;
  color: #b8860b;
  font-weight: 700;
  box-shadow: inset 0 0 0 1.5px #b8860b;
}

a.calendar__day,
a.calendar__day:visited,
span.calendar__day {
  color: #1a1a1a;
}

.calendar__day--open:hover {
  background: #f0f0f0;
}

/* Contact sidebar */
.contact__info-item h4 {
  color: #1a1a1a;
  font-size: 0.8125rem;
  font-weight: 600;
}

.contact__sidebar h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  color: #1a1a1a;
}

/* Modal */
.modal__content h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
}

/* Desktop nav — inline links */
@media (min-width: 768px) {
  .nav__menu {
    position: static;
    opacity: 1;
    visibility: visible;
    background: none;
    backdrop-filter: none;
    flex-direction: row;
    gap: 2rem;
  }

  .nav__toggle {
    display: none;
  }

  .nav__link {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.8125rem;
    font-weight: 400;
    color: #1a1a1a;
    padding: 0.25rem 0;
    position: relative;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .nav__link:hover {
    color: #1a1a1a;
  }

  .nav__link::after {
    display: none;
  }

  /* Equalizer bars on hover */
  .nav__link .nav__eq {
    display: flex;
    gap: 2px;
    justify-content: center;
    height: 10px;
    align-items: flex-end;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.2s;
  }

  .nav__link:hover .nav__eq,
  .nav__link[aria-current="page"] .nav__eq {
    opacity: 1;
  }

  .nav__eq-bar {
    width: 2px;
    background: #1a1a1a;
    animation: eqBounce 0.6s ease infinite alternate;
  }

  .nav__eq-bar:nth-child(1) { height: 4px; animation-delay: 0s; }
  .nav__eq-bar:nth-child(2) { height: 8px; animation-delay: 0.15s; }
  .nav__eq-bar:nth-child(3) { height: 3px; animation-delay: 0.3s; }
  .nav__eq-bar:nth-child(4) { height: 6px; animation-delay: 0.1s; }
  .nav__eq-bar:nth-child(5) { height: 9px; animation-delay: 0.25s; }

  @keyframes eqBounce {
    0% { transform: scaleY(0.3); }
    100% { transform: scaleY(1); }
  }

  /* Book link — same as other links, no black bg */
  .nav__link--cta {
    background: none;
    color: #1a1a1a;
    padding: 0.25rem 0;
    border-radius: 0;
    font-size: 0.8125rem;
    font-weight: 400;
  }

  .nav__link--cta:hover {
    background: none;
    color: #1a1a1a;
  }

  .site-header:not(.scrolled) .nav__link {
    color: #1a1a1a;
  }

  .site-header:not(.scrolled) .nav__link:hover {
    color: #1a1a1a;
  }

  .site-header:not(.scrolled) .nav__link--cta {
    color: #1a1a1a;
  }
}
