:root {
  --dark-blue: #041a44;
  --medium-blue: #0b2f66;
  --gold: #d6a638;
  --orange: #d97a22;
  --cream: #fff8e6;
  --brown: #3a2412;
  --white: #ffffff;
  --soft-green: #dcebc6;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: var(--cream);
  color: var(--brown);
}

.hero {
  max-width: 1200px;
  height: 675px;
  margin: 25px auto 0 auto;
  background-image: url("../images/GoodMorningSG-11.png");
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
  background-color: var(--dark-blue);
  border-left: 6px solid var(--gold);
  border-right: 6px solid var(--gold);
}

.main-nav {
  background: var(--dark-blue);
  text-align: center;
  padding: 15px;
  border-top: 5px solid var(--gold);
  border-bottom: 5px solid var(--gold);
}

.main-nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  margin: 0 18px;
}

.main-nav a:hover {
  color: var(--gold);
}

.welcome,
.today-band,
.program-band,
.about-band,
.contact-band {
  margin: 0;
  padding: 55px 12%;
  text-align: center;
  border-radius: 0;
  box-shadow: none;
}

.welcome {
  background: linear-gradient(#fff8e6, #f4f8e8);
}

.today-band {
  background: linear-gradient(#fff2d8, #ffd39a);
}

.program-band {
  background: linear-gradient(#f4f8e8, var(--soft-green));
}

.about-band {
  background: var(--dark-blue);
  color: var(--white);
  border: 2px solid var(--gold);
}

.contact-band {
  background: var(--white);
  border: 2px solid var(--gold);
}

.welcome h1,
.today-band h2,
.program-band h2,
.about-band h2,
.contact-band h2,
.photo-strip h2 {
  font-size: 36px;
  margin-top: 0;
}

.welcome h1,
.today-band h2,
.program-band h2,
.contact-band h2,
.photo-strip h2 {
  color: var(--medium-blue);
}

.about-band h2 {
  color: var(--gold);
}

.welcome p,
.today-band p,
.program-band p,
.about-band p,
.contact-band p,
.photo-strip p {
  font-size: 22px;
  line-height: 1.7;
}

.buttons {
  margin-top: 25px;
}

.btn {
  display: inline-block;
  margin: 10px;
  padding: 14px 28px;
  background: var(--gold);
  color: var(--dark-blue);
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  border: 2px solid var(--gold);
}

.btn:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.btn.alt {
  background: var(--dark-blue);
  color: var(--white);
}

.photo-strip {
  padding: 55px 20px;
  text-align: center;
  background: linear-gradient(#f4f8e8, var(--soft-green));
}

.thumb-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 25px;
}

.thumb-row img {
  width: 220px;
  height: 145px;
  object-fit: cover;
  border: 4px solid var(--gold);
  border-radius: 8px;
}

.thumb-row img:hover {
  transform: scale(1.05);
}

.lightbox {
  display: none;
}

.lightbox:target {
  display: flex;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .88);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border: 6px solid var(--white);
  border-radius: 8px;
}

a {
  color: var(--medium-blue);
  font-weight: bold;
}

footer {
  background: var(--dark-blue);
  color: var(--white);
  text-align: center;
  padding: 22px;
  border-top: 5px solid var(--gold);
}

@media (max-width: 700px) {
  .hero {
    height: 420px;
  }
  .video-container {
  max-width: 900px;
  margin: 30px auto;
}

.video-container video {
  width: 100%;
  border: 4px solid var(--gold);
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,.25);
}
  .main-nav a {
    display: block;
    margin: 10px 0;
  }

  .welcome h1,
  .today-band h2,
  .program-band h2,
  .about-band h2,
  .contact-band h2,
  .photo-strip h2 {
    font-size: 30px;
  }

  .welcome p,
  .today-band p,
  .program-band p,
  .about-band p,
  .contact-band p,
  .photo-strip p {
    font-size: 19px;
  }
}