* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.banner {
 width: 1600px;
 height: 500px;
 border:solid;
 border-color:#9D2235;
 border-radius:4rem;
 border-width:5px;
 margin:auto;
 background-image:url("assets/Joe_Holmin_Banner.png");
 background-color:#9D2235;
 }

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #9D2235;
  color: #ffffff;
  line-height: 1.6;
}

img { 
    width: 100%; 
    height: auto;
}

.container {
  width: min(1200px, 92%);
  margin: auto;
}

.section {
  padding: 100px 0;
}

.dark-section {
  background: #9D2235;
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 40px;
  text-align: center;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(157, 34, 53, 0.8);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 3px;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  color: white;
  text-decoration: none;
  transition: 0.3s ease;
}

.nav-links a:hover {
  color: #d4af37;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

.hero {
  height: 100vh;
  position: relative;
  background:
    linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)),
    url('assets/hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 700px;
}

.hero h1 {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  transition: 0.3s ease;
  font-weight: bold;
}

.btn-primary {
  background: #9D2235;
  color: #ffffff;
}

.btn-primary:hover {
  background: #f0c84d;
}

.btn-secondary {
  border: 1px solid white;
  color: white;
}

.btn-secondary:hover {
  background: white;
  color: black;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 18px;
}

.show-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.show-card {
  background: #222;
  padding: 24px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.show-date {
  text-align: center;
}

.show-date span {
  display: block;
  font-size: 0.9rem;
  color: #ccc;
}

.show-date strong {
  font-size: 2rem;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.video-card iframe {
  width: 100%;
  height: 350px;
  border: none;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px;
  background: #222;
  border: 1px solid #444;
  color: white;
}

.contact-form textarea {
  min-height: 160px;
}

.site-footer {
  background: black;
  padding: 30px 0;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.socials {
  display: flex;
  gap: 20px;
}

.socials a {
  color: white;
  text-decoration: none;
}

@media (max-width: 900px) {

  .hero h1 {
    font-size: 3rem;
  }

  .about-grid,
  .contact-wrap,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: black;
    flex-direction: column;
    padding: 20px;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }
}