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

.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}


.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.hero-content h2 {
  font-size: 4rem;
  letter-spacing: 1px;
}

.hero-content p {
  font-size: 1.5rem;
  margin-top: 1rem;
}

.hero-logo {
  height: 50px;     
  width: auto;
  display: block;
}

body {
  line-height: 1.6;
  background-color: #000;
  color: #fff;
}

nav {
  position: sticky;
  top: 0;
  background: #000;
  color: #fff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
}

nav ul {
  display: flex;
  gap: 1rem;
  list-style: none;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
}

nav a:hover {
  text-decoration: underline;
}

.caption {
  font-size: 0.9rem;
  color: #555;
}

section {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: auto;
}

.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}


section {
  padding: 6rem 2rem;
  max-width: 1000px;
  margin: auto;
}

.hero {
  max-width: none;
  width: 100%;
  padding: 0;
}

.media-strip {
  max-width: none;
  margin: 2rem auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 1rem;
}

.media-strip img,
.media-strip video {
  width: 100%;
  height: 260px;
  object-fit: contain;
  background: #111;
  border-radius: 3px;
}

@media (max-width: 768px) {
  .media-strip {
    grid-template-columns: 1fr;
  }

  .media-strip img,
  .media-strip video {
    height: 220px;
  }
}

.repo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.repo-card {
  background: #111;
  border: 1px solid #222;
  padding: 1.5rem;
  border-radius: 10px;
  text-decoration: none;
  color: white;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.repo-card h4 {
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.repo-card p {
  font-size: 0.9rem;
  color: #ccc;
}

.repo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.pastseasons-container {
  position: relative;
  height: 320px;
}

.pastseasons-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  background: #888;
  border-radius: 10px;
}

.pastseasons-item {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -30%);
  cursor: pointer;
  text-align: center;
}

.pastseasons-item.up {
  transform: translate(-50%, -20%);
}

.pastseasons-item.down {
  transform: translate(-50%, 20%);
}

.tick {
  width: 2px;
  height: 10px;
  background: #aaa;
  margin: 0 auto;
}

.dot {
  position: relative;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  overflow: hidden;
  margin: 6px auto;
  transition: transform 0.3s ease;
  border: 2px solid white;
}

.dot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dot span {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  color: white;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pastseasons-item:hover .dot {
  transform: scale(3);
}

.pastseasons-item:hover .dot span {
  opacity: 1;
}

.pastseasons-item p {
  font-size: 0.75rem;
  margin-top: 6px;
  white-space: nowrap;
}


h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

footer {
  text-align: center;
  padding: 2rem;
  background: #f4f4f4;
}

:root {
  --accent: #c9a227;
}

h2, h3 {
  color: var(--accent);
}

@media (max-width: 768px) {
  .hero-img {
    object-fit: contain;
    background: black;
  }

  .hero {
    min-height: 55vh;
  }
}
