 /* Hero Section */
 .hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Video Background Styling - ADDED */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* Overlay for text readability - ADDED */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); 
  z-index: 2;
}

/* Logo and Content */
.logo {
  position: relative;
  left: 10%;
  max-width: 90%;
  z-index: 10; /* Ensures content is above video and overlay */
  animation: slideInLeft 1.2s ease-out;
}

@keyframes slideInLeft {
  0% {
      transform: translateX(-100%);
      opacity: 0;
  }
  100% {
      transform: translateX(0);
      opacity: 1;
  }
}

.logo h1 {
  position: relative;
  left: -60%;
  
  color: #fff;
  margin: 0;
  line-height: 1.2;
  letter-spacing: 6px;
  font-size: 6rem;
  text-transform: uppercase;
  font-weight: 100;
  animation: slideInLeft 1.2s ease-out;
  font-family: 'Michroma', sans-serif;
}

.logo .line {
  position: relative;
  left: -60%;
  display: block;
  width: 100%;
  height: 3px;
  background: #ccc;
  margin: 8px 0 15px 0;
  border-radius: 2px;
  animation: lineExpand 2s ease-out 0.5s both;
}

@keyframes lineExpand {
  0% {
      width: 0;
      opacity: 0;
  }
  100% {
      width: 100%;
      opacity: 1;
  }
}

.logo .yellow {
  color: #f5c400;
}

/* Crosses */
.cross {
  position: absolute;
  width: 20px;
  height: 20px;
  animation: rotateCross 4s linear infinite;
  z-index: 5;
}

@keyframes rotateCross {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.cross:before, .cross:after {
  content: '';
  position: absolute;
  background: #888;
  transition: background 0.3s ease;
}

.cross:hover:before,
.cross:hover:after {
  background: #f5c400;
}

.cross:before {
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.cross:after {
  width: 1px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.cross1 { 
  top: -60px; 
  left: -60px; 
  animation-delay: 0s;
}

.cross2 { 
  bottom: -60px; 
  right: -120px; 
  animation-delay: 2s;
}

/* Motion Blur Lines */
.blur-line {
  position: absolute;
  height: 8px;
  background: linear-gradient(to right, transparent, #555, transparent);
  filter: blur(4px);
  border-radius: 50%;
  z-index: 3;
}

.blur1 {
  top: -10%;
  right: -60%;
  width: 200px;
}

.blur2 {
  bottom: -10%;
  left: 15%;
  width: 250px;
}

/* --- Responsive Design --- */

/* Large Desktops (1200px+) */
@media (min-width: 1200px) {
  .logo h1 {
      font-size: 7rem;
      letter-spacing: 8px;
  }
  .blur1 { width: 300px; }
  .blur2 { width: 350px; }
  .cross {
      width: 25px;
      height: 25px;
  }
}

/* Desktop (992px - 1199px) */
@media (max-width: 1199px) {
  .logo h1 {
      font-size: 6rem;
      letter-spacing: 5px;
      left: -40%;
  }
  .logo .line {
      left: -40%;
      height: 2px;
  }
  .blur1 { width: 180px; }
  .blur2 { width: 220px; }
}

/* Tablets (768px - 991px) */
@media (max-width: 991px) {
  .logo h1 {
      font-size: 5.5rem;
      letter-spacing: 4px;
      left: -10%;
  }
  .logo .line {
      left: -10%;
      height: 2px;
  }
  .blur1 { 
      width: 150px;
      right: -40%;
  }
  .blur2 { 
      width: 180px;
      left: 10%;
  }
  .cross1 { 
      top: -40px; 
      left: -40px; 
  }
  .cross2 { 
      bottom: -40px; 
      right: -80px; 
  }
}

/* Small Tablets (768px) */
@media (max-width: 768px) {
  .logo h1 {
      font-size: 5rem;
      letter-spacing: 3px;
      left: -20%;
      line-height: 1.1;
  }
  .logo .line {
      left: -20%;
      height: 2px;
      margin: 6px 0 12px 0;
  }
  .blur-line {
      height: 5px;
      filter: blur(3px);
  }
  .blur1 { 
      width: 120px;
      right: -20%;
      top: 5%;
  }
  .blur2 { 
      width: 140px;
      left: 5%;
      bottom: 5%;
  }
  .cross {
      width: 15px;
      height: 15px;
  }
  .cross1 { 
      top: -30px; 
      left: -30px; 
  }
  .cross2 { 
      bottom: -30px; 
      right: -60px; 
  }
}

/* Mobile Large (480px - 767px) */
@media (max-width: 767px) {
  .logo {
      max-width: 95%;
      left: 0;
  }
  .logo h1 {
      font-size: 4.5rem;
      letter-spacing: 2px;
      left: 0%;
      text-align: center;
  }
  .logo .line {
      left: 0%;
      margin: 5px auto 10px auto;
  }
  .blur1 { 
      width: 100px;
      right: -10%;
      top: 10%;
  }
  .blur2 { 
      width: 120px;
      left: 0%;
      bottom: 10%;
  }
  .cross1 { 
      top: -20px; 
      left: -20px; 
  }
  .cross2 { 
      bottom: -20px; 
      right: -40px; 
  }
}

/* Mobile Medium (375px - 479px) */
@media (max-width: 479px) {
  .hero {
      align-items: flex-start; /* Adjust alignment for smaller screens */
      padding-top: 40vh;
      box-sizing: border-box;
  }
  .logo {
    left: 0;
  }
  .logo h1 {
      font-size: 3rem;
      letter-spacing: 1px;
      line-height: 1;
      text-align: center;
      left: 0;
  }
  .logo .line {
      left: 0;
      margin: 4px auto 8px auto;
      height: 1.5px;
  }
  .blur-line {
      height: 4px;
      filter: blur(2px);
  }
  .blur1 { 
      width: 80px;
      right: 0%;
  }
  .blur2 { 
      width: 90px;
      left: -5%;
  }
  .cross {
      width: 12px;
      height: 12px;
  }
  .cross1 { 
      top: -15px; 
      left: -15px; 
  }
  .cross2 { 
      bottom: -15px; 
      right: -30px; 
  }
}

/* Mobile Small (320px - 374px) */
@media (max-width: 374px) {
  .logo h1 {
      font-size: 2.5rem;
      letter-spacing: 0.5px;
  }
  .blur1 { width: 60px; }
  .blur2 { width: 70px; }
  .cross {
      width: 10px;
      height: 10px;
  }
}

/* Landscape Mobile Orientation */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
      padding: 10px 20px;
      align-items: center;
  }
  .logo h1 {
      font-size: 2.5rem;
      line-height: 0.9;
  }
  .logo .line {
      margin: 3px auto 6px auto;
  }
  .cross1 { 
      top: -15px; 
      left: -15px; 
  }
  .cross2 { 
      bottom: -15px; 
      right: -30px; 
  }
}
