/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BASE */
body {
  font-family: 'Poppins', sans-serif;
  color: #111;
  line-height: 1.6;
}

/* HEADER */
.site-header {
  padding: 20px;
  text-align: center;
  font-weight: 600;
  letter-spacing: 2px;
  position: relative;
  z-index: 10;
  background: #fff;
  font-size: 26px;
}

.spacer {
  height: 80px;
  background: #fff;
}

/* ======================
   HERO SECTION
====================== */
.hero {
  position: relative;
  height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero .bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 36px;
  line-height: 1.25;
  margin-bottom: 20px;
}

.hero-content p {
  font-family: 'Inter', sans-serif;
}

/* OVERLAYS */
.overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.overlay.dark {
  background: rgba(0, 0, 0, 0.7);
}

.overlay.light {
  background: rgba(0, 0, 0, 0.45);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding: 12px 28px;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 14px;
}

.btn.light {
  background: #fff;
  color: #000;
}

/* ======================
   IMAGE BANNERS (SECTION 1 & 3)
====================== */
.image-banner {
  position: relative;
  height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.image-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.image-banner .overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.image-banner .center-text {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 900px;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

.image-banner .center-text h2 {
  font-size: 42px;
  font-weight: 600;
}

.image-banner .center-text p {
  max-width: 720px;
  margin: 20px auto 0;
  font-family: 'Inter', sans-serif;
}

/* ======================
   SPLIT SECTIONS (2, 4, 5)
====================== */
.split-section {
  position: relative;
  display: flex;
  min-height: 80vh;
  overflow: hidden;
  background: #000;
  color: #fff;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

/* Subtle background pattern video */
.bg-video.subtle {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  filter: saturate(0.7);
  z-index: 0;
}

.content,
.media {
  position: relative;
  z-index: 1;
  flex: 1;
  padding: 80px;
}

.media img,
.media iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}

/* White buttons on dark sections */
.split-section .btn {
  background: #fff;
  color: #000;
}

/* LISTS */
ul {
  margin-top: 20px;
  padding-left: 20px;
  font-family: 'Inter', sans-serif;
}

/* TYPOGRAPHY */
h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
}

p, li, .address {
  font-family: 'Inter', sans-serif;
}

/* ======================
   MOBILE RESPONSIVENESS
====================== */
@media (max-width: 768px) {

  .hero {
    height: 100vh;
  }

  .hero-content h1 {
    font-size: 26px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .image-banner {
    height: 60vh;
  }

  .image-banner .center-text h2 {
    font-size: 28px;
  }

  .image-banner .center-text p {
    font-size: 15px;
  }

  .split-section,
  .split-section.reverse {
    flex-direction: column;
  }

  .content,
  .media {
    padding: 40px 20px;
  }

  .media iframe {
    height: 280px;
  }

  .btn {
    padding: 14px 26px;
    font-size: 14px;
  }
}
