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

/* GLOBAL */
body {
  background: #000;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
}

/* HEADER (SAME AS HOME) */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 64px;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  z-index: 1000;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  letter-spacing: 4px;
}

.hamburger {
  width: 26px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 2px;
  background: #b91c1c;
  margin: 6px 0;
}

/* NAV */
.nav {
  position: fixed;
  top: 64px;
  right: -100%;
  width: 100%;
  height: calc(100vh - 64px);
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transition: right 0.4s ease;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  letter-spacing: 3px;
}

.nav.open {
  right: 0;
}

/* VIDEO HERO */
.video-hero {
  height: 35vh; /* reduced from 50vh */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(circle at center, #111, #000);
}

.video-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  letter-spacing: 6px;
  margin-bottom: 10px;
}

.video-hero p {
  font-size: 14px;
  opacity: 0.7;
  letter-spacing: 1px;
}

/* VIDEOS */
.videos {
  padding: 40px 20px; /* reduced spacing */
}

.video-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.video-card iframe {
  width: 100%;
  height: 200px;
  border: none;
}

.video-card p {
  margin-top: 10px;
  font-size: 14px;
  opacity: 0.8;
}

/* SOCIAL */
.social-bar {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 20px 0 10px;
}

.social-bar a {
  color: #777;
  font-size: 22px;
}

.social-bar a:hover {
  color: #fff;
}

/* FOOTER */
.footer {
  padding: 10px 20px 40px;
  text-align: center;
  font-size: 12px;
  color: #666;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 12px;
}

.footer-links a {
  color: #666;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .video-card iframe {
    height: 180px;
  }
}

/* DESKTOP NAV FIX */
@media (min-width: 1024px) {

  .hamburger {
    display: none;
  }

  .nav {
    position: static;
    height: auto;
    width: auto;
    flex-direction: row;
    background: transparent;
    gap: 32px;
    right: 0;
    transition: none;
  }

  .nav a {
    font-size: 13px;
    letter-spacing: 2px;
    opacity: 0.8;
  }

  .nav a:hover {
    opacity: 1;
  }
}

