body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0b0d1d;
  color: #eee;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden; /* just in case */
}

header {
  position: relative;
  width: 100%;
  height: 700px;
  background: #1a1f3e;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.banner-wrapper {
  position: relative;      /* establish positioning context for absolute image */
  width: 100%;
  height: 100%;           /* fill header height */
  overflow: hidden;       /* crop bottom if image is taller */
}

.banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;       /* fill full header height */
  object-fit: cover;  /* scale and crop to cover container */
  object-position: top; /* align cropping from top */
  user-select: none;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  header {
    height: 225px;        /* smaller header height */
  }
}

nav {
  background: #0a0c21;
  text-align: center;
  padding: 1rem;
}

nav a {
  color: #66caff;
  margin: 0 1rem;
  text-decoration: none;
  font-weight: bold;
}

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

section {
  padding: 2rem 1rem;
  max-width: 900px;
  margin: auto;
}

h2 {
  margin-bottom: 1rem;
  border-bottom: 1px solid #333;
  padding-bottom: 0.5rem;
  color: #a0d8ff;
}

.video-grid,
.music-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

iframe {
  width: 100%;
  height: 200px;
  border: none;
  background: #000;
}

input[type="email"] {
  width: 100%;
  padding: 0.6rem;
  border: none;
  border-radius: 4px;
  margin-top: 0.5rem;
}

input[type="submit"] {
  margin-top: 1rem;
  padding: 0.7rem 1.2rem;
  border: none;
  background: #66caff;
  color: #000;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
}

input[type="submit"]:hover {
  background: #53b0e0;
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  background: #0a0c21;
  color: #777;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  font-size: 1.8rem;
  color: #66caff;
}

.social-icons a {
  color: inherit;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #53b0e0;
}

#connect .email-link {
  margin-top: 1rem;
  font-size: 1.1rem;
  text-align: center;
}

#connect .email-link a {
  color: #66caff;
  text-decoration: none;
  font-weight: bold;
}

#connect .email-link a:hover {
  text-decoration: underline;
}
