
/* =====================================================
RESPONSIVE ENTRY PAGE STYLESHEET
===================================================== */

/* ==================== RESET & BASE ==================== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
}

p {
  color: black;
  font-size: 14px;
  font-family: Arial, Helvetica, Geneva, Swiss, SunSans-Regular;
  line-height: 1.6;
}

a {
  color: black;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==================== TYPOGRAPHY & UTILITIES ==================== */
.albumliner {
  font-size: 10px;
  line-height: 1.5;
}

.caption {
  color: grey;
  font-size: 11px;
  line-height: 1.4;
}

.section-title {
  font-size: 20px !important;
  font-weight: bold;
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: 15px;
  text-align: center;
}

.framed {
  background-color: white;
}

.responsive-img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* ==================== LAYOUT STRUCTURE ==================== */
#myheader {
  background-color: white;
  padding: 20px;
  text-align: center;
  border-bottom: 2px solid #ddd;
}

#myheader h1 {
  margin: 0;
  font-size: 24px;
  font-weight: normal;
  color: #333;
}

#content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  background-color: white;
}

/* ==================== SECTIONS ==================== */
.band-section {
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.album-section {
  padding: 10px;
}

.album-section .section-grid {
  gap: 4px;
}

.album-section .section-col {
  padding: 3px 8px;
}

/* ==================== DIVIDERS ==================== */
.section-divider {
  height: 5px;
  width: 100%;
  margin: 10px 0;
}

.divider-grey {
  background-color: #808080;
}

.divider-gray {
  background-color: #a0a0a0;
}

.divider-green {
  background-color: green;
}

/* ==================== SECTION GRID LAYOUT ==================== */
.section-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: start;
}

.section-col {
  padding: 6px 10px;
  text-align: center;
}

/* Mobile-first (1 column) - images centered by default */

.intro-text {
  text-align: left;
}

.intro-grid {
  gap: 8px;
}

.intro-grid .section-col {
  padding-top: 4px;
  padding-bottom: 4px;
}

.col-middle-2col {
  text-align: center;
}

/* ==================== TABLET & DESKTOP LAYOUTS ==================== */
@media (min-width: 768px) {
  .section-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .section-col {
    padding: 10px;
  }

  /* Introduction section - special layout */
  .intro-grid {
    grid-template-columns: 200px 1fr 200px;
    gap: 20px;
  }

  .intro-text {
    padding: 0 20px;
  }

  /* Video grid - 2 column middle section */
  .video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    background-color: #c0c0c0;
    padding: 10px;
  }

  .video-item {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .video-item img {
    width: 100%;
  }

  .album-section {
    padding: 20px;
  }

  .album-section .section-grid {
    gap: 20px;
  }

  .album-section .section-col {
    padding: 10px;
  }

  /* Album columns - balanced sizing */
  .album-col {
    overflow-y: auto;
    max-height: 600px;
    padding-right: 15px;
  }

  .col-left {
    grid-column: 1;
    text-align: left;
  }

  .col-middle {
    grid-column: 2;
    text-align: left;
  }

  .col-middle-2col {
    grid-column: 2;
  }

  .col-right {
    grid-column: 3;
    text-align: left;
  }
}

/* ==================== RESPONSIVE TEXT SIZES ==================== */
@media (min-width: 768px) {
  p {
    font-size: 11px;
  }

  .section-title {
    font-size: 16px !important;
  }

  .albumliner {
    font-size: 8px;
  }

  .caption {
    font-size: 9px;
  }
}

/* ==================== FOOTER ==================== */
.page-footer {
  background-color: #333;
  color: #999;
  padding: 20px;
  text-align: center;
  margin-top: 20px;
}

.page-footer p {
  color: #999;
  margin: 0;
  font-size: 9px;
}

.page-footer a {
  color: #ccc;
}

.page-footer a:hover {
  color: white;
}

/* ==================== PRINT STYLES ==================== */
@media print {
  body {
    background-color: white;
  }

  #content {
    max-width: 100%;
  }

  .section-divider {
    page-break-inside: avoid;
  }

  .band-section {
    page-break-inside: avoid;
  }
}

/* ==================== ACCESSIBILITY ==================== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

