/*
Theme Name: Hello Elementor Child
Template: hello-elementor
Version: 1.0.0
*/


/* ========== HERO ========== */
.xcp-hero{
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #0b0f14;
}

.xcp-hero__bg{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.55)),
    url("https://xcorepro.gr/wp-content/uploads/2026/03/2028993-DJI-6937224109933-02-800x800-1.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.xcp-hero__content{
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 48px));
  margin-inline: auto;
  text-align: center;
  color: #fff;
  padding: 72px 0;
}

.xcp-hero__eyebrow{
  margin: 0 0 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
  opacity: .85;
}

.xcp-hero__title{
  margin: 0 0 10px;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  font-weight: 700;
}

.xcp-hero__subtitle{
  margin: 0 auto 24px;
  width: min(680px, 100%);
  font-size: 16px;
  line-height: 1.6;
  opacity: .9;
}

.xcp-hero__actions{
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Buttons */
.xcp-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .15s ease, opacity .15s ease, background .15s ease;
}

.xcp-btn:hover{ transform: translateY(-1px); }

.xcp-btn--primary{
  background: #1a73e8;
  color: #fff;
}

.xcp-btn--ghost{
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
}

