/* ====== Global Reset & Body ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  background-color: #1a1a1a; /* Dark mode background */
  color: #f4f4f4;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}

/* ====== Layout & Container ====== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ====== HEADER ====== */
.site-header {
  background-color: #111;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-title {
  font-size: 1.8rem;
  font-weight: bold;
}
.nav-list {
  list-style: none;
  display: flex;
  gap: 1rem;
}
.nav-list a:hover,
.nav-list a.active {
  text-decoration: underline;
}

/* ====== HERO SECTION ====== */
.hero-section {
  background: url("../images/herobg.jpg") no-repeat center center;
  background-size: cover;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.hero-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero-subtitle {
  font-size: 1.2rem;
  max-width: 600px;
}
.hero-buttons a {
  display: inline-block;
  margin: 0 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 4px;
  font-weight: 600;
  transition: background-color 0.2s;
}

/* ====== BUTTONS ====== */
.btn-red {
  background-color: #e50914;
  color: #fff;
}
.btn-red:hover {
  background-color: #cf0812;
}
.btn-dark {
  background-color: #333;
  color: #fff;
}
.btn-dark:hover {
  background-color: #444;
}

/* ====== VIDEO SECTION ====== */
.latest-video {
  background-color: #000;
  padding: 2rem 0;
  text-align: center;
}
.section-title {
  font-size: 2rem;
  margin-bottom: 2rem;
}
.video-thumbnails {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.thumbnail-box iframe {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* ====== FOOTER ====== */
.site-footer {
  background-color: #111;
  text-align: center;
  padding: 1rem 0;
}
.footer-nav {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.footer-nav a:hover {
  text-decoration: underline;
}

/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .header-inner {
    flex-direction: column;
    text-align: center;
  }
  .nav-list {
    flex-direction: column;
    gap: 0.5rem;
  }
  .video-thumbnails {
    flex-direction: column;
    align-items: center;
  }
}
