


/* =========================================
   TAGLINE SYSTEM (ENERGY STYLE)
========================================= */

.tagline-box {
  margin-top: 20px;
  text-align: center;
  position: relative;
}

/* TOP LINE */

.tagline-top {
  display: block;

  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 2px;

  color: rgba(255,255,255,0.85);

  text-transform: uppercase;

  opacity: 0.8;
}

/* BOTTOM LINE (THE HERO) */

.tagline-bottom {
  display: inline-block;

  font-size: 1.6rem;
  font-weight: 700;

  margin-top: 6px;

  letter-spacing: -0.5px;

  /* 🔥 gradient energy text */
  background: linear-gradient(
    90deg,
    var(--green-accent),
    var(--blue-light),
    var(--blue-deep)
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.8);

  /* glow */
  text-shadow:
    0 0 10px rgba(255,255,255,0.25),
    0 0 20px rgba(92,182,230,0.25);

  position: relative;
}

/* ✨ subtle animated shimmer */

.tagline-bottom::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    120deg,
    transparent 20%,
    rgba(255,255,255,0.5),
    transparent 10%
  );

  opacity: 0;
  transform: translateX(-100%);
  pointer-events: none;
}

.tagline-bottom:hover::after {
  opacity: 1;
  animation: shimmer 1.2s ease;
}

.tagline-box::before {
  content: "";
  display: block;

  width: 60px;
  height: 2px;

  margin: 0 auto 10px;

  background: linear-gradient(
    90deg,
    transparent,
    var(--green-accent),
    transparent
  );

  opacity: 0.6;
}

.tagline-bottom {
  margin-top: 2px;   /* 🔥 tighter stack */
  line-height: 1.1;  /* 🔥 reduces internal spacing */
}

.tagline-top {
  line-height: 1.2;  /* keeps it compact */
}

@media (max-width: 768px) {

  .tagline-box {
    margin-top: 10px; /* slightly tighter overall */
  }

  /* TOP LINE */
  .tagline-top {
    font-size: 0.75rem;     /* 🔥 smaller */
    letter-spacing: 1px;    /* 🔥 reduce spread */
    line-height: 1.2;

    white-space: normal;    /* allow safe wrapping */
    padding: 0 10px;        /* prevent edge collision */
  }

  /* BOTTOM LINE */
  .tagline-bottom {
    font-size: 1.2rem;      /* 🔥 scale down */
    letter-spacing: -0.3px;

    line-height: 1.15;
    margin-top: 2px;

    white-space: nowrap;    /* 🔥 keep it ONE line */
  }

}

/* =========================================
   SUBTITLE (SLIDE 3)
========================================= */
.sub-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--blue-deep);
}


/* =========================================
   CONTACT ROW
========================================= */
.contact-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;

  text-decoration: none;
  color: var(--blue-deep);
  font-weight: 500;
}

.contact-item i {
  font-size: 1.2rem;
  color: var(--green-accent);
}


/* =========================================
   DESKTOP CONTACT ALIGNMENT
========================================= */
@media (min-width: 900px) {
  .contact-row {
    align-items: flex-start;
  }
}
