/* ============================================
   HOME PAGE — HERO + PANELS + SECTIONS
   Applies ONLY to index.html
============================================ */

/* ------------------------------
   FULLSCREEN HERO SECTION
------------------------------ */
.hero {
  height: 100vh;
  background: url('../../images/hero-bg.jpg') center/cover no-repeat fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
}

/* Dark overlay */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
  z-index: 1;
}

/* Ensures text sits above overlay */
.hero h1,
.hero p,
.hero .hero-buttons {
  position: relative;
  z-index: 2;
}

/* Title */
.hero h1 {
  font-size: 3.5rem;
  color: #22EEEE;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

/* Subtitle */
.hero p {
  font-size: 1.3rem;
  max-width: 700px;
  color: #2FC2C2;
  margin-bottom: 30px;
}

/* Buttons row */
.hero-buttons {
  display: flex;
  gap: 20px;
}


/* ------------------------------
   SECTIONS (blocks)
------------------------------ */
.section-block {
  padding: 80px 20px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.section-block h2 {
  font-size: 2.4rem;
  color: #22EEEE;
  margin-bottom: 20px;
}

.section-block p {
  color: #2FC2C2;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 50px;
}


/* ------------------------------
   FULL-WIDTH PANEL
------------------------------ */
.panel {
  background: url('../../images/panel-bg.jpg') center/cover no-repeat;
  padding: 120px 20px;
  text-align: center;
  position: relative;
}

/* Panel dark overlay */
.panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
  z-index: 1;
}

.panel h2,
.panel p {
  position: relative;
  z-index: 2;
}


/* ------------------------------
   RESPONSIVE ADJUSTMENTS
------------------------------ */
@media (max-width: 768px) {

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }
}
