/* ========================================================
   BLACK EAGLE — ADVENTURE CENTER
   Editorial / cinematic styling. HTML untouched.
   ======================================================== */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700;800&family=Bebas+Neue&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --be-red: #d6172a;
  --be-red-deep: #a30f1f;
  --be-red-glow: rgba(214, 23, 42, 0.35);
  --be-ink: #0d0d10;
  --be-ink-soft: #1a1a1f;
  --be-bone: #f6f4ef;
  --be-mist: #ececec;
  --be-line: rgba(13, 13, 16, 0.08);
  --be-shadow-lg: 0 30px 60px -20px rgba(13, 13, 16, 0.25),
  0 10px 30px -10px rgba(13, 13, 16, 0.15);
  --be-shadow-card: 0 20px 40px -20px rgba(13, 13, 16, 0.4);

  --be-font-heading: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --be-font-subheading: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --be-font-body: 'Inter', 'Helvetica Neue', system-ui, sans-serif;
}

/* Optional but recommended — pull in the display font.
   If you can't add <link> tags, drop the @import. */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@400;500;600;700;800&display=swap');

/* BODY TEXT */
body {
  font-family: var(--be-font-body);
}

/* MAIN HEADINGS */
h1,
h2,
h3,
h4,
.hero-section h1.display-1,
.hero-paramotor h1.display-1,
.card h3,
.navbar-brand h4 {
  font-family: var(--be-font-heading) !important;
  font-weight: 400;
  letter-spacing: 0.04em;
}

/* SUBHEADINGS / NAV / BUTTONS / SMALL TITLES */
.navbar-brand small.letter-space,
.navbar-nav .nav-link,
.btn,
.card a.text-danger,
.features-section h6,
.feature-icon + h6 {
  font-family: var(--be-font-subheading) !important;
  font-weight: 700;
  letter-spacing: 0.12em;
}

/* NORMAL PARAGRAPHS */
p,
.lead,
.small,
.card p,
.hero-section .lead,
.hero-paramotor .lead {
  font-family: var(--be-font-body) !important;
}

/* ---- Outer page card — the "magazine spread" ---- */
.be-page-card {
  background: #fff;
  border-radius: 28px;
  box-shadow: var(--be-shadow-lg);
  position: relative;
  overflow: hidden;
}

/* Subtle paper grain on the spread */
.be-page-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
          repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.012) 0 1px, transparent 1px 3px);
  z-index: 0;
}
.be-page-card > * { position: relative; z-index: 1; }

/* Decorative eagle silhouette behind the hero */
.be-page-card::after {
  content: "";
  position: absolute;
  top: 40px;
  left: 38%;
  width: 480px;
  height: 480px;
  background-image: radial-gradient(circle at 30% 30%, rgba(13, 13, 16, 0.05), transparent 60%);
  filter: blur(2px);
  pointer-events: none;
  z-index: 0;
}

/* ============ NAVBAR ============ */
.be-nav {
  background: #fff;
}

.navbar {
  border-bottom: 1px solid var(--be-line);
  backdrop-filter: blur(8px);
}

.navbar-brand .logo-img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  box-shadow: 0 8px 20px -8px rgba(13, 13, 16, 0.4);
  border: 2px solid #fff;
  outline: 1px solid var(--be-line);
  transition: transform 0.5s cubic-bezier(.2, .8, .2, 1);
}
.navbar-brand:hover .logo-img { transform: rotate(-6deg) scale(1.05); }

.navbar-brand h4 {
  font-family: var(--be-font-display);
  letter-spacing: 0.04em;
  font-size: 1.6rem;
  line-height: 1;
}
.navbar-brand small.letter-space {
  letter-spacing: 0.32em;
  font-size: 0.72rem;
  color: #6a6a72;
}

/* Nav links — animated underline */
.navbar-nav .nav-link {
  position: relative;
  color: var(--be-ink);
  padding: 0.5rem 0.25rem !important;
  transition: color 0.25s ease;
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 2px;
  height: 2px;
  background: var(--be-red);
  transition: right 0.35s cubic-bezier(.2, .8, .2, 1);
}
.navbar-nav .nav-link:hover { color: var(--be-red); }
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.text-danger::after { right: 0; }

/* ============ BUTTONS ============ */
.btn {
  border-radius: 999px !important;
  font-family: var(--be-font-body);
  letter-spacing: 0.12em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  will-change: transform;
}

.btn-danger {
  background: linear-gradient(135deg, var(--be-red) 0%, var(--be-red-deep) 100%) !important;
  border: none !important;
  box-shadow: 0 12px 28px -10px var(--be-red-glow),
  inset 0 -2px 0 rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}
.btn-danger::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.25) 50%, transparent 65%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.btn-danger:hover { transform: translateY(-2px); }
.btn-danger:hover::before { transform: translateX(100%); }

.btn-outline-dark {
  border: 2px solid var(--be-ink) !important;
  color: var(--be-ink) !important;
  background: transparent;
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: color 0.35s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: none;
}
.btn-outline-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--be-ink);
  transform: translateY(101%);
  transition: transform 0.35s cubic-bezier(.2, .8, .2, 1);
  z-index: -1;
}
.btn-outline-dark:hover {
  color: #fff !important;
  background: transparent !important;   /* let ::before do the fill */
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -10px rgba(13, 13, 16, 0.35);
}
.btn-outline-dark:hover::before {
  transform: translateY(0);
}

/* ============ HERO ============ */
.hero-section {
  background:
          linear-gradient(90deg, rgba(255,255,255,.95), rgba(255,255,255,.65));
          
  position: relative;
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.hero-section h1.display-1 {
  font-family: var(--be-font-display);
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.hero-section h1 .text-danger {
  color: var(--be-red) !important;
  background-image:
          linear-gradient(180deg, var(--be-red), var(--be-red-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}

/* Distressed underline accent under the lead paragraph */
.hero-section .lead {
  font-size: 1.05rem;
  color: #3a3a42;
  max-width: 28ch;
  position: relative;
  padding-top: 1rem;
}
.hero-section .lead::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 64px;
  height: 4px;
  background: var(--be-red);
  border-radius: 2px;
}

/* Floating hero images */
.hero-section img {
  filter: drop-shadow(0 30px 30px rgba(13, 13, 16, 0.25));
  animation: none;
}
.hero-section img:first-of-type { animation-delay: -3s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ============ SERVICE CARDS ============ */

.service-card {
  min-height: 280px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.service-card .row {
  min-height: 280px;
  position: relative;
  z-index: auto !important;
}

/* Text column above everything */
.service-card .col-6:first-child {
  position: relative;
  z-index: 4;
}

.service-card .card-body {
  position: relative;
  z-index: 5;
}

/* Make image cover the full card */
.service-card .service-image-col {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  z-index: 1 !important;
  overflow: hidden;
}

.service-card-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center 10% !important;
  display: block;
}

/* Gradient above image, below text */
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

/* Remove old red glow from bg-dark card */
.service-card::before {
  display: none !important;
}

/* Black gradient for motorcycle */
.service-card-motor::after {
  background: linear-gradient(
          90deg,
          rgba(0, 0, 0, 0.98) 0%,
          rgba(0, 0, 0, 0.90) 32%,
          rgba(0, 0, 0, 0.62) 55%,
          rgba(0, 0, 0, 0.24) 78%,
          rgba(0, 0, 0, 0.02) 100%
  );
}

/* White gradient for paramotor */
.service-card-paramotor::after {
  background: linear-gradient(
          90deg,
          rgba(255, 255, 255, 0.98) 0%,
          rgba(255, 255, 255, 0.92) 32%,
          rgba(255, 255, 255, 0.65) 55%,
          rgba(255, 255, 255, 0.25) 78%,
          rgba(255, 255, 255, 0.02) 100%
  );
}

/* Hover */
.service-card:hover .service-card-img {
  transform: scale(1.05);
  filter: contrast(1.05) saturate(1.05);
}

.card:hover .col-6.text-end img {
  transform: scale(1.05) !important;
}

/* Mobile */
@media (max-width: 575.98px) {
  .service-card {
    min-height: 220px;
  }

  .service-card .row {
    min-height: 220px;
  }

  .service-card .card-body {
    padding: 1.25rem !important;
  }

  .service-card h3 {
    font-size: 1.5rem;
    line-height: 1.05;
  }

  .service-card p {
    font-size: 0.78rem;
    max-width: 18ch;
  }

  .service-card a {
    font-size: 0.68rem;
  }

  .service-card-motor::after {
    background: linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.98) 0%,
            rgba(0, 0, 0, 0.88) 45%,
            rgba(0, 0, 0, 0.48) 72%,
            rgba(0, 0, 0, 0.06) 100%
    );
  }

  .service-card-paramotor::after {
    background: linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(255, 255, 255, 0.90) 45%,
            rgba(255, 255, 255, 0.52) 72%,
            rgba(255, 255, 255, 0.06) 100%
    );
  }
}

/* ============ FEATURE STRIP ============ */
.features-title {
  font-family: var(--be-font-heading) !important;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  letter-spacing: 0.06em;
}

.features-section .row {
  box-shadow: 0 12px 30px -16px rgba(13, 13, 16, 0.18);
}

.feature-col {
  border: none !important;
  border-right: 1px solid var(--be-line) !important;
  transition: background 0.28s ease;
  cursor: default;
}
.feature-col:last-child {
  border-right: none !important;
}
.feature-col:hover {
  background: rgba(214, 23, 42, 0.04);
}

.features-section h6 {
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--be-ink);
}

.feature-col:hover .feature-icon {
  background: var(--be-red);
  color: #fff !important;
  transform: rotate(-8deg) scale(1.08);
}

/* ============ MOBILE TUNING ============ */
@media (max-width: 991.98px) {
  .be-page-card::after { display: none; }
  .hero-section { padding-top: 2rem !important; padding-bottom: 2rem !important; }
  .hero-section img { animation: none; }
  .navbar-collapse {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--be-line);
  }
}

@media (max-width: 575.98px) {
  .be-page-card { border-radius: 18px !important; }
  .hero-section h1.display-1 { font-size: 2.6rem; }
  .btn { padding: 0.75rem 1.25rem !important; font-size: 0.85rem; }
}

/* ============ ACCESSIBILITY ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* Focus states for keyboard users */
.btn:focus-visible,
.nav-link:focus-visible,
.navbar-brand:focus-visible {
  outline: 3px solid var(--be-red);
  outline-offset: 3px;
}

.hero-paramotor {
  position: relative;
  min-height: 620px;
  overflow: hidden;

  background-image:
          linear-gradient(
                  90deg,
                  rgba(255, 255, 255, 0.98) 0%,
                  rgba(255, 255, 255, 0.92) 24%,
                  rgba(255, 255, 255, 0.50) 44%,
                  rgba(255, 255, 255, 0.08) 70%,
                  rgba(255, 255, 255, 0.00) 100%
          ),
          url("/Images/hero.png");

  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.min-vh-hero {
  min-height: 540px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-paramotor h1.display-1 {
  font-family: var(--be-font-display);
  font-size: clamp(3.4rem, 7vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.hero-paramotor .lead {
  max-width: 31ch;
  color: #202026;
  font-weight: 500;
}

/* Strong red underline under text */
.hero-paramotor .lead::before {
  content: "";
  display: block;
  width: 70px;
  height: 5px;
  background: var(--be-red);
  border-radius: 99px;
  margin-bottom: 1rem;
}

/* Remove old floating image effect */
.hero-section img {
  animation: none !important;
}

/* Tablet */
@media (max-width: 991.98px) {
  .hero-paramotor {
    min-height: 560px;

    background-image:
            linear-gradient(
                    90deg,
                    rgba(255, 255, 255, 0.98) 0%,
                    rgba(255, 255, 255, 0.82) 48%,
                    rgba(255, 255, 255, 0.20) 100%
            ),
            url("/Images/hero.png");

    background-position: center right;
  }

  .min-vh-hero {
    min-height: 480px;
  }
}

/* Phone */
@media (max-width: 575.98px) {
  .hero-paramotor {
    min-height: 610px;
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;

    background-image:
            linear-gradient(
                    180deg,
                    rgba(255, 255, 255, 0.96) 0%,
                    rgba(255, 255, 255, 0.88) 42%,
                    rgba(255, 255, 255, 0.20) 100%
            ),
            url("/Images/hero-mobile2.png");

    background-position: center bottom;
  }

  .min-vh-hero {
    min-height: 530px;
    align-items: flex-start !important;
  }
}

/* BOOKING PAGE */

.booking-page {
  background: #f4f4f4;
}

.booking-calendar-wrapper {
  min-height: 620px;
  position: relative;
  overflow: hidden;
}

/* Covers the "Powered by Cal.com" footer inside the iframe */
.booking-calendar-wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 48px;
  background: #fff;
  z-index: 10;
  pointer-events: none;
  border-radius: 0 0 16px 16px;
}

#my-cal-inline-paragliding-session,
#my-cal-inline-quad-bike-rent {
  width: 100%;
  height: 100%;
  min-height: 620px;
  border-radius: 16px;
  overflow: hidden;
}

.booking-calendar-wrapper iframe {
  border-radius: 16px !important;
}

@media (max-width: 576px) {
  .booking-calendar-wrapper,
  #my-cal-inline-paragliding-session,
  #my-cal-inline-quad-bike-rent {
    min-height: 700px;
  }

  .hero-paramotor h1.display-1 {
    font-size: 3rem;
  }

  .hero-paramotor .lead {
    max-width: 28ch;
    font-size: 1rem;
  }
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(214, 23, 42, 0.08);
  margin-bottom: 0.65rem;
  font-size: 1.6rem;
  transition: transform 0.4s cubic-bezier(.2, .8, .2, 1),
  background 0.3s ease,
  color 0.3s ease;
}

/* ============ FOOTER ============ */

.be-footer {
  background: #0d0d12;
  border-top: 3px solid var(--be-red);
  margin-top: 40px;
  padding-top: 55px;
}

.be-footer-logo {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

.be-footer-sub {
  letter-spacing: 0.28em;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.55);
}

.be-footer-desc {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.65;
}

.be-footer-heading {
  font-family: var(--be-font-subheading) !important;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.1rem;
}

.be-footer-link {
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  font-size: 0.9rem;
  display: block;
  transition: color 0.22s ease;
}
.be-footer-link:hover {
  color: #fff;
}

.be-footer-contact-link {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 0.88rem;
  display: block;
  transition: color 0.22s ease;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  min-width: 0;
  max-width: 100%;
}

.be-footer-contact-link:hover {
  color: #fff;
}

.be-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
  flex-shrink: 0;
}
.be-social-btn:hover {
  background: var(--be-red);
  color: #fff;
  transform: translateY(-3px);
}

.be-footer-hr {
  border-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 1.25rem;
  margin-top: 0;
}

.be-footer-copy {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8rem;
}

/* ============ BOOKING INFO PANEL ============ */
.booking-info-panel {
  position: relative;
  min-height: 540px;
  background: #0d0d12;
}

.booking-info-paramotor {
  background-image: url('/Images/paramotor.png');
  background-size: cover;
  background-position: center;
}

.booking-info-motor {
  background-image: url('/Images/motor.png');
  background-size: cover;
  background-position: center;
}

.booking-info-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(8, 8, 12, 0.94) 0%, rgba(8, 8, 12, 0.84) 100%);
  z-index: 1;
}

.booking-info-body {
  position: relative;
  z-index: 2;
}

.booking-info-logo {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.booking-brand-name {
  font-family: var(--be-font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 1;
}

.booking-brand-sub {
  letter-spacing: 0.26em;
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.58);
}

.booking-info-desc {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 34ch;
}

.booking-info-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  transition: background 0.22s ease;
}
.booking-info-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.booking-info-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(214, 23, 42, 0.2);
  color: var(--be-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  transition: background 0.22s ease, color 0.22s ease;
}
.booking-info-item:hover .booking-info-icon-wrap {
  background: var(--be-red);
  color: #fff;
}

.booking-info-label {
  color: var(--be-red);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--be-font-subheading);
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.booking-info-value {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
}

.booking-breadcrumb-link {
  color: #888;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s ease;
}
.booking-breadcrumb-link:hover { color: var(--be-red); }

.booking-breadcrumb-sep { color: #ccc; font-size: 0.7rem; }

.booking-breadcrumb-current {
  color: #111;
  font-size: 0.85rem;
  font-weight: 600;
}

.booking-calendar-title {
  font-family: var(--be-font-heading) !important;
  letter-spacing: 0.06em;
  font-size: 1.3rem;
  color: var(--be-ink);
}

/* ============ BOOKING CONFIRMED PAGE ============ */
.bc-page {
  min-height: 100vh;
  background: #f2f2f4;
}

.bc-card {
  max-width: 680px;
}

.bc-header {
  background: #0d0d12;
  border-bottom: 3px solid var(--be-red);
}

.bc-logo {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

.bc-brand-name {
  font-family: var(--be-font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 1;
}

.bc-brand-sub {
  letter-spacing: 0.26em;
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.58);
}

.bc-success {
  background: #fff;
}

.bc-check-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(214, 23, 42, 0.1);
  border: 2px solid var(--be-red);
  color: var(--be-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
}

.bc-title {
  font-family: var(--be-font-heading) !important;
  letter-spacing: 0.06em;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--be-ink);
}

.bc-subtitle {
  color: #6a6a78;
  font-size: 0.9rem;
  max-width: 38ch;
  margin: 0 auto;
  line-height: 1.6;
}

.bc-body {
  background: #fff;
}

.bc-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid #eee;
}

.bc-label {
  font-family: var(--be-font-subheading);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--be-red);
  font-size: 0.8rem;
  min-width: 110px;
  padding-top: 0.1rem;
}

.bc-value {
  flex: 1;
  min-width: 180px;
  color: #222;
}

.bc-badge {
  font-family: var(--be-font-subheading);
  letter-spacing: 0.08em;
  font-size: 0.68rem;
  padding: 0.25rem 0.55rem;
  border-radius: 4px;
  font-weight: 700;
}

.bc-badge-host {
  background: rgba(214, 23, 42, 0.12);
  color: var(--be-red);
}

.bc-badge-guest {
  background: rgba(13, 13, 16, 0.08);
  color: #444;
}

.bc-footer-bar {
  background: #f7f7f9;
  border-top: 1px solid #e8e8e8;
}

.bc-help-link {
  color: #888;
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s ease;
}
.bc-help-link span {
  color: #111;
  font-weight: 600;
}
.bc-help-link:hover { color: var(--be-red); }
.bc-help-link:hover span { color: var(--be-red); }

/* ============ GALLERY PAGE ============ */

.gallery-page {
  width: 100%;
  overflow: hidden;
}

/* NAVBAR */
.gallery-navbar {
  min-height: 82px;
  border-bottom: 1px solid rgba(13, 13, 16, 0.08);
  position: relative;
  z-index: 20;
}

.logo-img { width: 58px; height: 58px; object-fit: cover; }

.gallery-logo-title { letter-spacing: 0.02em; font-size: 1.45rem; }

.gallery-logo-subtitle {
  letter-spacing: 0.45em;
  font-size: 0.68rem;
  color: #6d6d76;
}

.gallery-nav-link {
  position: relative;
  color: #111218 !important;
  padding: 0.75rem 0.25rem !important;
}

.gallery-nav-link.active,
.gallery-nav-link:hover { color: var(--be-red) !important; }

.gallery-nav-link.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 5px;
  width: 58px;
  height: 3px;
  background: var(--be-red);
  transform: translateX(-50%);
}

.gallery-book-btn {
  border-radius: 999px;
  padding: 0.85rem 1.7rem;
  box-shadow: 0 16px 28px -16px var(--be-red-glow);
}

/* HERO */
.gallery-hero {
  min-height: 265px;
  position: relative;
  display: flex;
  align-items: center;
  background:
          linear-gradient(
                  90deg,
                  rgba(255, 255, 255, 0.99) 0%,
                  rgba(255, 255, 255, 0.94) 29%,
                  rgba(255, 255, 255, 0.46) 55%,
                  rgba(255, 255, 255, 0.04) 100%
          ),
          url("/Images/hero.png");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.gallery-hero-content {
  padding-left: clamp(2rem, 4vw, 4rem);
  padding-right: 2rem;
  max-width: 740px;
}

.gallery-hero-title {
  font-family: var(--be-font-heading);
  font-weight: 900;
  font-size: clamp(3.3rem, 6.2vw, 5.5rem);
  line-height: 0.95;
  color: var(--be-ink);
  margin-bottom: 1.2rem;
}

.gallery-hero-title span { color: var(--be-red); }

.gallery-hero-line {
  width: 62px;
  height: 3px;
  background: var(--be-red);
  margin-bottom: 1rem;
}

.gallery-hero-text {
  max-width: 520px;
  font-size: 1.2rem;
  line-height: 1.45;
  color: #22232b;
  margin: 0;
}

/* WHITE CURVE AREA */
.gallery-content-section {
  position: relative;
  background: #fff;
  margin-top: -1px;
  padding-top: 2rem;
  padding-bottom: 3rem;
}

.gallery-content-section::before {
  content: "";
  position: absolute;
  top: -35px;
  right: 0;
  width: 46%;
  height: 70px;
  background: #fff;
  border-top-left-radius: 80px;
  z-index: 2;
}

.gallery-section-title {
  position: relative;
  z-index: 3;
  margin-bottom: 1.3rem;
}

.gallery-section-title h2 {
  font-family: var(--be-font-heading);
  font-size: 2rem;
  line-height: 0.95;
  color: var(--be-ink);
}

.gallery-small-line {
  width: 46px;
  height: 3px;
  background: var(--be-red);
  display: inline-block;
}

/* ============ COVERFLOW STAGE ============ */
.gallery-stage {
  position: relative;
  max-width: 1200px;
  height: 470px;
  margin: 1rem auto 0;
  overflow: hidden;          /* clips the peeking side cards cleanly */
}

.stage-track { position: absolute; inset: 0; }

.stage-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(700px, 84vw);
  height: 390px;
  border-radius: 1.1rem;
  overflow: hidden;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  box-shadow: 0 22px 55px -25px rgba(13, 13, 16, 0.55);
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1),
  opacity   0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

/* center card */
.stage-card.is-active {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  z-index: 3;
  pointer-events: auto;
}

/* side peeking cards — tweak the 78% to show more/less peek */
.stage-card.is-prev {
  transform: translate(calc(-50% - 78%), -50%) scale(0.85);
  opacity: 0.5;
  z-index: 2;
  cursor: pointer;
}

.stage-card.is-next {
  transform: translate(calc(-50% + 78%), -50%) scale(0.85);
  opacity: 0.5;
  z-index: 2;
  cursor: pointer;
}

.stage-card.is-hidden {
  transform: translate(-50%, -50%) scale(0.7);
  opacity: 0;
}

.stage-card img { width: 100%; height: 100%; object-fit: cover; }

.stage-overlay {
  position: absolute;
  inset: 0;
  background:
          linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.35) 45%, rgba(0,0,0,0.05) 78%),
          linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.55) 100%);
}

.stage-body {
  position: absolute;
  left: 7%;
  right: 7%;
  bottom: 34px;
  z-index: 2;
  color: #fff;
}

.stage-badge {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--be-font-subheading);
  font-size: 0.72rem;
  padding: 0.55rem 0.8rem;
  border-radius: 0.35rem;
}

.stage-body h3 {
  font-family: var(--be-font-heading);
  text-transform: uppercase;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1;
  margin: 0.9rem 0 0;
}

.stage-line {
  display: block;
  width: 54px;
  height: 3px;
  background: #fff;
  margin: 0.9rem 0;
}

.stage-body p {
  max-width: 46ch;
  font-weight: 500;
  font-size: 1.02rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
}

.stage-count { margin-top: 1.4rem; font-weight: 600; }

/* ARROWS — sit on the seam between center and side cards */
.stage-arrow {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 6;
  box-shadow: 0 10px 26px -10px rgba(13, 13, 16, 0.5);
  transition: transform 0.2s ease;
}

.stage-arrow:hover { transform: translate(-50%, -50%) scale(1.08); }

.stage-arrow-prev { left: calc(50% - min(350px, 42vw)); transform: translate(-50%, -50%); }
.stage-arrow-next { left: calc(50% + min(350px, 42vw)); transform: translate(-50%, -50%); }

/* DOTS */
.stage-dots {
  position: absolute;
  left: 50%;
  bottom: 54px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.stage-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

.stage-dots button.active { background: var(--be-red); }

/* CTA */
.gallery-cta-section { padding: 2rem clamp(1rem, 5vw, 4rem) 0; }

.gallery-cta {
  background: linear-gradient(135deg, #0d0d10, #18181d);
  border-radius: 1.2rem;
  padding: 2rem 2.6rem;
  color: #fff;
  box-shadow: var(--be-shadow-lg);
}

.gallery-cta-icon {
  min-width: 74px;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--be-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 14px 28px -12px var(--be-red-glow);
}

.gallery-cta h3 {
  font-family: var(--be-font-heading);
  font-size: 1.9rem;
  text-transform: uppercase;
  margin: 0 0 0.4rem;
}

.gallery-cta-btn { border-radius: 999px; padding: 0.9rem 1.9rem; }

.gallery-cta-desc {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 991.98px) {
  .gallery-hero { min-height: 360px; }

  .gallery-stage { height: 460px; }

  .stage-card { width: 90vw; height: 380px; }

  /* hide side cards, show only the active one */
  .stage-card.is-prev,
  .stage-card.is-next,
  .stage-card.is-hidden { opacity: 0; pointer-events: none; }

  .stage-arrow-prev { left: 22px; }
  .stage-arrow-next { left: auto; right: 22px; transform: translate(0, -50%); }
  .stage-arrow-next:hover { transform: translate(0, -50%) scale(1.08); }
}

@media (max-width: 575.98px) {
  .gallery-navbar { min-height: 76px; }
  .logo-img { width: 52px; height: 52px; }

  .gallery-hero {
    min-height: 420px;
    align-items: flex-start;
    padding-top: 3rem;
    background:
            linear-gradient(
                    180deg,
                    rgba(255, 255, 255, 0.98) 0%,
                    rgba(255, 255, 255, 0.9) 42%,
                    rgba(255, 255, 255, 0.24) 100%
            ),
            url("/Images/hero-mobile2.png");
    background-size: cover;
    background-position: center bottom;
  }

  .gallery-hero-content { padding-left: 1.35rem; padding-right: 1.35rem; }
  .gallery-hero-title { font-size: 3.1rem; }
  .gallery-hero-text { font-size: 1rem; }

  .gallery-content-section::before { display: none; }
  .gallery-section-title h2 { font-size: 1.65rem; }

  .gallery-stage { height: 440px; }
  .stage-card { width: 92vw; height: 360px; }
  .stage-body { left: 6%; right: 6%; bottom: 30px; }
  .stage-body h3 { font-size: 1.9rem; }
  .stage-body p { font-size: 0.9rem; }
  .stage-dots { bottom: 50px; }

  .gallery-cta-section { padding: 1.5rem 1rem 0; }
  .gallery-cta { padding: 1.5rem; }
  .gallery-cta-icon { min-width: 58px; width: 58px; height: 58px; font-size: 1.55rem; }
  .gallery-cta h3 { font-size: 1.55rem; }
}


/* Gallery Video*/
.stage-card img,
.stage-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.stage-video {
  pointer-events: none;
}

/* Floating button styles */

/* Main Container */
.booking-fab-container {
    position: fixed;
    bottom: max(20px, calc(env(safe-area-inset-bottom) + 20px));
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    z-index: 9999;
}

/* The Hidden Menu */
.booking-fab-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none; /* Prevents clicking when hidden */
}

/* Menu Active State */
.booking-fab-container.active .booking-fab-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* Menu Items */
.fab-menu-item {
    background-color: #ffffff;
    color: #292929;
    padding: 12px 20px;
    border-radius: 8px;
    font-family: inherit;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.2s ease, color 0.2s ease;
    border: 1px solid #eaeaea;
}

    .fab-menu-item.btn-para:hover {
        background-color: #dc3545;
        color: #fff;
    }

    .fab-menu-item.btn-quad:hover {
        background-color: #1a1a1a;
        color: #fff;
    }

/* The Main Button */
.custom-cal-floating-btn {
    background-color: #292929;
    color: #ffffff;
    padding: 14px 24px;
    border-radius: 50px;
    border: none;
    font-family: inherit;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

    .custom-cal-floating-btn:hover {
        transform: scale(1.05);
        background-color: #1a1a1a;
    }

/* Mobile Adjustments */
@media (max-width: 768px) {
    .booking-fab-container {
        bottom: max(15px, calc(env(safe-area-inset-bottom) + 15px));
        right: 15px;
    }

    .custom-cal-floating-btn {
        padding: 12px 20px;
        font-size: 15px;
    }
}

/* Floating button styles end here*/

/* ============ ABOUT PAGE ============ */
.about-statement-line {
    font-family: var(--be-font-heading, "Bebas Neue", sans-serif);
    line-height: 1;
}

