@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400;1,600&family=Source+Sans+3:wght@300;400;600&display=swap');

/* Hero Banner */
.hero-banner {
  background-color: #f5f0e8;
  padding: 60px 40px;
  text-align: center;
  border-bottom: 3px solid #D4AF37;
  position: relative;
  overflow: hidden;
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    rgba(212, 175, 55, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-banner-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-banner-eyebrow {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #D4AF37;
  margin-bottom: 16px;
}

.hero-banner-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  color: #1a1a1a;
  line-height: 1.25;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
}

.hero-banner-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-banner-btn {
  padding: 13px 36px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  background: linear-gradient(135deg, #E8C547, #D4AF37, #B8960C);
  color: #1a1a1a;
  transition: opacity 0.3s, transform 0.2s, box-shadow 0.3s;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.hero-banner-btn:hover {
  opacity: 0.9;
  transform: scale(1.02);
  color: #1a1a1a;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.45);
}

.hero-banner-btn-outline {
  background: transparent;
  color: #1a1a1a;
  border: 1.5px solid #1a1a1a;
  box-shadow: none;
}

.hero-banner-btn-outline:hover {
  background: #1a1a1a;
  color: #f5f0e8;
  box-shadow: none;
  opacity: 1;
}

/* Banner */
.banner {
  position: relative;
  width: 100%;
  max-height: 300px;
  text-align: left;
  overflow: hidden;
}

.banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.5;
}

.banner-content {
  position: relative;
  z-index: 1;
  padding: 20px;
}

.banner h1 {
  font-size: 48px;
  font-weight: bold;
  color: #333333;
  margin: 0;
}

.banner p {
  font-size: 24px;
  color: #333333;
  margin: 0;
  margin-top: 10px;
}

.banner h1, .banner p {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 0;
}

/* Featured Show */
.featured-show {
  background-color: #1f1f1f;
  padding: 40px;
}

.featured-show-label {
  font-size: 13px;
  font-weight: bold;
  color: #D4AF37;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.featured-show-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.featured-show-poster {
  flex-shrink: 0;
}

.featured-show-poster img {
  width: 220px;
  height: 330px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s;
}

.featured-show-poster img:hover {
  transform: scale(1.03);
}

.featured-show-details {
  flex: 1;
  color: white;
}

.featured-show-details h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
  border: none;
  padding: 0;
  display: block;
}

.featured-show-details h2 a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.featured-show-details h2 a:hover {
  color: #D4AF37;
}

.featured-show-creators {
  font-size: 15px;
  color: #aaa;
  margin-bottom: 15px;
}

.featured-show-creators a {
  color: #D4AF37;
  text-decoration: none;
  font-weight: bold;
}

.featured-show-creators a:hover {
  text-decoration: underline;
}

.featured-show-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.featured-tag {
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid #D4AF37;
  color: #D4AF37;
  font-size: 12px;
  letter-spacing: 0.5px;
}

.featured-show-overview {
  font-size: 15px;
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 25px;
  max-width: 600px;
}

.featured-show-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.featured-show-btn {
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
  background-color: #D4AF37;
  color: white;
  border: 2px solid #D4AF37;
}

.featured-show-btn:hover {
  background-color: #b8960c;
  border-color: #b8960c;
  transform: scale(1.03);
  color: white;
}

.featured-show-btn-outline {
  background-color: transparent;
  color: #D4AF37;
}

.featured-show-btn-outline:hover {
  background-color: #D4AF37;
  color: white;
}

/* Recently Added Pilots */
.rec-added-tv-shows {
  background-color: #D4AF37;
  overflow-x: auto;
  overflow-y: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.rec-added-tv-shows::-webkit-scrollbar {
  display: none;
}

.rec-added-tv-posters {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  overflow-x: auto;
  overflow-y: hidden;
  touch-action: pan-x;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.rec-added-tv-posters::-webkit-scrollbar {
  display: none;
}

.rec-added-tv-poster {
  position: relative;
  margin: 10px;
  flex-shrink: 0;
}

.rec-added-tv-poster img {
  width: 200px;
  height: 300px;
}

.rec-added-tv-details {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  color: black;
  opacity: 0;
  transition: opacity 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.rec-added-tv-poster:hover .rec-added-tv-details {
  opacity: 1;
}

.rec-added-tv-shows-header {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  font-style: italic;
  text-decoration: none !important;
  letter-spacing: 2px;
  margin-left: 15px;
  padding-top: 10px;
  color: #1a1a1a;
}

.rec-added-tv-details p {
  margin: 0;
  padding: 5px;
  font-size: 14px;
}

.rec-added-tv-details h3,
.rec-added-tv-details p {
  margin: 0;
  padding: 5px;
}

.rec-added-tv-title {
  font-size: 18px;
}

.rec-added-tv-details a {
  color: black;
  font-weight: bold;
}

.rec-added-tv-details .creators-container {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.rec-added-tv-details .creators-container::-webkit-scrollbar {
  display: none;
}

.rec-added-tv-details .creators {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.rec-added-tv-details .creators a {
  white-space: nowrap;
  margin: 3px;
}

/* Suggested Creators — Dark Landscape Cinematic */
.suggested-creators {
  padding: 30px 20px;
  background-color: #0a0a0a;
  border-top: 1px solid #D4AF37;
  border-bottom: 1px solid #D4AF37;
}

.suggested-creators-header {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 2px;
  margin-bottom: 25px;
  color: white;
  display: block;
}

.suggested-creators-list {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 15px;
  padding-bottom: 10px;
  -ms-overflow-style: none;
  scrollbar-width: none;
  touch-action: pan-x;
}

.suggested-creators-list::-webkit-scrollbar {
  display: none;
}

/* Dark landscape card */
.suggested-creator-card {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-shrink: 0;
  width: 340px;
  height: 200px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.suggested-creator-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  border-color: #D4AF37;
  text-decoration: none;
  color: inherit;
}
.suggested-creator-card:hover *,
.suggested-creator-card:focus *,
.suggested-creator-card:visited * {
  text-decoration: none;
  color: inherit;
}

/* Gold shimmer sweep */
.suggested-creator-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(212, 175, 55, 0.12) 50%,
    transparent 100%
  );
  z-index: 5;
  transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.suggested-creator-card:hover::before {
  left: 150%;
}

/* Photo — left side */
.suggested-creator-image {
  width: 140px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

.suggested-creator-image::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, #E8C547, #D4AF37, #B8960C);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s;
}

.suggested-creator-card:hover .suggested-creator-image::after {
  opacity: 1;
}

.suggested-creator-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: grayscale(30%) brightness(0.7);
  transition: filter 0.5s ease, transform 0.5s ease;
}

.suggested-creator-card:hover .suggested-creator-image img {
  filter: grayscale(0%) brightness(0.85);
  transform: scale(1.06);
}

.suggested-creator-placeholder {
  width: 100%;
  height: 100%;
  background: #111;
  display: flex;
  justify-content: center;
  align-items: center;
}

.suggested-creator-placeholder span {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 9px;
  color: #333;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Info — right side */
.suggested-creator-info {
  flex: 1;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #1a1a1a;
  position: relative;
  z-index: 1;
}

.suggested-creator-label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #D4AF37;
  display: block;
}

.suggested-creator-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin: 6px 0 0 0;
  line-height: 1.15;
}

.suggested-creator-divider {
  width: 25px;
  height: 1px;
  background: linear-gradient(90deg, #E8C547, #B8960C);
  margin: 8px 0;
}

/* Filmstrip */
.suggested-creator-shows {
  display: flex;
  gap: 5px;
}

.suggested-creator-show-poster {
  width: 34px;
  height: 65px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.08);
  opacity: 0.6;
  transition: opacity 0.3s, border-color 0.3s;
}

.suggested-creator-card:hover .suggested-creator-show-poster {
  opacity: 1;
  border-color: rgba(212, 175, 55, 0.3);
}

.suggested-creator-show-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.suggested-creator-cta {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 9px;
  font-weight: 600;
  color: #D4AF37;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s, transform 0.3s;
  display: block;
  margin-top: 6px;
}

.suggested-creator-card:hover .suggested-creator-cta {
  opacity: 1;
  transform: translateY(0);
}

/* Staff Favorites */
.staff-favorites {
  padding: 20px;
  background-color: #fafafa;
}

.staff-favorites-header {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  font-style: italic;
  text-decoration: none !important;
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.staff-favorites-show-list {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  touch-action: pan-x;
  padding-bottom: 10px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.staff-favorites-show-list::-webkit-scrollbar {
  display: none;
}

.staff-favorites-show-item {
  flex-shrink: 0;
  margin-right: 10px;
}

.staff-favorites-show-poster {
  position: relative;
  width: 150px;
  overflow: hidden;
  transition: transform 0.3s;
}

.staff-favorites-poster {
  width: 100%;
  height: 200px;
  transition: transform 0.3s;
}

.staff-favorites-show-poster:hover {
  transform: scale(1.05);
}

.staff-favorites-poster-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(243, 230, 183, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity 0.3s;
}

.staff-favorites-show-poster:hover .staff-favorites-poster-overlay {
  opacity: 0;
}

.staff-favorites-poster-title {
  font-size: 16px;
  color: black;
  font-weight: bold;
  text-align: center;
  margin: 0;
  padding: 5px;
}

.more-link-staff-favorites {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 6px;
  width: 150px;
  height: 200px;
  background-color: #F3E6B7;
  border: 1px solid #D4AF37;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: none;
  transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s;
  flex-shrink: 0;
  letter-spacing: 1px;
}

.more-link-staff-favorites:hover {
  background-color: #ecdfa0;
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25);
  color: #1a1a1a;
}

/* Influential Shows */
.influential-shows {
  padding: 20px;
  background-color: #fafafa;
}

.influential-shows-header {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  font-style: italic;
  text-decoration: none !important;
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.influential-shows-show-list {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  touch-action: pan-x;
  padding-bottom: 10px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.influential-shows-show-list::-webkit-scrollbar {
  display: none;
}

.influential-shows-show-item {
  flex-shrink: 0;
  margin-right: 10px;
}

.influential-shows-show-poster {
  position: relative;
  width: 150px;
  overflow: hidden;
  transition: transform 0.3s;
}

.influential-shows-poster {
  width: 100%;
  height: 200px;
  transition: transform 0.3s;
}

.influential-shows-show-poster:hover {
  transform: scale(1.05);
}

.influential-shows-poster-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(243, 230, 183, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity 0.3s;
}

.influential-shows-show-poster:hover .influential-shows-poster-overlay {
  opacity: 0;
}

.influential-shows-poster-title {
  font-size: 16px;
  color: black;
  font-weight: bold;
  text-align: center;
  margin: 0;
  padding: 5px;
}

.more-link {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 6px;
  width: 150px;
  height: 200px;
  background-color: #F3E6B7;
  border: 1px solid #D4AF37;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: none;
  transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s;
  flex-shrink: 0;
  letter-spacing: 1px;
}

.more-link:hover {
  background-color: #ecdfa0;
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25);
  color: #1a1a1a;
}

/* Creator placeholder */
.creator-placeholder {
  width: 100%;
  height: 100%;
  background-color: #2a2a2a;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px 0 0 10px;
}

.creator-placeholder-initials {
  font-size: 13px;
  color: #888;
  letter-spacing: 1px;
}

/* Mobile */
@media (max-width: 768px) {
  .banner h1 { font-size: 28px; }
  .banner p { font-size: 16px; }

  .hero-banner { padding: 45px 20px; }
  .hero-banner-title { font-size: 34px; }

  .featured-show { padding: 25px 20px; }

  .featured-show-content {
    flex-direction: column;
    gap: 20px;
  }

  .featured-show-poster img {
    width: 160px;
    height: 240px;
  }

  .featured-show-details h2 { font-size: 24px; }
  .featured-show-overview { font-size: 14px; }

  .rec-added-tv-poster img {
    width: 140px;
    height: 210px;
  }

  .rec-added-tv-title { font-size: 14px; }
  .rec-added-tv-details p { font-size: 12px; }

  .suggested-creator-card {
    width: 290px;
    height: 180px;
  }

  .suggested-creator-image { width: 115px; }
  .suggested-creator-name { font-size: 18px; }
  .suggested-creator-show-poster { width: 28px; height: 55px; }

  .staff-favorites-show-poster { width: 120px; }
  .staff-favorites-poster { height: 170px; }
  .more-link-staff-favorites { width: 120px; height: 170px; font-size: 18px; }

  .influential-shows-show-poster { width: 120px; }
  .influential-shows-poster { height: 170px; }
  .more-link { width: 120px; height: 170px; font-size: 18px; }
}

@media (max-width: 480px) {
  .banner h1 { font-size: 22px; }
  .banner p { font-size: 14px; }

  .hero-banner { padding: 30px 15px; }
  .hero-banner-title { font-size: 26px; }
  .hero-banner-btn { padding: 11px 24px; font-size: 10px; }

  .featured-show { padding: 20px 15px; }

  .featured-show-poster img {
    width: 130px;
    height: 195px;
  }

  .featured-show-details h2 { font-size: 20px; }
  .featured-show-btn { padding: 10px 20px; font-size: 13px; }

  .rec-added-tv-poster img {
    width: 120px;
    height: 180px;
  }

  .suggested-creator-card {
    width: 260px;
    height: 165px;
  }

  .suggested-creator-image { width: 100px; }
  .suggested-creator-name { font-size: 16px; }
  .suggested-creator-show-poster { width: 24px; height: 45px; }

  .staff-favorites-show-poster { width: 100px; }
  .staff-favorites-poster { height: 150px; }
  .more-link-staff-favorites { width: 100px; height: 150px; font-size: 16px; }

  .influential-shows-show-poster { width: 100px; }
  .influential-shows-poster { height: 150px; }
  .more-link { width: 100px; height: 150px; font-size: 16px; }
}