/* GLOBAL RESETS & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0c0c0c;
  color: #e6e6e6;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1200px, 90%);
  margin: 0 auto;
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background: #111;
}

.section-intro {
  text-align: center;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  color: #bbb;
}

/* HEADER */
.site-header {
  background: #000;
  padding: 1rem 0;
  border-bottom: 1px solid #222;
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-block {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-circle {
  background: #b70000;
  color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}

.logo-text h1 {
  font-size: 1.5rem;
  color: #fff;
}

.logo-text p {
  font-size: 0.85rem;
  color: #bbb;
}

.nav-links a {
  margin-left: 1.5rem;
  font-size: 0.95rem;
  color: #ddd;
  transition: 0.2s;
}

.nav-links a:hover {
  color: #ff3b3b;
}

/* HERO */
.hero {
  position: relative;
  padding: 6rem 0;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.hero-krusty {
  background-image: url("krusty-hero.jpg");
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.hero-content {
  position: relative;
  text-align: left;
  max-width: 700px;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.hero-subtext {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #ccc;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 0.8rem 1.4rem;
  border-radius: 30px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: 0.2s;
  text-align: center;
}

.btn.primary {
  background: #ff2424;
  color: #fff;
}

.btn.primary:hover {
  background: #ff3d3d;
}

.btn.secondary {
  background: #222;
  color: #ff3d3d;
  border: 1px solid #ff3d3d;
}

.btn.secondary:hover {
  background: #333;
}

.btn.small {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
}

/* TWO COLUMN SECTIONS */
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.card {
  background: #131313;
  padding: 2rem;
  border-radius: 10px;
  border: 1px solid #222;
}

.card h4 {
  margin-bottom: 1rem;
}

/* WATCH PAGE — NETFLIX GRID */
.video-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

/* VIDEO CARD */
.video-card {
  background: #111;
  border: 1px solid #222;
  border-radius: 10px;
  padding-bottom: 1rem;
  transition: 0.2s;
  overflow: hidden;
  position: relative;
}

.video-card:hover {
  transform: scale(1.03);
  border-color: #ff3b3b;
}

/* THUMBNAIL (NETFLIX STYLE) */
.video-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid #222;
}

/* FEATURED TAG */
.video-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: #ff3b3b;
  margin: 0.7rem 1rem 0;
  display: block;
}

/* TEXT INSIDE CARDS */
.video-card h4 {
  padding: 0.7rem 1rem 0.3rem;
  font-size: 1.1rem;
  color: #fff;
}

.video-desc {
  padding: 0 1rem 1rem;
  color: #bbb;
  font-size: 0.85rem;
}

/* CONTACT + SOCIALS */
.contact-list li {
  margin-bottom: 0.4rem;
}

.social-list li {
  margin-bottom: 0.5rem;
}

/* FOOTER */
.site-footer {
  background: #000;
  padding: 2rem 0;
  text-align: center;
  color: #aaaaaa;
  margin-top: 2rem;
}

.footer-small {
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

/* MOBILE */
@media(max-width: 800px) {
  .two-column {
    grid-template-columns: 1fr;
  }

  .hero h2 {
    font-size: 2.2rem;
  }
}