

body {
  padding-top: 80px; /* Adjust this based on navbar height */
}

/* .hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1; 
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
} */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
@media (max-width: 600px) {
  .hero {
    height: auto;
  }
}
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero-media video {
  width: 100%;
  /*height: 100%;*/
  /* filter: brightness(1.1) contrast(1.0) saturate(1.8); */
  /*object-fit: fill;*/
  display: block;
  opacity: 0;
  transition: opacity 1s ease; 
}
@media (max-width: 768px) {
  .hero-media {
    position: relative;
  }
  .hero-media video {
    height: 100%;
    object-fit: cover;
  }
}
.hero-media video.visible {
  opacity: 1;
}

/* === Actual Site View Tag === */
.site-view-tag {
  position: absolute;
  top: 20px;
  right: -200px;
  background: #1f2d5ed4;
  color: #fff;
  padding: 8px 18px;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 18px 18px 18px 18px;
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  opacity: 0;
  animation: slideInTag 1.2s ease-out 0.8s forwards;
  z-index: 10;
}
@media (max-width: 768px) {
  .site-view-tag {
    font-size: 0.95rem;
  }
}
@keyframes slideInTag {
  from {
    right: -200px;
    opacity: 0;
  }
  to {
    right: 20px;
    opacity: 1;
  }
}

/* === Page Loader === */
.page-loader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 600s ease;
}
.page-loader.fade-out {
  opacity: 0;
  visibility: hidden;
}
.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.loader-logo {
  width: 320px;
  height: auto;
  animation: fadeIn 1s ease-in-out;
}
@media (max-width: 768px) {
  .loader-logo {
    width: 250px;
  }
}
.spinner {
  width: 40px;
  height: 40px;
  margin-top: 30px;
  border: 6px solid rgba(255, 255, 255, 0.3);
  border-top: 6px solid #740d0d;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Hide content until ready */
body.loading {
  overflow: hidden;
  visibility: hidden;
}
body.ready {
  overflow: auto;
  visibility: visible;
}