:root {
  color-scheme: light;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, Arial, sans-serif;
}



html, body {
  background-color: #f9f9f9 !important;
  color: #222 !important;
}


/* Header */
.header {
  background: linear-gradient(
    to right,
    var(--saffron),
    #ffffff,
    var(--green)
  );
  padding: 0.7rem 1rem;
  border-bottom: 4px solid var(--blue);
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Logo - Left */
.logo {
  height: 55px;
  position: absolute;
  left: 0;
}

/* Tagline - Center */
.tagline {
  height: 35px;
}


/* Layout */
.container {
  padding: 1rem;
  max-width: 1200px;
  margin: auto;
  background-color: transparent;
}

/* Main Player */
.player-section iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  
 border: 3px solid var(--green);
}

.player-section h2 {
  margin-top: 0.6rem;
  font-size: 1rem;
}

/* Video Grid */
.video-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;

}

/* Video Card */
.video-card {
  display: flex;
  gap: 0.7rem;
  background-color: #ffffff;
  padding: 0.5rem;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
  border-left: 4px solid var(--saffron);
}
.video-card:hover {
  background: #fff6e9;
}

.video-card img {
  width: 120px;
  border-radius: 6px;
}

.video-card h3 {
  font-size: 0.9rem;
}
.logo,
.tagline {
  object-fit: contain;
}

/* Desktop */
@media (min-width: 768px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .logo {
    height: 75px;
  }

  .tagline {
    height: 50px;
  }
}

@media (min-width: 1024px) {
  .video-grid {
    grid-template-columns: repeat(3, 1fr);
  }
.logo {
    height: 95px;
  }

  .tagline {
    height: 65px;
  }
}
@media (max-width: 600px) {
  .header-inner {
    flex-direction: column;
  }

  .logo {
    position: static;
    margin-bottom: 0.5rem;
  }

  .tagline {
    height: 30px;
  }
}

@media (prefers-color-scheme: dark) {
  html, body {
    background-color: #f9f9f9 !important;
    color: #222 !important;
  }

  .video-card,
  .container,
  .player-section {
    background-color: #ffffff !important;
  }
}

/* Footer */
.footer {
  margin-top: 2rem;
  text-align: center;
  padding: 1rem;
  color: white;
 background: var(--green);
  color: white;
}
