html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5); /* Optional overlay for readability */
  padding: 2rem;
}

.header-banner {
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.header-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* =========================================
   MEDIA & TEXT PROTECTION
   Purpose: Prevent dragging and selection on images, videos, and text
   ========================================= */

/* Prevent drag on images and videos */
img, video {
  user-drag: none;          /* Non-standard, may be ignored */
  -webkit-user-drag: none;  /* Chrome, Safari */
  -moz-user-drag: none;     /* Firefox */
  -ms-user-drag: none;      /* Old IE/Edge */
  pointer-events: auto;     /* Keep video controls clickable */
}

/* Prevent text selection */
body, p, h1, h2, h3, h4, h5, h6 {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
