body {
  font-family: 'Public Sans', sans-serif;
  background: #000;
  color: #fff;
  text-align: center;
}

.hero {
  min-height: 100vh;
  background-image: url("images/hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  padding: 0 1rem;
}

.hero-content {
  max-width: 800px;
}

.logo {
  max-width: 100vw;
  width: 80%;
  height: auto;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 15px rgba(0,0,0,0.6));
}

.quote {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
  max-width: 700px;
  margin: 1rem auto 1.5rem;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.7);
  font-style: italic;
}

.hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.social-banner {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.social-banner img {
  width: 36px;
  height: 36px;
  transition: transform 0.2s ease, filter 0.2s ease;
  filter: brightness(1);
}

.social-banner img:hover {
  transform: scale(1.2);
  filter: brightness(1.3);
}

section.videos {
  padding: 2rem 1rem;
}

.videos h2 {
  margin-bottom: 1rem;
}

.videos iframe {
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16 / 9;
  border: none;
}

footer .social-banner {
  margin-top: 1rem;
  margin-bottom: 2rem;
}

@media (max-width: 600px) {
  .quote {
    font-size: 1rem;
  }

  .social-banner img {
    width: 28px;
    height: 28px;
  }

  .logo {
    max-width: 80%;
  }
}