* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
  background-color: #111;
  color: #fff;
}

.nav-style-link {
  text-align: center;
  margin: 40px 0 20px;
  font-family: 'Georgia', serif;
  letter-spacing: 0.5px;
  font-size: 14px;
}

.nav-style-link a {
  color: #444;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-bottom 0.2s ease;
}

.nav-style-link a:hover {
  border-bottom: 1px solid #444;
}


/* Hero */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.85);
}

/* Responsive Text Overlay */
.hero-text {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  color: white;
  text-shadow: 2px 2px 8px black;
  max-width: 90%;
}

.hero-text h1 {
  font-size: 4rem;
  margin: 0;
}

.hero-text p {
  font-size: 1.5rem;
  margin-top: 0.5rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .hero-text {
    top: 60%;
    left: 4%;
    transform: translateY(-60%);
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 0.9rem;
  }

  .hero-text {
    top: 65%;
    left: 4%;
    transform: translateY(-65%);
  }
}


/* Video */
.video-section {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
  padding: 2rem;
}

.promo-video {
  max-width: 100%;
  width: 800px;
  border: 2px solid #fff;
  border-radius: 12px;
}

/* Appearances */
.appearances {
  padding: 2rem;
  background: #1a1a1a;
  text-align: center;
}

.appearances h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.appearances ul {
  list-style: none;
  font-size: 1.2rem;
  line-height: 2;
}

/* Footer */
.social-footer {
  display: flex;
  justify-content: center;
  gap: 2rem;
  background: #000;
  padding: 2rem;
}

.social-link {
  color: white;
  font-size: 2.5rem;
  transition: color 0.3s;
}

.social-link:hover {
  color: crimson;
}

