/* styles.css */
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #000;
  color: #fff;
}

a, nav a, .social-links a {
  color: #eee;
  text-decoration: none;
  margin: 0 10px;
}

a:hover, nav a:hover, .social-links a:hover {
  color: #0af;
}

nav {
  position: fixed;
  width: 77%;
  padding: 10px 0;
  top: 0;
  z-index: 1000;
  text-align: right;
}

header {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('your-background-image.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: -1;
}

.logo {
  font-size: 5rem;
  font-weight: 700;
  letter-spacing: 0.3rem;
  margin-bottom: 20px;
}

.tagline {
  font-size: 1.5rem;
  margin-bottom: 40px;
}

.subscribe {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  border: 2px solid #fff;
  border-radius: 25px;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease, box-shadow 0.3s ease;
}

.subscribe:hover {
  background-color: #fff;
  color: #000;
  box-shadow: 0 0 15px #ccc;
}

section, footer {
  padding: 80px 40px 40px 40px;
  max-width: 1000px;
  margin: auto;
}

.section-title {
  font-size: 28px;
  margin-bottom: 20px;
  text-align: center;
  border-bottom: 2px solid #555;
  padding-bottom: 10px;
}

.hub-section {
  margin-bottom: 40px;
}

.hub-section h3 {
  margin-top: 10px;
}

.video-gallery {
  display: flex;
  overflow-x: auto;
  gap: 20px;
}

.video-gallery iframe {
  flex: 0 0 auto;
}

form input, form textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  background: #222;
  border: 1px solid #555;
  color: #ccc;
}

form button {
  background: #0af;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

form button:hover {
  background: #08c;
  box-shadow: 0 0 10px #ccc;
}

@media (max-width: 768px) {
  .logo {
    font-size: 3rem;
  }

  .tagline {
    font-size: 1.2rem;
  }

  nav a {
    margin: 0 8px;
    font-size: 0.9rem;
  }

  section, footer {
    padding: 60px 20px 20px 20px;
  }

  .video-gallery iframe {
    width: 250px;
    height: 140px;
  }
}