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

/* Base */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #7f449bc5;
  color: #e0e0f0;
  line-height: 1.6;
}

a {
  color: #B6F83E; /* lavender links */
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1, h2, h3 {
  color: #ffffff;
}

/* Navigation */
header {
  background-color: #1a1a2e;
  background: linear-gradient(135deg, #2a2a2e, #1a1a2e);
  padding: 20px 0;
  border-bottom: 1px solid #333;
}

.nav-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  background-color: #B6F83E;
}

.logo img {
  height: 200px;
  width: 200px;
  display: block;
  background-color: #B6F83E;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: #B6F83E; /* lime green brand text */
}

/* Nav links */
nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav li a {
  font-weight: 600;
  font-size: 1rem;
  color: #B6F83E; /* lavender nav links */
}

/* Hero */
.hero {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #2a2a40, #1a1a2e);
}

.hero h1 {
  font-size: 1.8rem;
  color: #B6F83E; /* lime green headline */
}

/* Featured Video */
.featured-video {
  max-width: 800px;
  margin: 40px auto;
  text-align: center;
  padding: 0 20px;
}

.featured-video h2 {
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: #ffffff; /* lavender section title */
}


.featured-video a {
    color: #B6F83E;
    align-items: right;
    font-weight: bold;
}

.video-wrapper iframe {
  width: 100%;
  height: 450px;
  border-radius: 8px;
  border: none;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

/* Episodes */
.episodes {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
}

.episodes a {
  
  color: #B6F83E;
}

.episodes h2 {
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: #ffffff;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  background-color: #1f1f2f;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 8px rgba(0,0,0,0.3);
  text-align: center;
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.card h3 {
  padding: 10px;
  font-size: 1rem;
  color: #B6F83E; /* lime green card titles */
}

/* Reviews */
.reviews {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
}

.reviews h2 {
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: #ffffff;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.review-card {
  background-color: #1f1f2f;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 0 8px rgba(0,0,0,0.3);
}

.review-card h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: #B6F83E; /* lime green review titles */
}

.review-card p {
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: #ccc;
}

.review-card span {
  display: block;
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 10px;
}

.review-card a {
  font-weight: bold;
  color: #ffffff; /* lavender links */
}

/* Footer */
footer {
  background-color: #1a1a2e;
  color: #ccc;
  text-align: center;
  padding: 30px 20px;
  margin-top: 60px;
  border-top: 1px solid #333;
}

footer button {
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #B6F83E; /* lime green button */
  color: #0f0f1a;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

footer button:hover {
  background-color: #D4A9FD; /* lavender hover */
  color: #0f0f1a;
}

/* Responsive tweaks */
@media (max-width: 400px) {
  .logo img { height: 200px; }
  .logo-text { font-size: 1.2rem; }
  nav ul { gap: 20px; }
  .video-wrapper iframe { height: 400px; }
}
