/* ============================================================================
   Party In Blackpool — Full Site Stylesheet
   Folder assumption: /css/style.css and /images-2026/*
   ========================================================================== */

/* ----------------- 0) Tokens & Reset ----------------- */

:root {
  /* Brand */
  --brand1: #ff7b00;
  --brand2: #ff3b00;
  --header-bg: #ff6600;
  --text: #111;
  --white: #fff;

  /* Spacing */
  --section-gap: 64px;
  --radius: 18px;
  --shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  --shadow-strong: 0 18px 36px rgba(0, 0, 0, 0.18);

  /* Hero images (CSS file in /css, images in /images-2026) */
  --hero-desktop: url("../images-2026/Party-In-Blackpool-Weekends-Desktop.jpg");
  --hero-mobile: url("../images-2026/Party-In-Blackpool-Weekends-Mobile-Hero-Short.jpg");

  /* Header height if you need to offset anchors */
  --header-h: 64px;
}

* { box-sizing: border-box; }

html,
body { height: 100%; }

html { scroll-padding-top: var(--header-h); }

body {
  margin: 0;
  font: 17px/1.5 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}


/* ----------------- 1) Header & Hamburger ----------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 20px;
  background: var(--header-bg);
  color: var(--white);
}

.brand {
  font-weight: 800;
  letter-spacing: .5px;
  color: #fff;
  font-size: 1.35rem;   /* slightly larger */
}

/* Nav (desktop) */
.site-header .nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-header .nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  opacity: .9;
}

.site-header .nav a:hover { opacity: 1; }

/* Call button */
.call-btn {
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 800;
  color: #fff;                 /* orange text */
  background: #777;            /* white box */
  box-shadow: 0 4px 10px rgba(0,0,0,.25);
  white-space: nowrap;
  display: inline-block;
}

.call-btn:hover {
  background: #000;            /* cream on hover */
  box-shadow: 0 6px 14px rgba(0,0,0,.3);
}


/* Hamburger (checkbox hack, no JS) */
.nav-toggle { position: absolute; left: -9999px; } /* hides checkbox */

.menu-toggle {
  display: none;
  color: #fff;
  cursor: pointer;
  line-height: 0;
  padding: 6px;
}

.menu-toggle .icon-close { display: none; } /* we’ll swap on :checked */

/* Mobile behavior */
@media (max-width: 768px) {
  .menu-toggle { display: block; margin-left: auto; }

  /* swap icons when open */
  .nav-toggle:checked + .menu-toggle .icon-burger { display: none; }
  .nav-toggle:checked + .menu-toggle .icon-close { display: inline; }

  /* hide nav by default on mobile */
  .site-header { flex-wrap: wrap; }

  .site-header .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    background: #111;
    border-top: 1px solid rgba(255, 255, 255, .1);
    box-shadow: 0 12px 24px rgba(0, 0, 0, .25);
  }

  /* show when toggled */
  .nav-toggle:checked ~ .nav {
    display: flex;
    animation: drop .22s ease both;
  }

  @keyframes drop {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .call-btn {
    padding: 10px 14px;
    font-size: .95rem;
  }
}


/* ----------------- 2) Hero ----------------- */

.hero {
  position: relative;
  height: clamp(420px, 70vh, 700px);
  min-height: unset;
  /* OR: height: clamp(360px, 55vh, 520px); */
  display: grid;
  align-items: flex-start;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 100%),
    var(--hero-desktop);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right top; /* FIX: keep the top visible */
  padding-top: calc(var(--header-h) + 60px); /* reduce from +160px */
}

@media (max-width: 768px) {
  .hero {
    background-image:
      linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%),
      var(--hero-mobile);
    background-position: center 30%;
    min-height: 72vh;

    /* Mobile spacing: smaller offset so it doesn’t feel too gappy */
    padding-top: calc(var(--header-h) + 60px);
  }
}

.hero-inner {
  width: min(1200px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding-top: 0;          /* ensure no top padding pushing down */
  padding-bottom: 24px;    /* keep bottom breathing room */
}

.hero-copy { max-width: 640px; }

.eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  backdrop-filter: blur(2px);
}

h1 {
  margin: 10px 0 8px;
  font-size: clamp(32px, 5.5vw, 60px);
  line-height: 1.03;
  text-wrap: balance;
}

.sub {
  font-size: clamp(16px, 2.1vw, 20px);
  opacity: .95;
  max-width: 56ch;
}

.cta {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(90deg, var(--brand1), var(--brand2));
  box-shadow: 0 14px 28px rgba(255, 80, 0, .28), inset 0 2px 0 rgba(255, 255, 255, .25);
  transition: transform .15s ease, box-shadow .15s ease;
  font-size: 1.15rem;
  font-weight: 500; /* larger, non-bold per tweak */
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(255, 80, 0, .36);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 1.05rem;
  color: #fff;
  opacity: .92;
}

.btn-link:hover {
  opacity: 1;
  text-decoration: underline;
}


/* ----------------- 3) Trust Triptych — 3 images ----------------- */

.features-3 { max-width: 1200px; margin: var(--section-gap) auto; padding: 0 20px; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: translateZ(0);
  transition: transform .25s ease, box-shadow .25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}

.feature-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

/* Bottom-left orange link box on feature images */
.feature-link-box {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: #ff6a00; /* bright orange */
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 8px 14px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.features-3 .feature-card:hover .feature-link-box {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

@media (max-width: 992px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .features-grid { grid-template-columns: 1fr; }
}


/* ----------------- 4) Intro Section ----------------- */

.intro-section {
  max-width: 1100px;
  margin: 10px auto;
  padding: 0 24px;
  text-align: center;
}

.intro-section h2 {
  font-size: clamp(24px, 3.2vw, 32px);
  margin: 0 0 12px;
  letter-spacing: 1px;
  color: #000;
}

.intro-section p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  max-width: 900px;
  margin: 0 auto;
}


/* ----------------- 5) Activities Grid ----------------- */

.activities-section {
  max-width: 1200px;
  margin: var(--section-gap) auto;
  padding: 0 20px;
  text-align: center;
}

.activities-section h2 { margin-bottom: 14px; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.card {
  min-height: 120px;
  background: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, .06);
  font-weight: 700;
  color: #222;
}

@media (max-width: 992px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .grid-3 { grid-template-columns: 1fr; }
}


/* ----------------- 6) Instant Price CTA ----------------- */

.cta-form {
  max-width: 900px;
  margin: var(--section-gap) auto;
  padding: 0 24px;
  text-align: center;
}

.cta-form p { max-width: 720px; }


/* ----------------- 7) Why Us ----------------- */

.why-us {
  max-width: 900px;
  margin: var(--section-gap) auto;
  padding: 0 24px;
  text-align: center;
}

.why-us ul {
  list-style: none;
  padding: 0;
  margin: 16px auto 0;
  max-width: 560px;
}

.why-us li {
  margin: 8px 0;
  font-size: 1.05rem;
}


/* ----------------- 8) Reviews Snippet ----------------- */

.reviews-snippet {
  max-width: 900px;
  margin: var(--section-gap) auto;
  padding: 0 24px;
}

.reviews-snippet blockquote {
  margin: 0 0 14px;
  font-size: 1.05rem;
  font-style: italic;
  color: #444;
  text-align: center;
}


/* ----------------- 9) FAQ ----------------- */

.faq {
  max-width: 900px;
  margin: var(--section-gap) auto;
  padding: 0 24px;
}

.faq h2 {
  text-align: center;
  margin-bottom: 12px;
}

.faq details {
  background: #fff;
  border-radius: 12px;
  margin: 10px 0;
  padding: 14px 16px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .06);
}

.faq summary {
  font-weight: 700;
  cursor: pointer;
}

.faq p { margin-top: 8px; }


/* ----------------- 10) Final CTA Banner ----------------- */

.cta-banner {
  text-align: center;
  max-width: 900px;
  margin: var(--section-gap) auto;
  padding: 46px 24px;
  background: linear-gradient(90deg, var(--brand1), var(--brand2));
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(255, 80, 0, .35);
}

.cta-banner h2 {
  color: #fff;
  margin: 0 0 10px;
}

.cta-banner .btn-primary {
  background: #fff;
  color: #d43;
  box-shadow: none;
}

.cta-banner .btn-primary:hover { transform: translateY(-2px); }


/* ----------------- 11) Footer ----------------- */

.site-footer {
  background: linear-gradient(90deg, var(--brand1), var(--brand2));
  color: #fff;
  padding: 60px 20px 20px;
  font-size: .95rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand h3 {
  font-size: 1.4rem;
  margin: 0 0 8px;
  color: #fff;
}

.footer-brand p {
  line-height: 1.5;
  opacity: .9;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1.1rem;
  margin: 0 0 10px;
  color: #fff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li { margin-bottom: 6px; }

.footer-links a {
  color: #fff;
  opacity: .9;
}

.footer-links a:hover {
  text-decoration: underline;
  opacity: 1;
}

.footer-contact p { margin: 4px 0; }

.footer-contact a {
  color: #fff;
  opacity: .9;
}

.footer-contact a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-socials {
  margin-top: 10px;
  display: flex;
  gap: 12px;
}

.social {
  font-size: 1.3rem;
  color: #fff;
  transition: transform .2s ease;
}

.social:hover { transform: scale(1.15); }

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 18px;
  opacity: .9;
  border-top: 1px solid rgba(255, 255, 255, .3);
}

/* Footer responsive */
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-socials { justify-content: center; }
}


/* ----------------- 12) Small tweaks ----------------- */

/* Pull intro closer to hero */
.intro-section { margin-top: 32px; }

/* Utility container (optional for custom sections) */
.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

/* Button utility if needed elsewhere */
.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
}


/* ----------------- 13) Enquiry Form – Clean Centered Layout ----------------- */

.enquiry-form {
  width: min(720px, 92vw);
  margin: 12px auto 0;   /* top spacing reduced from 64px to 32px */
  padding: 12px 28px 40px;
  background: rgba(255,255,255, 1);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Header */
.enquiry-form .form-header h1,
.enquiry-form .form-header h2,
.enquiry-form .form-header h3,
.enquiry-form .form-header h4,
#enquiry .form-header h1,
#enquiry .form-header h2,
#enquiry .form-header h3,
#enquiry .form-header h4,
#formEnquiry .form-header h1,
#formEnquiry .form-header h2,
#formEnquiry .form-header h3,
#formEnquiry .form-header h4,
#formEnquiry .form-heading {
  display: inline-block;
  background: var(--brand1) !important; /* bright orange */
  color: var(--white) !important;       /* white text */
  padding: 12px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 auto 24px;
}


/* Each field group */
.enquiry-form .form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Label styling */
.enquiry-form label {
  font-weight: 700;
  color: #111;
  font-size: 1rem;
}

/* Inputs and selects */
.enquiry-form .form-control {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 1.05rem;
  font-weight: 500;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.enquiry-form .form-control:focus {
  border-color: var(--brand1);
  box-shadow: 0 0 0 3px rgba(255, 123, 0, .15);
  outline: none;
}

/* Two-column rows for Adults + Nights */
.enquiry-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Info text blocks */
.enquiry-form .info-strip,
.enquiry-form .notice {
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 1rem;
  line-height: 1.5;
}

.enquiry-form .info-strip {
  background: #fff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, .05);
  color: #333;
}

.enquiry-form .notice {
  background: rgba(255, 123, 0, .08);
  border-left: 4px solid var(--brand1);
  color: #333;
}

/* Validation message */
.enquiry-form #validation {
  font-weight: 600;
  color: #c00;
  text-align: center;
}

/* Button area */
.enquiry-form .actions {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

.enquiry-form .btn-primary {
  font-size: 1.15rem;
  font-weight: 500;
  padding: 16px 32px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(90deg, var(--brand1), var(--brand2));
  box-shadow: 0 14px 28px rgba(255, 80, 0, .28);
  transition: transform .2s ease, box-shadow .2s ease;
}

.enquiry-form .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(255, 80, 0, .36);
}

/* Mobile adjustments */
@media (max-width: 640px) {
  .enquiry-form { padding: 24px 18px 32px; }
  .enquiry-form .form-row { grid-template-columns: 1fr; }
}


/* =========================================================
   Enquiry Form + Scroll / Bounce Animations
   ======================================================= */

@keyframes pulse-highlight {
  0%   { box-shadow: 0 0 0 0 rgba(255, 123, 0, 0.5); }
  70%  { box-shadow: 0 0 0 15px rgba(255, 123, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 123, 0, 0); }
}

.enquiry-form.pulse { animation: pulse-highlight 1.5s ease-out; }

@keyframes bounce-once {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-8px); }
  60% { transform: translateY(-4px); }
}

.hero .btn-primary.bounce { animation: bounce-once 1s ease; }


/* ----------------- 14) Modal Styles (no <style> tags) ----------------- */

.feature-modal-trigger:hover .feature-label {
  background: linear-gradient(90deg, var(--brand1), var(--brand2));
  color: #fff;
}

/* Modal styles (shared by all three) */
.pib-modal[hidden] { display: none; }

.pib-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
}

.pib-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  backdrop-filter: blur(2px);
}

.pib-modal__content {
  position: relative;
  width: min(680px, 92vw);
  max-height: 88vh;
  overflow: auto;
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  box-shadow: var(--shadow-strong);
  padding: 22px 22px 20px;
  transform: translateY(12px);
  opacity: 0;
  animation: pib-modal-in .22s ease-out forwards;
}

@keyframes pib-modal-in { to { transform: translateY(0); opacity: 1; } }

.pib-modal__header h2 {
  margin: 6px 0 8px;
  font-size: clamp(22px, 3.2vw, 28px);
}

.pib-modal__body p {
  margin: 0 0 12px;
  line-height: 1.6;
}

.pib-modal__body ul { margin: 0 0 12px 18px; }

.pib-modal__actions {
  margin-top: 8px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.pib-modal__close {
  position: sticky;
  top: 0;
  margin-left: auto;
  z-index: 2;
  border: 0;
  background: transparent;
  color: #222;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 8px;
}

.pib-modal__close:hover { background: rgba(0, 0, 0, .06); }

body.pib-modal-open { overflow: hidden; }


/* ==============================================
   Form heading: white text in an orange box
   (covers legacy #formEnquiry and modern .enquiry-form/#enquiry)
   ============================================= */

#enquiry .form-header,
.enquiry-form .form-header,
#formEnquiry .form-header {
  text-align: center;
}

/* Modern semantic forms (h1/h2/h3 inside the form) */
.enquiry-form .form-header h1,
.enquiry-form .form-header h2,
.enquiry-form .form-header h3,
#enquiry .form-header h1,
#enquiry .form-header h2,
#enquiry .form-header h3,
#formEnquiry .form-header h1,
#formEnquiry .form-header h2,
#formEnquiry .form-header h3,
#formEnquiry .form-heading {
  display: inline-block;
  background: var(--brand1) !important;
  color: var(--white) !important;
  padding: 12px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 auto 24px;
}

/* Legacy table-style headings that use .bodybold14w/.bodybold14 */
#formEnquiry .bodybold14w,
#formEnquiry .bodybold14 {
  display: inline-block !important;
  background: var(--brand1) !important;
  color: var(--white) !important;
  padding: 8px 16px !important;
  border-radius: 8px !important;
  font-weight: 800 !important;
  margin: 0 auto 16px !important;
}

/* If a table cell was painting the whole row orange, neutralize it
   so the orange "box" stands out */
#formEnquiry td[bgcolor] { background: transparent !important; }


/* ===============================
   ALL-INCLUSIVE HERO IMAGES
   =============================== */

.hero-allinclusive {
  position: relative;
  background-image: url("../images-2026/blackpool-all-inclusive-hero-desktop.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  padding-top: 20vh;
  justify-content: center;
  text-align: left;
}

/* Subtle dark overlay for readability */
.hero-allinclusive::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 0;
}

.hero-allinclusive .hero-inner,
.hero-allinclusive .hero-copy {
  position: relative;
  z-index: 1;
}

/* MOBILE VERSION */
@media (max-width: 768px) {
  .hero-allinclusive {
    background-image: url("../images-2026/blackpool-all-inclusive-hero-mobile.jpg");
    min-height: 70vh;
  }
}


/* Your Hotel section */

.hotel-section {
  text-align: center;
  margin: 60px auto;
  max-width: 900px;
}

.hotel-section h2 {
  font-weight: 800;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.hotel-image-box img {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}



/* Hero button row */

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.btn-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border-radius: 9999px;
  font-weight: 700;
  text-decoration: none;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.12s ease, box-shadow 0.12s ease, background-color 0.12s ease;
}

.btn-chip:focus-visible {
  outline: 3px solid rgba(0, 0, 0, 0.35);
  outline-offset: 2px;
}

.btn-chip:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

/* Colour choices (high contrast, WCAG AA+) */
.btn-chip.stag {
  background: #1e40af; /* Indigo 800 */
  color: #fff;
}
.btn-chip.stag:hover { background: #1a3190; }

.btn-chip.hen {
  background: #b11ba5; /* Fuchsia 700 */
  color: #fff;
}
.btn-chip.hen:hover { background: #8e1786; }

.btn-chip.inclusive {
  background: #0f766e; /* Teal 700 */
  color: #fff;
}
.btn-chip.inclusive:hover { background: #0b5e58; }

@media (max-width: 640px) {
  .btn-row a {
    flex: 1 1 100%;
    text-align: center;
  }
}


/* No zoom or fade — keep it simple */

.feature-card { position: relative; overflow: hidden; }

.feature-card img {
  width: 100%;
  height: auto;
  display: block;
}


/* ===== OVERRIDES: center small text + one orange button at bottom =====
   NOTE: The project now uses .feature-link-box (bottom-left). These older
   overlay styles are intentionally not active but kept for reference.
   ===================================================================== */

.feature-overlay { display: none !important; }


/* === Updated Modal Image Link Box (active) === */

.features-3 .feature-card { position: relative; overflow: hidden; }

.features-3 .feature-card img {
  display: block;
  width: 100%;
  height: auto;
}


/* =========================================================
   HERO OVERRIDE — Blackpool Hen Weekend
   Adds unique hero images for hen weekend page only
   ======================================================= */

.hero-hen {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: flex-start;
  color: #fff;
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.15) 100%),
    url("../images-2026/Blackpool-Hen-Weekends-Desktop.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding-top: calc(var(--header-h) + 2px); /* match desktop hero spacing */
}

@media (max-width: 768px) {
  .hero-hen {
    background-image:
      linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.45) 100%),
      url("../images-2026/Blackpool-Hen-Weekends-Mobile.jpg");
    min-height: 72vh;
    background-position: center 30%;
    padding-top: calc(var(--header-h) + 2px); /* match mobile hero spacing */
  }
}

.hero-stag {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: flex-start;
  color: #fff;
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.15) 100%),
    url("../images-2026/Blackpool-Stag-Weekends-Desktop.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding-top: calc(var(--header-h) + 2px); /* match desktop hero spacing */
}

@media (max-width: 768px) {
  .hero-stag {
    background-image:
      linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.45) 100%),
      url("../images-2026/Blackpool-Stag-Weekends-Mobile.jpg");
    min-height: 72vh;
    background-position: center 30%;
    padding-top: calc(var(--header-h) + 2px); /* match mobile hero spacing */
  }
}

/* =========================================================
   HERO — Enquiry page (solid dark background, shorter)
   Usage: <section class="hero hero-enquiry">
   ======================================================= */

.hero-enquiry {
  /* Remove the default full-screen hero behaviour */
  min-height: auto;

  /* Solid background on desktop + mobile */
  background: #141414 !important;
  background-image: none !important;

  /* Keep content toward the top, but not cramped under sticky header */
  display: grid;
  align-items: flex-start;

  /* Short, deliberate hero spacing */
  padding-top: calc(var(--header-h) + 48px);
  padding-bottom: 48px;

  /* Optional: tighten background feel (no image) */
  color: #fff;
}

/* Make the enquiry hero even tighter on small screens */
@media (max-width: 768px) {
  .hero-enquiry {
    padding-top: calc(var(--header-h) + 28px);
    padding-bottom: 28px;
  }
}

/* Optional: reduce vertical spacing inside the enquiry hero */
.hero-enquiry .hero-inner {
  padding-bottom: 0;  /* stops extra bottom breathing room if it feels tall */
}

.hero-enquiry .sub {
  opacity: 0.9;
}


.hero-hotels {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: flex-start;
  color: #fff;
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.15) 100%),
    url("../images-2026/Blackpool-Hotels-Hero.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding-top: calc(var(--header-h) + 80px);
}


/* Buttons */

.btn-black {
  display: inline-block;
  padding: 0.6em 1.2em;
  border-radius: 6px;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-black:hover,
.btn-black:focus {
  background-color: #333;
  color: #fff;
}


/* Make the entire hero image clickable */

.hero { position: relative; }

.hero-link {
  position: absolute;
  inset: 0;               /* covers the full hero area */
  z-index: 2;             /* above background but below header text */
  display: block;
  text-indent: -9999px;   /* hide text for accessibility */
  cursor: pointer;
}

.hero-link:focus-visible {
  outline: 3px solid #ff7b00;
  outline-offset: 3px;
}


/* Dark blue modal button */

.btn-darkblue {
  display: inline-block;
  background-color: #1e3a8a; /* Dark blue tone */
  color: #fff;
  border-radius: 999px;
  padding: 12px 26px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.btn-darkblue:hover {
  background-color: #162e6a;
  transform: translateY(-2px);
}

.btn-darkblue:focus-visible {
  outline: 3px solid #ff7b00;
  outline-offset: 3px;
}

.hero-instant {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: flex-start;
  color: #fff;
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.15) 100%),
    url("../images-2026/instant-hero.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding-top: calc(var(--header-h) + 80px); /* match desktop hero spacing */
}

/* ---------------------- Form Error Messages ---------------------- */

.error-msg {
  display: none;
  color: #c00;
  font-size: 0.9rem;
  margin-top: 4px;
}

.form-hint {
  display: block;
  margin-top: 4px;
  font-size: 0.9rem;
  color: #555;
}

/* Show errors only after we’ve tried to submit */
.enquiry-form.was-validated .form-control:invalid ~ .error-msg {
  display: block;
}

.enquiry-form.was-validated .form-control:valid ~ .error-msg {
  display: none;
}

/* Optional: red border on invalid fields */
.enquiry-form.was-validated .form-control:invalid {
  border-color: #c00;
}

/* =========================================
   ENQUIRY HERO (solid dark grey, short)
   ========================================= */

.hero.hero-enquiry {
  /* Kill any inherited hero image (desktop rules) */
  background-image: none !important;
  background: #9A3E1F !important;

  /* Make hero shorter */
  min-height: auto !important;

  /* Move content up and control spacing */
  display: grid;
  align-items: flex-start;

  padding-top: calc(var(--header-h) + 24px);
  padding-bottom: 44px;

  color: #fff;
}

/* Ensure mobile media-query .hero background does NOT come back */
@media (max-width: 900px) {
  .hero.hero-enquiry {
    background-image: none !important;
    background: #9A3E1F !important;
    min-height: auto !important;

    padding-top: calc(var(--header-h) + 24px);
    padding-bottom: 28px;
  }
}

/* ============================================================
   HERO: full-section text area (added)
   - Makes hero text span full hero section (width + height)
   - Overrides narrow max-width constraints on hero copy
   ============================================================ */

.hero {
  /* Ensure the grid has a full-height track for content */
  grid-template-rows: 1fr;
}

.hero-inner {
  /* Fill the hero vertically so the copy can be positioned within it */
  min-height: calc(100% - (var(--header-h) + 60px));
  height: 100%;
  display: grid;
  align-content: stretch;
}

.hero-copy {
  /* Remove the narrow text constraint so it can span */
  max-width: none;
  width: 100%;
}

/* Optional alignment presets (uncomment ONE)
.hero-inner { justify-items: start; align-content: start; }   // top
.hero-inner { justify-items: start; align-content: center; }  // center
.hero-inner { justify-items: start; align-content: end; }     // bottom
*/

/* Optional: true edge-to-edge within hero (uncomment if desired)
.hero-inner {
  width: 100%;
  margin: 0;
  padding-left: 5vw;
  padding-right: 5vw;
}
*/
/* =========================================
   HERO — Inclusive (TEXT ONLY, SHALLOW)
   Usage: <section class="hero hero-inclusive">
   ========================================= */

.hero.hero-inclusive {
  /* Remove default big image hero styles */
  background-image: none !important;
  background: #111 !important;  /* solid dark background */
  color: #fff;

  /* Make it shallow */
  height: auto !important;
  min-height: auto !important;

  /* Spacing */
  padding-top: calc(var(--header-h) + 26px);
  padding-bottom: 26px;

  /* Layout */
  display: block;
}

/* Keep text clean and readable */
.hero.hero-inclusive .hero-inner {
  width: min(1100px, 92vw);
  margin: 0 auto;
  padding: 0;
  gap: 12px;
}

.hero.hero-inclusive .hero-heading {
  margin: 0 0 8px;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.1;
  color: #fff;
}

.hero.hero-inclusive .hero-subheading {
  margin: 0;
  max-width: 70ch;
  font-size: clamp(15px, 1.6vw, 18px);
  opacity: 0.92;
  color: #fff;
}

/* Buttons row */
.hero.hero-inclusive .hero-actions {
  margin-top: 14px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero.hero-inclusive .btn {
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
}

/* Primary + outline buttons for this hero */
.hero.hero-inclusive .btn-primary {
  background: linear-gradient(90deg, var(--brand1), var(--brand2));
  color: #fff;
}

.hero.hero-inclusive .btn-outline {
  border: 2px solid rgba(255,255,255,0.85);
  color: #fff;
  background: transparent;
}
.hero.hero-inclusive .btn-outline:hover {
  background: rgba(255,255,255,0.12);
}

/* MOBILE: even shallower */
@media (max-width: 768px) {
  .hero.hero-inclusive {
    padding-top: calc(var(--header-h) + 18px);
    padding-bottom: 18px;
  }

  .hero.hero-inclusive .hero-actions a {
    width: 100%;
    text-align: center;
  }
}

/* =========================================
   HERO — Inclusive (shallow + orange glow)
   ========================================= */

.hero.hero-inclusive {
  background-image: none !important;

  /* Dark base + orange brand glow */
  background:
    radial-gradient(circle at top left, rgba(255, 123, 0, 0.35), rgba(0, 0, 0, 0.0) 55%),
    radial-gradient(circle at top right, rgba(255, 59, 0, 0.25), rgba(0, 0, 0, 0.0) 55%),
    linear-gradient(180deg, #0b0b0b 0%, #151515 100%) !important;

  color: #fff;

  /* Shallow hero */
  height: auto !important;
  min-height: auto !important;

  padding-top: calc(var(--header-h) + 26px);
  padding-bottom: 26px;
}

.hero.hero-inclusive .hero-heading,
.hero.hero-inclusive .hero-subheading {
  color: #fff;
}



/* =========================================
   HERO: allow sub-paragraph to span full hero
   ========================================= */

.hero-copy p,
.hero-copy .sub,
.hero-copy .hero-sub,
.hero-copy .intro {
  max-width: none;
  width: 100%;
}

/* Optional: keep sub-copy readable while headline stays full width (uncomment if desired)
.hero-copy p { max-width: 90ch; }
*/

/* Optional: only stretch sub-copy on tablet/desktop (uncomment if desired)
@media (min-width: 768px) {
  .hero-copy p { max-width: none; }
}
*/
/* ==============================
   Instant Quote: Price + Book Now
   ============================== */

.instant-price-box {
  margin-top: 18px;
  text-align: center;
}

.price-line {
  font-size: 1.3rem;
  margin-bottom: 14px;
}

.price-label {
  font-weight: 600;
  margin-right: 8px;
}

.price-value {
  font-weight: 900;
  font-size: 1.6rem;
}

/* Orange book button */
.btn-book-now {
  display: inline-block;
  background: var(--brand1);
  color: #fff;
  font-weight: 800;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-book-now:hover,
.btn-book-now:focus {
  background: #000;
  transform: translateY(-2px);
  color: #fff;
}

.safe-hands {
  margin-top: 12px;
  font-size: 1rem;
  color: #333;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}
/* Orange Book Now button (white text, black hover) */
.btn-book-now {
  display: inline-block;
  background: var(--brand1);   /* orange */
  color: #fff !important;      /* FORCE white text */
  font-weight: 800;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  border: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-book-now:hover,
.btn-book-now:focus {
  background: #000;            /* black on hover */
  color: #fff !important;      /* keep white text */
  transform: translateY(-2px);
}
.contact-fields {
  display: none;
}
.enquiry-form {
  margin-bottom: 4rem;
}
.form-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 12px;
  background: none;
  border: 0;
  box-shadow: none;
}

.form-subhead {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 14px;
}
/* De-button the enquiry form title (override orange pill heading) */
.enquiry-form .form-header .form-title{
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  display: block !important;
  color: #111 !important;      /* or keep white if you want */
  font-weight: 700 !important;
  text-align: center;
  margin: 0 0 6px !important;
}

/* Package cards (click to auto-fill enquiry form) */
.pkg-section{
  max-width: 1100px;
  margin: 26px auto 10px;
  padding: 0 14px;
}

.pkg-head{
  text-align: center;
  margin-bottom: 14px;
}
.pkg-head h2{ margin: 0 0 6px; }
.pkg-head p{ margin: 0; opacity: 0.9; }

.pkg-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

/* Card as a clickable button with background image */
/* Lighter overlay so images pop */
.pkg-card{
  background-image:
    linear-gradient(180deg,
      rgba(0,0,0,0.15) 0%,
      rgba(0,0,0,0.45) 70%,
      rgba(0,0,0,0.65) 100%),
    var(--pkg-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* subtle punch */
  filter: saturate(1.12) contrast(1.05);
}


.pkg-card:hover{
  background-image:
    linear-gradient(180deg,
      rgba(0,0,0,0.10) 0%,
      rgba(0,0,0,0.40) 70%,
      rgba(0,0,0,0.62) 100%),
    var(--pkg-bg);
  filter: saturate(1.20) contrast(1.08);
}

.pkg-card:focus{
  outline: 3px solid rgba(255,255,255,0.75);
  outline-offset: 3px;
}

.pkg-badge{
  display: inline-block;
  align-self: flex-start;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(4px);
}
.pkg-badge--hen{ background: rgba(255,0,140,0.25); }
.pkg-badge--value{ background: rgba(0,120,255,0.25); }

.pkg-card h3{
  margin: 0;
  font-size: 1.2rem;
  letter-spacing: 0.2px;
}

.pkg-list{
  margin: 0;
  padding-left: 18px;
}
.pkg-list li{
  margin: 6px 0;
  opacity: 0.95;
}

.pkg-cta{
  margin-top: auto;
  display: inline-block;
  font-weight: 900;
  letter-spacing: .3px;
  padding-top: 8px;
  opacity: 0.95;
}

/* Responsive */
@media (max-width: 980px){
  .pkg-grid{ grid-template-columns: 1fr; }
  .pkg-card{ min-height: 240px; }
}


/* ===================== Popular packages overrides (4 across + image fallback) ===================== */

/* Force 4-across on desktop for the popular package cards */
.pkg-grid{ grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (max-width: 980px){
  .pkg-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px){
  .pkg-grid{ grid-template-columns: 1fr; }
}

/* Ensure a background always shows (even if --pkg-bg is missing) */
.pkg-card{
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0.30), rgba(0,0,0,0.78)),
    var(--pkg-bg, linear-gradient(135deg, #111, #333));
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Optional: slightly tighter height for 4-up grid */
@media (min-width: 981px){
  .pkg-card{ min-height: 260px; }
}

/* ================= PACKAGE CARD IMAGE FIX ================= */

/* Force background images to render */
.pkg-card{
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.75)),
    var(--pkg-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Hover effect */
.pkg-card:hover{
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0.80)),
    var(--pkg-bg);
}
/* ===================== PACKAGE CARDS: FINAL, ROBUST STYLING ===================== */

/* Ensure the card is a layering context */
.pkg-card{
  position: relative;
  overflow: hidden;

  /* Force readable text */
  color: #fff !important;

  /* Image */
  background-image: var(--pkg-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Overlay (controls darkness without killing the image) */
.pkg-card::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  /* Tuned overlay: lighter at top, stronger at bottom for text */
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.10) 0%,
    rgba(0,0,0,0.35) 55%,
    rgba(0,0,0,0.62) 100%
  );
}

/* Put ALL content above the overlay */
.pkg-card > *{
  position: relative;
  z-index: 1;
}

/* Text clarity without heavy overlay */
.pkg-card h1,
.pkg-card h2,
.pkg-card h3,
.pkg-card p,
.pkg-card li,
.pkg-card a,
.pkg-card span{
  color: #fff !important;
  text-shadow: 0 2px 10px rgba(0,0,0,0.75);
}

/* Tag pill: pop and stay readable */
.pkg-card .pkg-tag,
.pkg-card .pkg-card__tag{
  display: inline-block;
  padding: 7px 12px;
  border-radius: 999px;

  background: rgba(255,255,255,0.92) !important;
  color: #111 !important;
  font-weight: 900;
  letter-spacing: 0.2px;

  border: 1px solid rgba(0,0,0,0.18);
  box-shadow: 0 10px 22px rgba(0,0,0,0.25);
  backdrop-filter: blur(6px);
}

/* Optional: a touch more “pop” on hover */
.pkg-card:hover::before{
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.06) 0%,
    rgba(0,0,0,0.30) 55%,
    rgba(0,0,0,0.58) 100%
  );
}
/* ========================================================================== */
/*  PACKAGE CARDS – FINAL OVERRIDES (PASTE AT BOTTOM OF style.css)             */
/* ========================================================================== */

/* 4 across desktop, responsive down */
.pkg-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 980px){ .pkg-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px){ .pkg-grid { grid-template-columns: 1fr; } }

/* Robust background image + overlay (keeps images vibrant, text readable) */
.pkg-card{
  position: relative;
  overflow: hidden;

  /* scale + breathing room */
  padding: 22px;
  min-height: 420px;

  /* image */
  background-image: var(--pkg-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* force readable text */
  color: #fff !important;
}

@media (min-width: 1100px){
  .pkg-card{ min-height: 460px; }
}

/* Overlay layer (lighter than before so images pop) */
.pkg-card::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.10) 0%,
    rgba(0,0,0,0.32) 55%,
    rgba(0,0,0,0.58) 100%
  );
}

/* Ensure all content renders above overlay */
.pkg-card > *{
  position: relative;
  z-index: 1;
}

/* Text clarity without crushing the image */
.pkg-card h1,
.pkg-card h2,
.pkg-card h3,
.pkg-card p,
.pkg-card li,
.pkg-card a,
.pkg-card span{
  color: #fff !important;
  text-shadow: 0 2px 10px rgba(0,0,0,0.75);
}

/* Badge/tag (Most booked / Best value etc.) – BIG + obvious
   Supports either .pkg-tag or .pkg-card__tag */
.pkg-card .pkg-tag,
.pkg-card .pkg-card__tag{
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.6px;

  padding: 8px 14px;
  margin-bottom: 14px;

  background: rgba(255,255,255,0.92) !important;
  color: #111 !important;

  border: 1px solid rgba(0,0,0,0.18);
  border-radius: 999px;

  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
}

/* Package title – make it the hero */
.pkg-card h3{
  font-size: 1.45rem;
  line-height: 1.15;
  font-weight: 900;
  margin-bottom: 10px;
}

@media (min-width: 1100px){
  .pkg-card h3{ font-size: 1.6rem; }
}

/* Subtitle/description */
.pkg-card p{
  font-size: 0.95rem;
  line-height: 1.45;
  opacity: 0.96;
  margin-bottom: 12px;
}

/* Included activities list */
.pkg-card ul{
  margin: 10px 0 16px;
  padding-left: 18px;
}
.pkg-card li{
  font-size: 0.95rem;
  margin-bottom: 6px;
}

/* CTA button – “Select package →”
   Supports either .pkg-cta or .select-package */
.pkg-card .pkg-cta,
.pkg-card .select-package{
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 900;

  padding: 10px 16px;
  margin-top: 6px;

  background: rgba(255,255,255,0.95);
  color: #111 !important;

  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);

  text-decoration: none !important;
  text-shadow: none !important;
}

/* Optional hover polish */
.pkg-card:hover::before{
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.06) 0%,
    rgba(0,0,0,0.28) 55%,
    rgba(0,0,0,0.56) 100%
  );
}
.pkg-card:hover .pkg-cta,
.pkg-card:hover .select-package{
  transform: translateY(-1px);
}
/* ========================================================================== */
/*  PACKAGE BADGES – BIG + COLOURED (MATCHES YOUR .pkg-badge)                  */
/* ========================================================================== */

.pkg-card .pkg-badge{
  display: inline-block;
  font-size: 1.05rem;            /* BIGGER */
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.9px;

  padding: 12px 18px;
  margin: 0 0 16px 0;

  color: #fff !important;

  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);

  box-shadow:
    0 12px 26px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.25);

  backdrop-filter: blur(6px);

  /* Make sure it sits above overlays */
  position: relative;
  z-index: 2;
}

/* Even bigger on desktop */
@media (min-width: 1100px){
  .pkg-card .pkg-badge{ font-size: 1.12rem; }
}

/* -------------------------------------------------------------------------- */
/* Colour each badge (reliable method: by card position)                      */
/* Adjust order if you reorder cards                                           */
/* -------------------------------------------------------------------------- */

.pkg-grid .pkg-card:nth-child(1) .pkg-badge{
  /* Most booked (orange/red) */
  background: linear-gradient(135deg, #ff9800, #ff3d00);
}

.pkg-grid .pkg-card:nth-child(2) .pkg-badge{
  /* Best for groups (blue) */
  background: linear-gradient(135deg, #00c6ff, #0066ff);
}

.pkg-grid .pkg-card:nth-child(3) .pkg-badge{
  /* Action packed (purple) */
  background: linear-gradient(135deg, #7f00ff, #e100ff);
}

.pkg-grid .pkg-card:nth-child(4) .pkg-badge{
  /* Best value (green) */
  background: linear-gradient(135deg, #00c853, #00a152);
}

/* Optional: badge “pop” on hover */
.pkg-card:hover .pkg-badge{
  transform: translateY(-1px);
}

/* ========================================================================== */
/*  PACKAGE BADGES – FORCE SINGLE LINE FOR VISUAL BALANCE                      */
/* ========================================================================== */

.pkg-card .pkg-badge{
  white-space: nowrap;     /* 🔑 prevents wrapping */
  line-height: 1;          /* tight vertical rhythm */
}
/* ========================================================================== */
/*  PACKAGE BADGES – PERFECT CENTRING                                          */
/* ========================================================================== */

.pkg-card .pkg-badge{
  display: inline-flex;         /* better centring than inline-block */
  align-items: center;
  justify-content: center;

  white-space: nowrap;
  line-height: 1;

  min-height: 44px;             /* stabilises vertical rhythm */
  padding: 0 18px;              /* horizontal-only padding */
}
