/* General styles */
body {
  scroll-behavior: smooth;
}

/* Hero section with background image */
.hero {
  position: relative;
  background: url('../img/dji-t30.jpg') center center/cover no-repeat;
  height: 100vh;
  overflow: hidden;
}

/* Dark overlay for text readability */
.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* Text shadow for clarity */
.text-shadow {
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

.hero .container {
  position: relative;
  z-index: 2;
}

/* Fancybox buttons & general tweaks */
.btn-light {
  border-radius: 50px;
  font-weight: 500;
}