/* Import Dancing Script once */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&display=swap');

/* Reset & global styles */
html, body {
  margin: 0;
  padding: 0;
  background: #fff;
  color: #666;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Full-width video container */
.video-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

/* Video styling */
.video-fullwidth {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  z-index: 0;
}

/* Dark overlay for contrast */
.video-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1;
}

/* Text overlay */
.video-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  padding: 1rem;
}

/* Unified titles (hero, about, welcome, homepage h1) */
.hero-title,
.about-title,
h1 {
  font-family: 'Dancing Script', cursive;
  font-weight: 700;
  color: #fff !important;
  margin-bottom: 1rem;
}

/* Font sizes */
.hero-title,
h1 {
  font-size: 5rem; /* matches hero video title */
}

.welcome-title {
  font-size: 2.5rem; /* slightly smaller for subsections */
  font-family: 'Dancing Script', cursive;
  font-weight: 700;
  color: #666 !important;
  margin-bottom: 1rem;
}

.about-title {
  font-size: 2.5rem; /* slightly smaller for subsections */
  font-family: 'Dancing Script', cursive;
  font-weight: 700;
  color: #666 !important;
  margin-bottom: 1rem;
}


/* Hero subtitle */
.hero-subtitle {
  font-size: 1.6rem;
  color: #fff !important;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  margin-bottom: 2rem;
}

/* Dropcap styling */
.dropcap {
  float: left;
  font-size: 3rem;
  line-height: 1;
  margin-right: 0.2rem;
  font-weight: 700;
  color: #666;
}

/* Buttons */
.btn-outline-light {
  border-width: 2px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Paragraph text */
#content p {
  color: #666;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  #slider {
    height: 50vh;
  }
  .hero-title,
  .about-title,
  h1 {
    font-size: 3rem;
  }
  .hero-subtitle {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .hero-title,
  .about-title,
  h1 {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .video-overlay {
    padding: 0.5rem;
  }
}
/* About page body text color */
#about p {
  color: #666;
}
/* Page Logo */
.page-logo img {
  max-height: 90px !important;
}
/* Image banner */
.image-banner {
  width: 100%;
  height: 100vh;
  background: url('/storage/video/clip-1.jpg') center center / cover no-repeat;
  position: relative;
  overflow: hidden;
}

/* Dark overlay for better text readability */
.image-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* darker overlay */
  z-index: 0;
}

/* Overlay text */
.video-overlay {
  position: relative; /* relative to section */
  z-index: 1;         /* above overlay */
  text-align: center;
  color: #fff;
  padding: 3rem 1rem; /* more padding top and bottom */
}

/* Responsive text */
.hero-title {
  font-family: 'Dancing Script', cursive;
  font-weight: 700;
  font-size: 5rem;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.6rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  margin-bottom: 2rem;
}

.btn-outline-light {
  border-width: 2px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2rem; /* add extra space under button */
}

/* Mobile adjustment if you want even more spacing */
@media (max-width: 576px) {
  .btn-outline-light {
    margin-bottom: 4rem;
  }
}


/* Mobile adjustments */
@media (max-width: 576px) {
  .hero-title { font-size: 2rem; }
  .hero-subtitle { font-size: 1rem; }
  .video-overlay { padding: 5rem 1rem; } /* extra top & bottom padding */
}
/* Mobile / small screens */
@media (max-width: 576px) {
  .btn-outline-light {
    background-color: #fff;   /* solid white background */
    color: #000 !important;   /* black text for contrast */
    border: 2px solid #fff;   /* keep border white */
    margin-bottom: 4rem;      /* extra spacing under button */
  }
}