/* ================================================
   BECICI PARAGLIDING — HOME PAGE
   Airy · Fun · Friendly
   Bootstrap 5 / Helix Ultimate / Font Awesome 6
   ================================================ */

/* ── FontAwesome: fix missing @font-face in Helix's bundled fontawesome.min.css ── */
@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("/media/vendor/fontawesome-free/webfonts/fa-solid-900.woff2?v=4a6591") format("woff2");
}
@font-face {
  font-family: "Font Awesome 6 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/media/vendor/fontawesome-free/webfonts/fa-brands-400.woff2?v=4a6591") format("woff2");
}
.fas, .fa-solid {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block !important;
  font-style: normal !important;
  font-variant: normal !important;
  line-height: 1 !important;
}
.fas::before, .fa-solid::before { content: var(--fa, '') !important; }
.fab, .fa-brands {
  font-family: "Font Awesome 6 Brands" !important;
  font-weight: 400 !important;
  display: inline-block !important;
  font-style: normal !important;
}
.fab::before, .fa-brands::before { content: var(--fa, '') !important; }

/* ── Design tokens ── */
:root {
  --beci-orange:    #F97316;
  --beci-orange-d:  #EA6A0A;
  --beci-sky:       #0EA5E9;
  --beci-sky-d:     #0284C7;
  --beci-sun:       #FBBF24;
  --beci-cream:     #FFF7ED;
  --beci-dark:      #0F172A;
  --beci-muted:     #64748B;
  --beci-radius:    1.25rem;
  --beci-radius-lg: 2rem;
  --beci-shadow:    0 4px 24px rgba(15,23,42,.09);
  --beci-shadow-lg: 0 10px 40px rgba(15,23,42,.15);
}

/* ── Hero ── */
.beci-hero {
  position: relative;
  min-height: 88vh;
  background: url('/images/pics/stories/activities/becici_standard_paragliding_G0022947.jpg') center 30% / cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.beci-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(14,165,233,.68) 0%,
    rgba(249,115,22,.52) 60%,
    rgba(251,191,36,.38) 100%
  );
}
.beci-hero-content { position: relative; z-index: 2; }
.beci-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgba(255,255,255,.20);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.38);
  color: #fff;
  border-radius: 2rem;
  padding: .35rem 1.1rem;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.beci-hero-title {
  font-size: clamp(1.9rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  text-shadow: 0 2px 20px rgba(0,0,0,.28);
}
.beci-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.92);
  max-width: 560px;
  margin: 0 auto;
  text-shadow: 0 1px 8px rgba(0,0,0,.18);
}
.beci-btn-sun {
  background: var(--beci-sun) !important;
  border-color: var(--beci-sun) !important;
  color: var(--beci-dark) !important;
  font-weight: 700;
  font-size: 1.05rem;
  padding: .8rem 2.2rem;
  border-radius: 3rem !important;
  box-shadow: 0 8px 28px rgba(251,191,36,.55);
  transition: transform .2s, box-shadow .2s;
}
.beci-btn-sun:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(251,191,36,.70);
}
.beci-scroll-down {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,.65);
  font-size: .78rem;
  text-align: center;
  animation: beci-bounce 2.2s infinite;
}
@keyframes beci-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ── Stats strip ── */
.beci-stats-strip { background: var(--beci-sky); }
.beci-stat-val {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}
.beci-stat-lbl {
  font-size: .82rem;
  color: rgba(255,255,255,.82);
  margin-top: .2rem;
}

/* ── Section labels & titles ── */
.beci-label {
  display: inline-block;
  background: rgba(14,165,233,.11);
  color: var(--beci-sky-d);
  border-radius: 2rem;
  padding: .25rem .9rem;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  margin-bottom: .7rem;
}
.beci-title {
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  font-weight: 800;
  color: var(--beci-dark);
  margin-bottom: .45rem;
}

/* ── Feature cards ── */
.beci-feature {
  background: #fff;
  border-radius: var(--beci-radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--beci-shadow);
  border: 1.5px solid #F1F5F9;
  transition: transform .22s, box-shadow .22s;
  height: 100%;
}
.beci-feature:hover { transform: translateY(-4px); box-shadow: var(--beci-shadow-lg); }
.beci-feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.fi-sky    { background: rgba(14,165,233,.12); color: var(--beci-sky-d); }
.fi-sun    { background: rgba(251,191,36,.15); color: #B45309; }
.fi-green  { background: rgba(34,197,94,.12);  color: #15803D; }
.fi-orange { background: rgba(249,115,22,.12); color: var(--beci-orange); }
.beci-feature-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--beci-dark);
  margin-bottom: .35rem;
}
.beci-feature-desc { font-size: .88rem; color: var(--beci-muted); margin: 0; }

/* ── Gallery images ── */
.beci-img {
  border-radius: var(--beci-radius);
  object-fit: cover;
  width: 100%;
  box-shadow: var(--beci-shadow);
}

/* ── How it works steps ── */
.beci-step-num {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--beci-orange);
  color: #fff;
  font-size: 1.35rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(249,115,22,.38);
}

/* ── Deal banner ── */
.beci-deal {
  background: linear-gradient(135deg, var(--beci-orange) 0%, #F43F5E 100%);
  border-radius: var(--beci-radius-lg);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.beci-deal::after {
  content: '\f6e5';
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  font-size: 9rem;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%) rotate(-12deg);
  opacity: .10;
  line-height: 1;
  pointer-events: none;
}
.beci-deal-price {
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1;
  color: var(--beci-sun);
  text-shadow: 0 2px 12px rgba(0,0,0,.18);
}
.beci-deal-cur { font-size: 1.7rem; font-weight: 700; vertical-align: super; }

/* ── News cards ── */
.beci-news {
  border-radius: var(--beci-radius);
  overflow: hidden;
  box-shadow: var(--beci-shadow);
  border: none;
  transition: transform .22s, box-shadow .22s;
}
.beci-news:hover { transform: translateY(-4px); box-shadow: var(--beci-shadow-lg); }
.beci-news-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.beci-news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s;
}
.beci-news:hover .beci-news-thumb img { transform: scale(1.06); }
.beci-news-tag {
  position: absolute;
  top: .7rem;
  left: .7rem;
  background: var(--beci-sky);
  color: #fff;
  border-radius: 2rem;
  padding: .18rem .65rem;
  font-size: .7rem;
  font-weight: 700;
}

/* ── Activity cards ── */
.beci-act {
  border-radius: var(--beci-radius);
  overflow: hidden;
  box-shadow: var(--beci-shadow);
  display: block;
  text-decoration: none !important;
  position: relative;
}
.beci-act-thumb { aspect-ratio: 4/3; overflow: hidden; }
.beci-act-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s;
}
.beci-act:hover .beci-act-thumb img { transform: scale(1.08); }
.beci-act-label {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,.72) 30%, transparent 70%);
  display: flex;
  align-items: flex-end;
  padding: 1.1rem;
}
.beci-act-name { color: #fff; font-size: .93rem; font-weight: 700; margin: 0; line-height: 1.3; }

/* ── Final CTA ── */
.beci-cta-box {
  background: linear-gradient(135deg, var(--beci-sky) 0%, var(--beci-sky-d) 100%);
  border-radius: var(--beci-radius-lg);
}
.beci-btn-ghost {
  border: 2px solid rgba(255,255,255,.65) !important;
  color: #fff !important;
  border-radius: 3rem !important;
  padding: .75rem 2rem !important;
  font-weight: 600 !important;
  background: transparent !important;
  transition: background .2s, border-color .2s !important;
}
.beci-btn-ghost:hover {
  background: rgba(255,255,255,.14) !important;
  border-color: #fff !important;
}

/* ── Responsive ── */
@media (max-width: 767px) {
  .beci-hero {
    min-height: 78vh;
    background-image: url('/images/pics/stories/activities/becici_standard_paragliding_G0022947-800-mobile.jpg');
  }
  .beci-deal-price { font-size: 2.8rem; }
  .beci-stat-val { font-size: 1.65rem; }
}
