@import "tailwindcss";

body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}


.hero {
  padding-top: 20px;
  width: 100%;
  height:100vh;
  position: relative;
  overflow: hidden;
}

/* THIS IS THE KEY FIX */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover; /* forces fill */
  transform: translate(-50%, -50%);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: white;
  text-align: center;
}

.header-heading{
  font-size: 3.5rem;
  font-weight: bold;

}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: rgba(0, 0, 0, 0.4); /* adjust darkness here */
  
  z-index: 1; /* above video */
}