@charset "utf-8";
/* CSS Document */

@font-face {
    font-family: 'BeaverPunch';
    src: url('/fonts/BeaverPunch.woff2') format('woff2'),
         url('/fonts/BeaverPunch.woff') format('woff');
    font-weight: normal;
    font-style: normal;
	font-display: swap;
}

@font-face {
    font-family: 'EmbolismSparkRegular';
    src: url('/fonts/EmbolismSparkRegular.woff2') format('woff2'),
         url('/fonts/EmbolismSparkRegular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
	font-display: swap;
}

@font-face {
    font-family: 'Resmont-Bold';
    src: url('/fonts/Resmont-Bold.woff2') format('woff2'),
         url('/fonts/Resmont-Bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
	font-display: swap;
}


:root{
  --yellow:#F9FF00;
  --black:#111;
  --white:#fff;
	--Pink:#a44091;
--Beige:#f7ca8f;
--Green:#01352c;
--MintGreen:#4aa192;
}

body {
  margin: 0;
  font-family: 'BeaverPunch', 'EmbolismSparkRegular', 'Resmont-Bold', sans-serif !important;
  background: #fff;
  line-height: 1.6;
	letter-spacing: 0.3em;
}

img{
  width:100%;
  display:block;
}

/* ===============================
   TYPOGRAPHY
================================= */

h1{
  font-family: 'BeaverPunch' !important;
  font-size:clamp(60px,10vw,160px);
  font-weight:900;
  margin:20px;
	text-shadow: 0px 4px 3px rgba(0,0,0,0.4),
             0px 8px 13px rgba(0,0,0,0.1),
             0px 18px 23px rgba(0,0,0,0.1);
	text-align: center;
}

h2{
  font-family: 'BeaverPunch' !important;
  font-size:clamp(38px,4.5vw,68px);
	line-height: clamp(45px, 5.3vw, 80px);
  font-weight:700;
  margin-bottom:40px;
	color: #FFFFFF;
	text-shadow: 0px 4px 3px rgba(0,0,0,0.4),
             0px 8px 13px rgba(0,0,0,0.1),
             0px 18px 23px rgba(0,0,0,0.1);
	text-align: center;
}

h3{
  font-family: 'EmbolismSparkRegular' !important;
  font-size:clamp(38px,4.5vw,68px);
	line-height: clamp(45px, 5.3vw, 80px);
  font-weight:700;
  margin-bottom:40px;
	color: #F9FF00;
	text-shadow: 0px 4px 3px rgba(0,0,0,0.4),
             0px 8px 13px rgba(0,0,0,0.1),
             0px 18px 23px rgba(0,0,0,0.1);
	text-align: center;
}

h4{
  font-family: 'EmbolismSparkRegular' !important;
  font-size:clamp(23px,1.6vw,28px);
  line-height:1.9;
  font-weight:700;
	color: #F9FF00;
	text-shadow: 0px 4px 3px rgba(0,0,0,0.4),
             0px 8px 13px rgba(0,0,0,0.1),
             0px 18px 23px rgba(0,0,0,0.1);
	margin-bottom: 20px;
	text-align: center;
}

h5{
  font-family: 'Resmont-Bold' !important;
  font-size:clamp(18px,1.4vw,22px);
  line-height:1.9;
  font-weight:700;
	color: #FFFFFF;
	text-shadow: 0px 4px 3px rgba(0,0,0,0.4),
             0px 8px 13px rgba(0,0,0,0.1),
             0px 18px 23px rgba(0,0,0,0.1);
	text-align: center;
}

h6{
  font-family: 'Resmont-Bold' !important;
  font-size:clamp(18px,1.4vw,22px);
  line-height:1.9;
  font-weight:700;
	color: #000000;
	text-shadow: 0px 4px 3px rgba(0,0,0,0.4),
             0px 8px 13px rgba(0,0,0,0.1),
             0px 18px 23px rgba(0,0,0,0.1);
	text-align: center;
}
h7{
	font-family: 'Resmont-Bold' !important;
  font-size:clamp(18px,1.4vw,22px);
  line-height:1.9;
  font-weight:700;
	color: #000000;
	text-transform: uppercase;
	text-align: center;
}

h8{
  font-family: 'BeaverPunch' !important;
  font-size:clamp(23px,1.9vw,30px);
	line-height: clamp(27px, 2.1vw, 34px);
  font-weight:700;
	color: #FFFFFF;
	text-shadow: 0px 4px 3px rgba(0,0,0,0.4),
             0px 8px 13px rgba(0,0,0,0.1),
             0px 18px 23px rgba(0,0,0,0.1);
	text-align: center;
}



.caps{
	text-transform: uppercase;
}

p{
	font-family:'BeaverPunch' !important;
  font-size:clamp(18px,1.4vw,22px);
  line-height:1.9;
  margin-bottom:30px;
	color: #FFFFFF;
	text-shadow: 0px 2px 3px rgba(0,0,0,0.4),
             0px 4px 6px rgba(0,0,0,0.1),
             0px 9px 11px rgba(0,0,0,0.1);
}

a{
	color: #01352c;
	letter-spacing: 0.3em;
	text-decoration: none;
}

/* Nav */
/* Container to prevent navbar from covering page content */
.navbar-container {
  position: relative;
  padding-top: 0;
}

.navbar {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.55);
  z-index: 1000;
  text-shadow: none;
  line-height: 30px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  flex-direction: row;
}

.nav-links a,
.dropbtn {
  color: #01352c !important;
  text-decoration: none !important;
  padding: 10px 16px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 20px;
  background: transparent !important;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: inherit;
  letter-spacing: 0.3em;	
}

.nav-links a:hover,
.dropbtn:hover {
  background: #FFFFFF !important;
  color: #01352c !important;
}

.home-link i {
  font-size: 18px;
  color: var(--green) !important;
}

.dropdown {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) scale(0.95);
  background: var(--white) !important;
  min-width: 220px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  padding: 10px 0;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.dropdown-content.show {
  opacity: 1;
  transform: translateX(-50%) scale(1);
  pointer-events: auto;
}

.dropdown-content a {
  display: block;
  padding: 10px 18px;
  color: var(--green) !important;
  text-decoration: none !important;
  transition: 0.2s;
  text-align: left;
  width: 100%;
  box-sizing: border-box;
  font-family: inherit;
}

.dropdown-content a:hover {
  background: #ffffff !important;
  color: #f83a26 !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #01352c;
  margin: 4px 0;
  border-radius: 2px;
  transition: 0.3s ease;
}
.hamburger.active {
	background: #FFFFFF;
	color: #FFFFFF;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px,5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px,-6px);
}

@media (max-width: 1060px) {
  .hamburger { display: flex; }
  .nav-links {
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%) scale(0.95);
    flex-direction: column;
    background: rgba(255,255,255,0.98);
    border-radius: 25px;
    padding: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    opacity: 0;
    pointer-events: none;
    width: 260px;
    align-items: center;
    text-align: center;
  }

  .nav-links.show {
    opacity: 1;
    transform: translateX(-50%) scale(1);
    pointer-events: auto;
  }

  .dropdown {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .dropbtn {
    width: 100%;
    justify-content: center;
    order: 0;
  }

  .dropdown-content {
    position: relative;
    transform: none;
    box-shadow: none;
    border-radius: 15px;
    margin-top: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .dropdown-content.show {
    display: flex;

    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .dropdown-content a {
    text-align: center;
    margin: 0 auto;
  }
}	

.navbar a {
  display: inline-block;
}

.navbar img {
  width: auto;
  height: 50px;   /* adjust as needed */
}

/* =========================
   HEADER
========================= */

#header {
  position: relative;
  width: 100%;
  min-height: 90vh;        /* taller header */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #000;
}

/* WHITE TOP ANGLE */
#header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8%;
  background: white;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.35);
  z-index: 3;
  pointer-events: none;
}


/* =========================
   BACKGROUND VIDEO
========================= */
#poster-image {
    position: absolute;
    inset: 0;
	top:50%;
    left:50%;
    min-width:100%;
  min-height:100%;
  width:auto;
  height:auto;
    object-fit: cover;
	  transform:translate(-50%, -50%);
    z-index: 1;
  }

  /* Video - initially hidden */
  #background-video {
    position: absolute;
    inset: 0;
	top:50%;
    left:50%;
    min-width:100%;
  min-height:100%;
  width:auto;
  height:auto;
    object-fit: cover;
	  transform:translate(-50%, -50%);
    z-index: 2;
    display: none; /* hide until ready */
  }

/* =========================
   TOP GREEN BAR
========================= */
.header-green-bar {
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 6%;
  background: #c21500;  /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #ffc500, #c21500);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #ffc500, #c21500); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */


  z-index: 4;
  pointer-events: none;
}

/* =========================
   LOGO
========================= */
#logowrap {
  position: relative;
  z-index: 6;
  text-align: center;
}

.headerpic {      /* responsive scaling */
  height: auto;         /* maintain aspect ratio */
	max-width: 800px;
  border-radius: 1rem;
  filter: drop-shadow(0.25rem 0.25rem 0.5rem #000);
  opacity: 0;
  transform: translateX(100%);
  animation: slideInFromRight 1s ease-out forwards;
	margin: 0 auto;
}

/* =========================
   ANIMATION
========================= */
@keyframes slideInFromRight {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* =========================
   MEDIA QUERIES
========================= */

/* Extra wide screens */
@media screen and (min-width: 2880px) {
  #header {
    min-height: 80vh;
  }
  .headerpic {
    max-width: 70%;
  }
}

/* Desktop */
@media screen and (max-width: 1280px) {
  #header {
    min-height: 65vh;
  }
  .headerpic {
    max-width: 80%;
  }
}

/* Tablets */
@media screen and (max-width: 980px) {
  #header {
    min-height: 60vh;
  }
  .headerpic {
    max-width: 85%;
  }
}

/* Mobile phones */
@media screen and (max-width: 736px) {
  #header {
    min-height: 55vh;
  }
  .headerpic {
    max-width: 95%;
  }
}



/* ===============================
   SECTION SYSTEM
================================= */

.wf-section{
  position:relative;
  padding-bottom: 3em;
  overflow:hidden;
}



.wf-container{
  width:85%;
  max-width:1200px;
  margin:0 auto;
  position:relative;
  z-index:3;
}

/* ===============================
   SPLIT LAYOUT
================================= */

.wf-split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

.wf-split-reverse{
  direction:rtl;
}

.wf-split-reverse > *{
  direction:ltr;
}

.wf-image img{
  border-radius:20px;
  object-fit:cover;
}

/* ===============================
   HERO IMAGE
================================= */

.wf-hero-image{
  position:relative;
  height:85vh;
  overflow:hidden;
}

.wf-hero-image img{
  height:100%;
  object-fit:cover;
}

.wf-hero-word{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  color:white;
  letter-spacing:15px;
  text-transform:uppercase;
  mix-blend-mode:overlay;
}

/* =========================================
   PREMIUM WHAT'S ON SECTION
========================================= */

.wf-section--whats-on {
  position: relative;
  padding: 50px 0;
background: #c21500;  /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #ffc500, #c21500);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #ffc500, #c21500); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  overflow: hidden;
}
/* Oversized ghost text */
.wf-whats-bg-text {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(120px, 18vw, 260px);
  font-weight: 800;
  letter-spacing: 10px;
  color: rgba(255, 255, 255, 0.3);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
	z-index: -1;
}

/* Oversized ghost text */
.wf-whats-bg-text-banner {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(120px, 18vw, 260px);
  font-weight: 800;
  letter-spacing: 10px;
  color: rgba(255, 255, 255, 0.3);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
	z-index: -1;
}

/* Grid */
.wf-whats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  position: relative;
  z-index: 2;
}

/* Card hover lift */
.wf-whats-item a {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform .8s cubic-bezier(.21,.9,.34,1);
}

.wf-whats-item:hover a {
  transform: translateY(-16px);
}

/* Image wrapper */
.wf-whats-image {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

/* Parallax image */
.wf-whats-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  transform: scale(1.05);
  transition: transform 1.6s ease;
}

.wf-whats-item:hover img {
  transform: scale(1.12);
}

/* Grain overlay */
.wf-whats-grain {
  position: absolute;
  inset: 0;
  background-image: url("https://grainy-gradients.vercel.app/noise.svg");
  opacity: .05;
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* Magnetic button */
.wf-whats-button {
  position: absolute;
  bottom: 20px;
  left: 20px;
  padding: 12px 24px;
  font-size: 1.1rem;
  font-weight: 600;
  background: linear-gradient(90deg, #ff7f50, #ff5722);
    color: #fff;
    border-radius: 12px;
	border: 1px solid #000000;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

/* Content */
.wf-whats-content h3 {
  font-size: clamp(22px, 2vw, 30px);
  line-height: clamp(28px, 2.66vw, 39px);
  margin-bottom: 15px;
	color: #EDFF00;
	text-align: center;
}

.wf-whats-content p {
  font-size: 17px;
  line-height: 1.8;
  color: #FFFFFF;
	text-align: center;
}

/* =========================================
   SCROLL REVEAL
========================================= */

.wf-reveal {
  text-align: center;
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s cubic-bezier(.21,.9,.34,1);
}

.wf-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1024px) {
  .wf-whats-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {

  .wf-section--whats-on {
    padding: 20px 0;
  }

  .wf-whats-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .wf-whats-image img {
    height: 320px;
  }

}

/* --- Parallax Section --- */
.highlights-section {
  position: relative;
  overflow: hidden;
  background: #c21500;  /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #ffc500, #c21500);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #ffc500, #c21500); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  text-align: center;
  padding: 35px 20px; /* 100px original + 35px top stripe padding */
}

/* Top & Bottom White Stripes */
.stripediv {
	position: relative;
  width: 100%;
  height: 35px;
  background-color: #fff;
  top: 0;
  left: 0;
}

/* --- Parallax Background --- */
.parallax-bg {
  background-image: url('https://www.wildfestivals.co.uk/images/fancy3.jpg');
  background-size: cover;
  background-position: right center; /* keep right-hand side visible */
  background-attachment:scroll;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  z-index: -1;
  transform: translateZ(0);
  will-change: transform;
}

/* --- Content Wrapper --- */
.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* CTA Image */
.cta-image {
  max-width: 300px;
  margin-bottom: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.cta-image:hover {
  transform: scale(1.05);
}

/* Intro text */
.intro-text {
  font-size: 1.3rem;
  margin-bottom: 50px;
  font-weight: 500;
}

/* --- Festival Grid --- */
.festival-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Festival Cards */
.festival-card {
  background: linear-gradient(to right, rgba(255, 197, 0, 0.3), rgba(194, 21, 0, 0.3));
    padding: 20px;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
	    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}
.festival-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.festival-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
	border: 1px solid rgba(255, 255, 255, 0.3);
}
.festival-card h6 {
  margin: 0 0 10px 0;
  font-size: 1rem;
  font-weight: 600;
}
.festival-card p {
  font-size: 0.9rem;
  color: #ddd;
  margin: 0;
}

/* Facebook Share Button */
.fb-share {
  margin-top: 40px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .parallax-bg {
    background-attachment: scroll; /* better on mobile */
  }
}

/* ===============================
   EDITORIAL PARALLAX SECTION
================================= */
.wf-editorial2{
  color:white;
}

.wf-editorial2-bg{
  position:absolute;
  inset:-100px 0 0 0;
  background:url("https://images.unsplash.com/photo-1507874457470-272b3c8d8ee2") center/cover;
  z-index:0;
  will-change:transform;
}

.wf-editorial2-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.7);
  z-index:1;
}

.wf-editorial2-content{
  max-width:760px;
}

/* ===============================
   EDITORIAL PARALLAX SECTION
================================= */

.wf-editorial{
  color:white;
}

.wf-editorial-bg{
  position:absolute;
  inset:-100px 0 0 0;
  background:url("https://www.wildfestivals.co.uk/images/bandcrowd3.jpg") center/cover;
  z-index:0;
  will-change:transform;
}

.wf-editorial-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.7);
  z-index:1;
}

.wf-grain{
  position:absolute;
  inset:0;
  opacity:.07;
  pointer-events:none;
  z-index:2;
  background-image:url("https://grainy-gradients.vercel.app/noise.svg");
}

.wf-floating-word{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  font-size:clamp(120px,18vw,280px);
  font-weight:900;
  letter-spacing:25px;
  color:rgba(255,255,255,.05);
  z-index:2;
  white-space:nowrap;
}

.wf-editorial-content{
  max-width:760px;
}
/* =========================================
   HEADER PLAIN TEXT ROW
========================================= */

.wf-section--heads {

 background: #c21500;  /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #ffc500, #c21500);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #ffc500, #c21500); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
	padding-top: 0px;
	padding-bottom: 30px;
	text-align: center;
}

.wf-narrowheads {
  max-width: 1200px;
  width: 85%;
  padding: 0px 0;
}

/* =========================================
   REPEATABLE PLAIN TEXT ROW
========================================= */

.wf-narrow {
  width: 85%;
  max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}

.wf-section--plain {

  background-image: url("https://www.wildfestivals.co.uk/images/Hamps/PXL_20250419_123530393.jpg");
  background-repeat: no-repeat;
  background-position: top;
  background-attachment: scroll;
	background-size: cover;
}

.wf-section--plain h2 {
	text-align: center;
	text-shadow: 2px 2px 0 #000000, 2px -2px 0 #000000, -2px 2px 0 #000000, -2px -2px 0 #000000, 2px 0px 0 #000000, 0px 2px 0 #000000, -2px 0px 0 #000000, 0px -2px 0 #000000;
}

.wf-section--plain p {
  font-size: clamp(18px, 1.3vw, 21px);
  line-height: 1.9;
	text-align: center;
	text-shadow: 2px 2px 0 #000000, 2px -2px 0 #000000, -2px 2px 0 #000000, -2px -2px 0 #000000, 2px 0px 0 #000000, 0px 2px 0 #000000, -2px 0px 0 #000000, 0px -2px 0 #000000;
}

.wf-section--plainb {

  background-image: url("https://www.wildfestivals.co.uk/staffslake.jpg");
  background-repeat: no-repeat;
  background-position: top;
  background-attachment: scroll;
	background-size: cover;
}
.wf-section--plain6 {

  background-image: url("https://www.wildfestivals.co.uk/revesby.webp");
  background-repeat: no-repeat;
  background-position: top;
  background-attachment: scroll;
	background-size: cover;
}

.wf-section--plain6 h2 {
	text-align: center;
	text-shadow: 2px 2px 0 #000000, 2px -2px 0 #000000, -2px 2px 0 #000000, -2px -2px 0 #000000, 2px 0px 0 #000000, 0px 2px 0 #000000, -2px 0px 0 #000000, 0px -2px 0 #000000;
}

.wf-section--plain6 p {
  font-size: clamp(18px, 1.3vw, 21px);
  line-height: 1.9;
	text-align: center;
	text-shadow: 2px 2px 0 #000000, 2px -2px 0 #000000, -2px 2px 0 #000000, -2px -2px 0 #000000, 2px 0px 0 #000000, 0px 2px 0 #000000, -2px 0px 0 #000000, 0px -2px 0 #000000;
}

.wf-section--plain5 {

  background-image: url("https://www.wildfestivals.co.uk/images/walesbck.jpg");
  background-repeat: no-repeat;
  background-position: top;
  background-attachment: scroll;
	background-size: cover;
}

.wf-section--plain5 h2 {
	text-align: center;
	text-shadow: 2px 2px 0 #000000, 2px -2px 0 #000000, -2px 2px 0 #000000, -2px -2px 0 #000000, 2px 0px 0 #000000, 0px 2px 0 #000000, -2px 0px 0 #000000, 0px -2px 0 #000000;
}

.wf-section--plain5 p {
  font-size: clamp(18px, 1.3vw, 21px);
  line-height: 1.9;
	text-align: center;
	text-shadow: 2px 2px 0 #000000, 2px -2px 0 #000000, -2px 2px 0 #000000, -2px -2px 0 #000000, 2px 0px 0 #000000, 0px 2px 0 #000000, -2px 0px 0 #000000, 0px -2px 0 #000000;
}

.wf-section--plain4 {
  background-image: url("https://www.wildfestivals.co.uk/images/Gloucs/hillside.jpg");
  background-repeat: no-repeat;
  background-position: top;
  background-attachment: scroll;
	background-size: cover;
}
.wf-section--plain4 h2 {
	text-align: center;
	text-shadow: 2px 2px 0 #000000, 2px -2px 0 #000000, -2px 2px 0 #000000, -2px -2px 0 #000000, 2px 0px 0 #000000, 0px 2px 0 #000000, -2px 0px 0 #000000, 0px -2px 0 #000000;
}

.wf-section--plain4 p {
  font-size: clamp(18px, 1.3vw, 21px);
  line-height: 1.9;
	text-align: center;
	text-shadow: 2px 2px 0 #000000, 2px -2px 0 #000000, -2px 2px 0 #000000, -2px -2px 0 #000000, 2px 0px 0 #000000, 0px 2px 0 #000000, -2px 0px 0 #000000, 0px -2px 0 #000000;
}

.wf-section--plainb h2 {
	text-align: center;
	text-shadow: 2px 2px 0 #000000, 2px -2px 0 #000000, -2px 2px 0 #000000, -2px -2px 0 #000000, 2px 0px 0 #000000, 0px 2px 0 #000000, -2px 0px 0 #000000, 0px -2px 0 #000000;
}

.wf-section--plainb p {
  font-size: clamp(18px, 1.3vw, 21px);
  line-height: 1.9;
	text-align: center;
	text-shadow: 2px 2px 0 #000000, 2px -2px 0 #000000, -2px 2px 0 #000000, -2px -2px 0 #000000, 2px 0px 0 #000000, 0px 2px 0 #000000, -2px 0px 0 #000000, 0px -2px 0 #000000;
}


/* =========================================
   REPEATABLE PLAIN TEXT ROW
========================================= */

.wf-section--plain2 {
  background-image: url("https://www.wildfestivals.co.uk/images/fancy3.jpg");
  background-repeat: no-repeat;
  background-position: right top;   /* keep right-hand side visible */
  background-attachment: fixed;
  background-size: cover;
}

.wf-narrow {
  width: 85%;
  max-width: 1200px;
	margin: 0 auto;
}

.wf-section--plain2 h2 {
  	text-align: center;
	text-shadow: 2px 2px 0 #000000, 2px -2px 0 #000000, -2px 2px 0 #000000, -2px -2px 0 #000000, 2px 0px 0 #000000, 0px 2px 0 #000000, -2px 0px 0 #000000, 0px -2px 0 #000000;
}

.wf-section--plain2 h4 {
  margin-top: 30px;
	text-align: center;
	text-shadow: 2px 2px 0 #000000, 2px -2px 0 #000000, -2px 2px 0 #000000, -2px -2px 0 #000000, 2px 0px 0 #000000, 0px 2px 0 #000000, -2px 0px 0 #000000, 0px -2px 0 #000000;
}

.wf-section--plain2 p {
  font-size: clamp(18px, 1.3vw, 21px);
  line-height: 1.9;
	text-align: center;
	text-shadow: 2px 2px 0 #000000, 2px -2px 0 #000000, -2px 2px 0 #000000, -2px -2px 0 #000000, 2px 0px 0 #000000, 0px 2px 0 #000000, -2px 0px 0 #000000, 0px -2px 0 #000000;
}

/* =========================================
   REPEATABLE PLAIN TEXT ROW
========================================= */

.wf-section.wf-section--plain3{
  background-image: url("https://www.wildfestivals.co.uk/images/essback.jpg");
  background-repeat: no-repeat;
  background-position: top;
  background-attachment: scroll;
	background-size: cover;
}

.wf-section--plain3 h2 {
  	text-align: center;
	text-shadow: 2px 2px 0 #000000, 2px -2px 0 #000000, -2px 2px 0 #000000, -2px -2px 0 #000000, 2px 0px 0 #000000, 0px 2px 0 #000000, -2px 0px 0 #000000, 0px -2px 0 #000000;
}

.wf-section--plain3 h4 {
  margin-top: 30px;
	text-align: center;
	text-shadow: 2px 2px 0 #000000, 2px -2px 0 #000000, -2px 2px 0 #000000, -2px -2px 0 #000000, 2px 0px 0 #000000, 0px 2px 0 #000000, -2px 0px 0 #000000, 0px -2px 0 #000000;
}

.wf-section--plain3 p {
  font-size: clamp(18px, 1.3vw, 21px);
  line-height: 1.9;
	text-align: center;
	text-shadow: 2px 2px 0 #000000, 2px -2px 0 #000000, -2px 2px 0 #000000, -2px -2px 0 #000000, 2px 0px 0 #000000, 0px 2px 0 #000000, -2px 0px 0 #000000, 0px -2px 0 #000000;
}

/* ===============================
   BACKGROUND STRIP
================================= */

.wf-background-strip{
  height:500px;
  background:url("https://images.unsplash.com/photo-1497032205916-ac775f0649ae") center/cover fixed;
}

/* ===============================
   VIDEO SECTION
================================= */

.wf-video-section{
  position:relative;
  top: 0px;
  height:55vh;
  overflow:hidden;
}

.wf-video-section h2{
	color:#F9FF00;
text-shadow: 2px 2px 0 #000000, 2px -2px 0 #000000, -2px 2px 0 #000000, -2px -2px 0 #000000, 2px 0px 0 #000000, 0px 2px 0 #000000, -2px 0px 0 #000000, 0px -2px 0 #000000;
}

.wf-video-section p{
text-shadow: 2px 2px 0 #000000, 2px -2px 0 #000000, -2px 2px 0 #000000, -2px -2px 0 #000000, 2px 0px 0 #000000, 0px 2px 0 #000000, -2px 0px 0 #000000, 0px -2px 0 #000000;
}

@media (max-width: 768px) {

 .wf-video-section{
  position:relative;
  top: 0px;
  overflow:hidden;
	}
}
.wf-video-section video{
  position:absolute;
  width:100%;
  height:100%;
  object-fit:cover;
}

.wf-video-section::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.5);
}

.wf-video-overlay{
  position:relative;
  z-index:2;
  color:white;
  text-align:center;
  top:50%;
  transform:translateY(-50%);
  width: 85%;
  max-width: 1200px;
  margin: 0 auto;
}

.wf-video-overlay p{
	text-shadow: 2px 2px 0 #000000, 2px -2px 0 #000000, -2px 2px 0 #000000, -2px -2px 0 #000000, 2px 0px 0 #000000, 0px 2px 0 #000000, -2px 0px 0 #000000, 0px -2px 0 #000000;
}

.wf-video-overlay h2{
	text-shadow: 2px 2px 0 #000000, 2px -2px 0 #000000, -2px 2px 0 #000000, -2px -2px 0 #000000, 2px 0px 0 #000000, 0px 2px 0 #000000, -2px 0px 0 #000000, 0px -2px 0 #000000;
}

/* ===============================
   RESPONSIVE
================================= */

@media(max-width:900px){
  .wf-split{grid-template-columns:1fr;}
  .wf-gallery-grid{grid-template-columns:1fr 1fr;}
}

@media(max-width:600px){
  .wf-gallery-grid{grid-template-columns:1fr;}
  .wf-background-strip{background-attachment:scroll;}
}

/* =========================================
   WF PREMIUM INFINITE SLIDER 2026
========================================= */

.wf-slider {
  z-index: 10;
  width: 100%;
  position: relative;
  top: 50px;
  padding: 10px 0 20px;
  background: #f7f7f7;
  overflow: hidden;
  border: 0px solid;
  box-shadow: 0px 1px 18px 6px rgba(0,0,0,0.75);
}

@media(max-width:600px){
	.wf-slider {top: 0px;}
}

/* Viewport hides overflow fully */
.wf-slider-viewport {
  overflow: hidden;
  width: 100%;
  position: relative;
}

/* Track */
.wf-slider-track {
  display: flex;
  align-items: center;
  will-change: transform;
}

/* Individual slide */
.wf-slide {
  flex: 0 0 auto;
  padding: 6px; /* white border */
  background: #fff;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

/* Image */
.wf-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  transition: transform 0.6s ease;
}

/* Subtle parallax drift */
.wf-slide:hover img {
  transform: scale(1.05);
}

/* MAIN CONTAINER - Full width, glassy effect */
#WFcontainer{
  width: 100%;
  max-width: 1200px;
  color: white;
  font-family: Arial, sans-serif;
	margin:0 auto;
}

/* HEADER */
#WFtitle{
  text-align:center;
  background: rgba(0, 0, 0, 0.4);
  color: #fcea2e;
  border-radius:12px;
  padding:18px;
  text-shadow: 2px 2px 0 #000000, 2px -2px 0 #000000, -2px 2px 0 #000000, -2px -2px 0 #000000, 2px 0px 0 #000000, 0px 2px 0 #000000, -2px 0px 0 #000000, 0px -2px 0 #000000;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 80px 160px rgba(0, 0, 0, 0.35), 0 30px 60px rgba(0, 0, 0, 0.25), 0 12px 24px rgba(0, 0, 0, 0.18), 0 0 60px rgba(255, 255, 255, 0.25), inset 0 3px 0 rgba(255, 255, 255, 1), inset 0 -10px 22px rgba(0, 0, 0, 0.12);
}

/* CALENDAR */
#WFmonthContainer{
  background: rgba(0,0,0,0.4);
  border-radius:12px;
  padding:18px;
  text-shadow: none;
  box-shadow: 0 80px 160px rgba(0, 0, 0, 0.35), 0 30px 60px rgba(0, 0, 0, 0.25), 0 12px 24px rgba(0, 0, 0, 0.18), 0 0 60px rgba(255, 255, 255, 0.25), inset 0 3px 0 rgba(255, 255, 255, 1), inset 0 -10px 22px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255,255,255,0.3);
  margin-bottom: 20px;
  overflow: hidden; /* keep table inside container */
}

#WFmonthContainer table{
  width:100%;
  border-collapse:collapse;
  text-align:center;
  table-layout: fixed; /* ensures columns fit inside container */
}

/* WEEKDAYS AND DAYS - responsive font */
#WFmonthContainer th,
#WFmonthContainer td{
  padding: clamp(6px, 1vw, 12px);
  font-size: clamp(14px, 2vw, 22px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* WEEKDAYS */
.WFdays th{
  color:white;
  font-weight:600;
	text-shadow: 1px 1px 0 #000000, 1px -1px 0 #000000, -1px 1px 0 #000000, -1px -1px 0 #000000, 1px 0px 0 #000000, 0px 1px 0 #000000, -1px 0px 0 #000000, 0px -1px 0 #000000;
}

/* DISABLED DAYS */
.WFdisabled{
  color:#363534;
}

/* CLICKABLE DAYS - 3D buttons */
.WFclickable{
  cursor:pointer;
  border-radius:1rem;
  transition:0.2s;
  font-weight:600;
  padding: clamp(6px, 1vw, 10px) 0;
  font-size: clamp(14px, 1.8vw, 22px);
  overflow: hidden;
  text-overflow: ellipsis;
}

/* DEFAULT DAY COLORS */
.WFclickable[data-date]{
  color: #fcea2e;
  text-shadow: 1px 1px 0 #000000, 1px -1px 0 #000000, -1px 1px 0 #000000, -1px -1px 0 #000000, 1px 0px 0 #000000, 0px 1px 0 #000000, -1px 0px 0 #000000, 0px -1px 0 #000000;
}

/* HOVER */
.WFclickable:hover{
  background: rgba(255,255,255,0.2);
  color: black;
  transform: translateY(-2px);
}

/* SELECTED DAY */
.WFselected{
  background: rgba(255,255,255,0.6);
  color: #FF0004;
  transform: translateY(-2px);
	text-shadow: 1px 1px 0 #000000, 1px -1px 0 #000000, -1px 1px 0 #000000, -1px -1px 0 #000000, 1px 0px 0 #000000, 0px 1px 0 #000000, -1px 0px 0 #000000, 0px -1px 0 #000000;
}

/* ACCORDION */
#WFaccordionContainer{
  background: rgba(0,0,0,0.4);
  border-radius:12px;
  padding: clamp(12px, 2vw, 18px);
  border:1px solid rgba(255,255,255,0.2);
  overflow:hidden;
  color: white;
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}

/* TIME ROWS */
.WFtimeRow{
  display: block;
  text-align: center;
  margin-bottom: clamp(6px, 1vw, 12px);
  padding: clamp(4px, 0.8vw, 8px) 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  font-size: clamp(12px, 1.5vw, 14px);
}

.WFtime{
  font-weight: bold;
  color: white;
  margin-bottom: 4px;
  font-size: clamp(14px, 1.5vw, 18px);
	text-shadow: 1px 1px 0 #000000, 1px -1px 0 #000000, -1px 1px 0 #000000, -1px -1px 0 #000000, 1px 0px 0 #000000, 0px 1px 0 #000000, -1px 0px 0 #000000, 0px -1px 0 #000000;
}

.WFevent{
  display: block;
  text-align: center;
  color: #fcea2e;
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.3em;
	text-shadow: 1px 1px 0 #000000, 1px -1px 0 #000000, -1px 1px 0 #000000, -1px -1px 0 #000000, 1px 0px 0 #000000, 0px 1px 0 #000000, -1px 0px 0 #000000, 0px -1px 0 #000000;
}

/* ARROWS */
#WFarrowsContainer{
  display:flex;
  justify-content: space-between;
  align-items:center;
  margin-top:10px;
}

#WFselectedDateDisplay{
  flex:1;
  text-align:center;
  font-size: clamp(16px, 2vw, 22px);
  font-weight:600;
  color:#fcea2e;
	text-shadow: 1px 1px 0 #000000, 1px -1px 0 #000000, -1px 1px 0 #000000, -1px -1px 0 #000000, 1px 0px 0 #000000, 0px 1px 0 #000000, -1px 0px 0 #000000, 0px -1px 0 #000000;
}

#WFprevDay,
#WFnextDay {
  background-color: rgba(0, 0, 0, 0.6);
  width: clamp(44px, 5vw, 52px);
  height: clamp(44px, 5vw, 52px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px; /* softer iOS look */
  cursor: pointer;
  border: 2px solid #fcdc4d;
  padding: 0;
  transition: all 0.2s ease;
}

/* SVG styling */
#WFprevDay svg,
#WFnextDay svg {
  width: 22px;
  height: 22px;
  stroke: #fcdc4d;
  stroke-width: 3.5; /* Bold thickness */
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Hover effect */
#WFprevDay:hover,
#WFnextDay:hover {
  background-color: #fcdc4d;
}

#WFprevDay:hover svg,
#WFnextDay:hover svg {
  stroke: #000;
}

#WFprevDay:disabled, #WFnextDay:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}


/* CSS */
.festival-section {
  position: relative;
  width: 100%;
  min-height: 600px;
  background: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

/* Left leaves */
.leaf-left {
  position: absolute;
  left: 0;
  bottom: 50px;
  transform: translateX(-20%);
}

.leaf-left.leaf-shadow-2 {
  bottom: 30px; /* slightly offset */
  transform: translateX(-25%) scale(0.9);
}

/* Right leaves */
.leaf-right {
  position: absolute;
  right: 0;
  bottom: 50px;
  transform: translateX(20%);
}

.leaf-right.leaf-shadow-2 {
  bottom: 30px;
  transform: translateX(25%) scale(0.9);
}

/* Festival content */
.festival-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
}
.festival-content h1 {
  font-size: 3rem;
  color: #1f7a3a;
  margin-bottom: 1rem;
}
.festival-content p {
  font-size: 1.25rem;
  color: #333;
}
.textcenter {
	text-align: center;
}

/* ===== Responsive - Reusable Two Columns Row Container (Scoped) ===== */

.rc-row {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  position: relative; /* Allows layering above backgrounds/videos */
  z-index: 2;
  box-sizing: border-box;
}

.rc-col {
  flex: 1 1 50%;
  box-sizing: border-box;
  padding: 20px;
  min-width: 0; /* Prevents flex overflow */
}

/* Stack columns on tablets and mobile */
@media (max-width: 768px) {
  .rc-col {
    flex: 1 1 100%;
  }
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Container */
.slideshow {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: auto;
    height: 200px;
    text-align: center;
    overflow: hidden;
	background: transparent;
	color: #f9d423;
	font-family: 'EmbolismSparkRegular';
}
@media (max-width: 768px) {
  .slideshow {
    height: 200px;
  }
	  .slideshow h3 {
    height: 200px;
		  margin: 0px;
  }
}

/* Text items */
.slideshow span {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    opacity: 0;
    font-size: clamp(1.2rem, 4vw, 3rem);
    font-weight: 300;
    padding: 0 20px;
    transition: opacity 0.8s ease-in-out;
}


/* ===============================
   SECTION BACKGROUND + PARALLAX
================================= */

.camp-amenities {
  position: relative;
  padding: 100px 20px;
  background: #c21500;  /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #ffc500, #c21500);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #ffc500, #c21500); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
 display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;

  animation: bgReveal 1.5s ease-out forwards;
}

.camp-amenities::after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 35px;
    background-color: white;
    z-index: 10;
}

.camp-amenities::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 35px;
    background-color: white;
    z-index: 10;
}

@keyframes bgReveal {
  from {
    background-position: center 60%;
    opacity: 0;
  }
  to {
    background-position: center center;
    opacity: 1;
  }
}

/* ===============================
   CONTAINER
================================= */

.camp-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  text-align: center;
  color: #fff;
}

.camp-container h2 {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 70px;
  animation: fadeUp 0.8s ease forwards;
}

/* ===============================
   GRID
================================= */

.amenities-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: grid;
  gap: 32px;
}

/* Desktop: EXACT 3 columns */
@media (min-width: 992px) {

  .amenities-list {
    grid-template-columns: repeat(3, 1fr);
  }

  /* If 1 orphan (total % 3 = 1) */
  .amenities-list li:last-child:nth-child(3n + 1) {
    grid-column: 2;
  }

  /* If 2 orphans (total % 3 = 2) */
  .amenities-list li:nth-last-child(2):nth-child(3n + 1) {
    grid-column: 1;
  }

  .amenities-list li:last-child:nth-child(3n + 2) {
    grid-column: 3;
  }
}

/* Tablet: 2 columns */
@media (min-width: 600px) and (max-width: 991px) {
  .amenities-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: 1 column */
@media (max-width: 599px) {
  .amenities-list {
    grid-template-columns: 1fr;
  }
}

/* ===============================
   CARD STYLE
================================= */

.amenities-list li {
  padding: 28px;
  border-radius: 22px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.2);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.4;
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.0s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hover */
.amenities-list li:hover {
  transform: translateY(0px);
  transition: all 0.1s ease;
}

/* Responsive padding */
@media (max-width: 768px) {
  .camp-amenities {
    padding: 90px 16px;
  }
}
/* ===== Section Container ===== */
.location-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  font-family: sans-serif;
background: #c21500;  /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #ffc500, #c21500);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #ffc500, #c21500); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

/* ===== Top Row: Text ===== */
.location-text {
  max-width: 85%;
  margin: 0 auto;
  text-align: center;
}

.location-text h2 {
  margin-bottom: 20px;
}

.location-text p {
  margin-bottom: 30px;
}

.location-text .btn {
  display: inline-block;
  background: #007bff;
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.location-text .btn:hover {
  background: #0056b3;
}

/* ===== Bottom Row: Map ===== */
.location-map {
  width: 100%;
  height: 60vh; /* Adjust height as needed */
  position: relative;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .location-text h2 {
    font-size: 2rem;
  }

  .location-text p {
    font-size: 1rem;
  }
  
  .location-map {
    height: 50vh;
  }
}

/* =========================
WILD FESTIVAL FOOTER
========================= */

#wf-footer{

position:relative;

background:#c21500;

color:#ffffff;

padding:120px 0 60px;

overflow:hidden;
text-align: center;

}


/* =========================
BACKGROUND IMAGE
========================= */

#wf-footer::before{

content:"";

position:absolute;

top:0;
left:0;
right:0;
bottom:0;

background-image:url("../images/footer-bg.jpg");

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

opacity:0.25;

z-index:1;

}

.wf-footer-overlay{

position:absolute;
top:0;
left:0;
right:0;
bottom:0;
background: #c21500;  /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #ffc500, #c21500);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #ffc500, #c21500); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */


z-index:2;

}


/* =========================
INNER CONTAINER
========================= */

.wf-footer-inner{

position:relative;

z-index:3;

max-width:1200px;

margin:auto;

padding:0 40px;

}


/* =========================
GRID
========================= */

.wf-footer-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:80px;

align-items:start;

}


/* =========================
BLOCKS
========================= */

.wf-footer-block h2{

font-size:38px;

margin-bottom:20px;

}

.wf-footer-block p{

margin-bottom:20px;

line-height:1.6;

}

.wf-small{

font-size:14px;

opacity:0.8;

}


/* =========================
INPUTS
========================= */

#wf-footer input,
#wf-footer textarea{

width:100%;

padding:14px 16px;

border-radius:6px;

border:1px solid rgba(255,255,255,0.25);

background:rgba(255,255,255,0.08);

color:#fff;

margin-bottom:16px;

font-size:14px;

}

#wf-footer input::placeholder,
#wf-footer textarea::placeholder{

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

}


/* =========================
BUTTON
========================= */

#wf-footer .button{

margin-top:10px;

}

#wf-footer button img{

height:18px;

margin-right:8px;

vertical-align:middle;

}


/* =========================
BOTTOM COPYRIGHT
========================= */

.wf-footer-bottom{

margin-top:80px;

text-align:center;

border-top:1px solid rgba(255,255,255,0.2);

padding-top:30px;

}

.wf-footer-bottom ul{

list-style:none;

padding:0;

margin:0;

display:flex;

justify-content:center;

gap:30px;

font-size:14px;

opacity:0.85;

}


/* =========================
RESPONSIVE
========================= */

@media(max-width:900px){

.wf-footer-grid{

grid-template-columns:1fr;

gap:60px;

}

#wf-footer{

padding:90px 0 50px;

}

}

@media(max-width:600px){

.wf-footer-inner{

padding:0 25px;

}

.wf-footer-block h2{
font-size:30px;

}
}

.buttcenter {
  display: flex;
  justify-content: center;
  align-items: center;
}

.css-button-shadow-border--red {
  min-width: 130px;
  height: 40px;
  color: #fff;
  padding: 5px 10px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  outline: none;
  border-radius: 5px;
  border: none;
  box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5), 7px 7px 20px 0px rgba(0,0,0,.1), 4px 4px 5px 0px rgba(0,0,0,.1);
  background: #d90429;
  margin-bottom: 5px;
}
.css-button-shadow-border--red:hover {
  background-color: #ef233c;
}
.css-button-shadow-border--red:active {
  top: 2px;
}
/* SECTION BACKGROUND */

.z-camping-section{
background: rgba(194, 21, 0, 0.25); /* fallback color for old browsers */
background: -webkit-linear-gradient(to right, rgba(255, 197, 0, 1), rgba(194, 21, 0, 1));
background: linear-gradient(to right, rgba(255, 197, 0, 1), rgba(194, 21, 0, 1));
padding:20px 20px;
}

.z-camping-inner{
max-width:1200px;
margin:auto;
text-align:center;
}

/* INTRO PANEL */

.z-intro{
	background: transparent;
margin-bottom:30px;
}

/* MENU LINKS */

.z-menu{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:25px;
margin-top:20px;
}

.z-link{
cursor:pointer;
margin:0;
transition:0.2s;
} 

.z-link:hover{
transform:scale(1.05);
}

.z-link.active{
text-decoration:none;
	color:#F9FF00;
	text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.4), 0px 4px 6px rgba(0, 0, 0, 0.1), 0px 9px 11px rgba(0, 0, 0, 0.1);
	background: transparent;
}

/* SLIDER */

.z-slider{
position:relative;
overflow:hidden;
}

.z-track{
display:flex;
transition:transform 0.6s ease;
}

.z-card{
	background: rgba(255, 255, 255, 0.1);
min-width:100%;
padding:50px;
box-sizing:border-box;
	border: 1px solid rgba(230, 255, 0, 0.15);
	box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px;
}

/* ARROWS */

.z-arrow{
position:absolute;
top:50%;
transform:translateY(-50%);
background:red;
color:white;
border:none;
width:50px;
height:50px;
font-size:26px;
cursor:pointer;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
z-index:9999;
}

.z-left{
left:-10px;
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.z-right{
right:-10px;
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

/* MOBILE */

@media(max-width:700px){

.z-card{
padding:25px;
}

.z-menu{
gap:15px;
}

.z-link{
font-size:18px;
}

.z-arrow{
width:42px;
height:42px;
font-size:20px;
}

}
/* Section and video */
.glamping-luxury-video {
  position: relative;
  width: 100%;
  min-height: 100vh; /* Make it full screen if needed */
  overflow: hidden;
  text-align: center;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #fff;
}

.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
  filter: brightness(0.6); /* darken video for contrast */
}

.overlay-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 20px;
}

/* Headings and text */
.overlay-content h4 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 25px;
  letter-spacing: 1px;
  color: #F3FF00;
  text-shadow: 2px 2px 0 #000000, 2px -2px 0 #000000, -2px 2px 0 #000000, -2px -2px 0 #000000, 2px 0px 0 #000000, 0px 2px 0 #000000, -2px 0px 0 #000000, 0px -2px 0 #000000;
}

.overlay-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 2px 2px 0 #000000, 2px -2px 0 #000000, -2px 2px 0 #000000, -2px -2px 0 #000000, 2px 0px 0 #000000, 0px 2px 0 #000000, -2px 0px 0 #000000, 0px -2px 0 #000000;
}

/* Images */
.glamp-images {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 40px 0;
}

.glamp-img {
  width: 100%;
  max-width: 450px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glamp-img:hover {
  transform: scale(1.03);
  box-shadow: 0 25px 50px rgba(0,0,0,0.6);
}

/* Button styling */
.button-glamp {
  display: inline-block;
  margin: 30px 0;
  padding: 16px 36px;
  font-size: 1.1rem;
  font-weight: 600;
  background: linear-gradient(90deg, #ff7f50, #ff5722);
  color: #fff;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 12px 24px rgba(0,0,0,0.3);
}

.button-glamp:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .overlay-content h4 {
    font-size: 2rem;
  }
  .overlay-content p {
    font-size: 1rem;
  }
  .glamp-images {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .button-glamp {
    width: 100%;
    padding: 18px 0;
  }
}

/* Gradient background section matching WildFestivals */
.wild-two-col-gradient {
  padding: 60px 15px;
  background: #c21500; /* fallback */
  background: -webkit-linear-gradient(to right, #ffc500, #c21500);
  background: linear-gradient(to right, #ffc500, #c21500);
  color: #fff;
}

.wild-two-col__wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1240px;
  margin: 0 auto;
}

.wild-two-col__image {
  flex: 1 1 40%;
}

.wild-two-col__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
}

.wild-two-col__text {
  flex: 1 1 55%;
	text-align: center;
}

.wild-two-col__text h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 600;
  color: #fff;
}

.wild-two-col__text p {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #fff;
}

/* Buttons matching WildFestivals */
.wild-two-col .btn--primary {
  background: #fff;
  color: #c21500;
  padding: 12px 26px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  transition: 0.3s ease;
}

.wild-two-col .btn--primary:hover {
  background: linear-gradient(to right, #ffc500, #c21500);
  color: #fff;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .wild-two-col__wrapper {
    flex-direction: column;
    text-align: center;
  }
  .wild-two-col__image,
  .wild-two-col__text {
    flex: 1 1 100%;
  }
  .wild-two-col__text h2 {
    font-size: 1.75rem;
  }
}

.boat-race-winners {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

.boat-race-winners li {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 500;
}

.crown {
  font-size: 22px;
  margin-right: 10px;
  color: #ffc500;
  text-shadow:
    0 0 6px rgba(0,0,0,0.7),
    0 0 12px rgba(0,0,0,0.5),
    0 0 20px rgba(0,0,0,0.3);
}
/* =============================

/*HOME-HERO - two columns home page video n text*/
.wfhme-hero{
width:100%;
overflow:hidden;
font-family:Arial, Helvetica, sans-serif;
}

/* GRID LAYOUT */

.wfhme-hero-grid{
display:grid;
grid-template-columns:1fr auto;
align-items:stretch;
width:100%;
}

/* VIDEO COLUMN */

.wfhme-hero-video-col{
position:relative;
width:100%;
overflow:hidden;
background:#000;
}

/* VIDEO */

.wfhme-hero-video{
width:100%;
height:100%;
object-fit:cover;
display:block;
}

/* TEXT COLUMN */

.wfhme-hero-text-col{
display:flex;
align-items:center;
justify-content:center;
background: #c21500;
background: -webkit-linear-gradient(to right, #ffc500, #c21500);
background: linear-gradient(to right, #ffc500, #c21500);
color:white;
padding:4vw 3vw;
min-width:340px;
}

.wfhme-hero-text-inner{
max-width:420px;
text-align:center;
}

/* TYPOGRAPHY */

.wfhme-hero-title{
font-size:clamp(28px,2.4vw,42px);
margin:0;
font-weight:700;
}

.wfhme-hero-offer{
font-size:clamp(48px,5vw,90px);
margin:0.4em 0 0.4em 0;
font-weight:900;
	color: #F9FF00;
}

.wfhme-hero-desc{
font-size:clamp(14px,1.1vw,18px);
margin-bottom:1.6em;
letter-spacing:1px;
}

/* BUTTON */

.wfhme-hero-btn{
background:white;
color:black;
border:none;
padding:14px 34px;
font-weight:700;
cursor:pointer;
}

/* TABLET */

@media (max-width:1024px){

.wfhme-hero-grid{
grid-template-columns:1fr 40%;
}

.wfhme-hero-text-col{
min-width:0;
}

}

/* MOBILE */

@media (max-width:768px){

.wfhme-hero-grid{
grid-template-columns:1fr;
}

.wfhme-hero-video-col{
aspect-ratio:16/9;
}

.wfhme-hero-video{
height:100%;
}

.wfhme-hero-text-col{
padding:20px 20px;
}

.wfhme-hero-offer{
font-size:56px;
line-height: 58px;
	color:#F9FF00;
	text-align: center;
	padding-top: 30px;
}

}
/* ============================= */
/* TWO COLUMN GRID START - GLOBAL STRUCTURE FIXES */
/* ============================= */
.wfhme-banner{
width:100%;
font-family:Arial, Helvetica, sans-serif;
overflow:hidden;
}

.wfhme-banner *,
.wfhme-banner{
box-sizing:border-box;
}

/* GRID */

.wfhme-banner-grid{
display:grid;
grid-template-columns:1fr 1fr;
min-height:420px;
}

/* IMAGE SIDE */

.wfhme-banner-image-wrap{
position:relative;
width:100%;
overflow:hidden;
background:#000;
}

.wfhme-banner-image-link{
position:absolute;
inset:0;
display:block;
width:100%;
height:100%;
}

.wfhme-banner-picture{
display:block;
width:100%;
height:100%;
}

.wfhme-banner-image{
position:absolute;
inset:0;
width:100%;
height:100%;
object-fit:cover;
object-position:center;
}

/* PRICE TAGS */

.wfhme-price-tag{
position:absolute;
background:#c21500;
color:#fff;
font-weight:700;
padding:12px 18px;
clip-path: polygon(100% 100%, 0 100%, 0 22%, 12% 0, 100% 0);
box-shadow:0 3px 6px rgba(0,0,0,0.2);
}

.wfhme-price-tag-left{
position:absolute;
background:#c21500;
color:#fff;
font-weight:700;
padding:12px 18px;
clip-path: polygon(0 100%, 100% 100%, 100% 22%, 88% 0, 0 0);
box-shadow:0 3px 6px rgba(0,0,0,0.2);
}

.wfhme-price-prefix{
font-size:14px;
}

/* LEFT PRICE */

.wfhme-price-left{
left:0px;
bottom:0px;
font-size:18px;
}

/* RIGHT PRICE */

.wfhme-price-right{
right:0px;
bottom:0px;
font-size:16px;
font-weight:600;
}

/* CONTENT SIDE */

.wfhme-banner-content{
display:flex;
align-items:center;
justify-content:center;
    background: #c21500;
    background: -webkit-linear-gradient(to right, #ffc500, #c21500);
    background: linear-gradient(to right, #ffc500, #c21500);
color:#fff;
padding:60px;
	text-align: center;
}

.wfhme-banner-content-inner{
max-width:520px;
}

.wfhme-banner-title{
font-size:36px;
}

.wfhme-banner-summary{
font-size:18px;
margin-bottom:30px;
line-height:1.6;
}

.wfhme-banner-btn{
padding: 12px 24px;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(90deg, #ff7f50, #ff5722);
    color: #fff;
    border-radius: 12px;
    border: 1px solid #000000;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
cursor:pointer;
}

/* MOBILE */

@media (max-width:900px){

.wfhme-banner-grid{
grid-template-columns:1fr;
}

.wfhme-banner-image-wrap{
aspect-ratio:16/9;
}

.wfhme-banner-content{
padding:40px 25px;
}

}

 /*boxlink banner*/
/*boxlink banner*/

.wfhme-boxed-link-banner{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:24px;
  padding:22px 32px;
  background:#c21500;
  color:#ffffff;
  font-family:Arial, Helvetica, sans-serif;
  overflow:hidden;
}

.wfhme-boxed-link-banner,
.wfhme-boxed-link-banner *{
  box-sizing:border-box;
}

.wfhme-boxed-link-banner__copy{
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.wfhme-boxed-link-banner__copy p{
  margin:0;
  font-size:clamp(16px,1.1vw,22px);
  line-height:1.3;
  font-weight:700;
  text-transform:uppercase;
}

.wfhme-boxed-link-banner__button-wrap{
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
}

.wfhme-boxed-link-banner__link{
  text-decoration:none;
}

.wfhme-boxed-link-banner__button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 24px;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(90deg, #ff7f50, #ff5722);
    color: #fff;
    border-radius: 12px;
    border: 1px solid #000000;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
cursor:pointer;
}

.wfhme-boxed-link-banner__button span{
  display:block;
}

@media (max-width:768px){
  .wfhme-boxed-link-banner{
    flex-direction:column;
    gap:18px;
    padding:24px 20px;
  }

  .wfhme-boxed-link-banner__button{
    min-width:140px;
    padding:14px 26px;
  }
}
/* Second link banner*/


.wfhme-boxed-link-banner2{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:24px;
  padding:22px 32px;
  background:#c21500;
  color:#ffffff;
  font-family:Arial, Helvetica, sans-serif;
  overflow:hidden;
}

.wfhme-boxed-link-banner2,
.wfhme-boxed-link-banner2 *{
  box-sizing:border-box;
}

.wfhme-boxed-link-banner2__copy{
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.wfhme-boxed-link-banner2__copy p{
 margin:0;
  font-size:clamp(16px,1.1vw,22px);
  line-height:1.3;
  font-weight:700;
  text-transform:uppercase;
}

.wfhme-boxed-link-banner2__button-wrap{
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
}

.wfhme-boxed-link-banner2__link{
  text-decoration:none;
}

.wfhme-boxed-link-banner2__button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 24px;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(90deg, #ff7f50, #ff5722);
    color: #fff;
    border-radius: 12px;
    border: 1px solid #000000;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
cursor:pointer;
	margin: 5px;
}

.wfhme-boxed-link-banner2__button span{
  display:block;
}

@media (max-width:768px){
  .wfhme-boxed-link-banner2{
    flex-direction:column;
    gap:18px;
    padding:24px 20px;
  }

  .wfhme-boxed-link-banner2__button{
    min-width:140px;
    padding:14px 26px;
  }
}


/* Third link banner*/


.wfhme-boxed-link-banner3{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:24px;
  padding:22px 32px;
  background:#c21500;
  color:#ffffff;
  font-family:Arial, Helvetica, sans-serif;
  overflow:hidden;
}

.wfhme-boxed-link-banner3,
.wfhme-boxed-link-banner3 *{
  box-sizing:border-box;
}

.wfhme-boxed-link-banner3__copy{
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.wfhme-boxed-link-banner3__copy p{
  margin:0;
  font-size:clamp(16px,1.1vw,22px);
  line-height:1.3;
  font-weight:700;
  text-transform:uppercase;
}

.wfhme-boxed-link-banner3__button-wrap{
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
}

.wfhme-boxed-link-banner3__link{
  text-decoration:none;
}

.wfhme-boxed-link-banner3__button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 24px;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(90deg, #ff7f50, #ff5722);
    color: #fff;
    border-radius: 12px;
    border: 1px solid #000000;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
cursor:pointer;
	margin: 5px;
}

.wfhme-boxed-link-banner3__button span{
  display:block;
}

@media (max-width:768px){
  .wfhme-boxed-link-banner3{
    flex-direction:column;
    gap:18px;
    padding:24px 20px;
  }

  .wfhme-boxed-link-banner3__button{
    min-width:140px;
    padding:14px 26px;
  }
}


/* Second link banner*/


.wfhme-boxed-link-banner4{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:24px;
  padding:22px 32px;
  background:#c21500;
  color:#ffffff;
  font-family:Arial, Helvetica, sans-serif;
  overflow:hidden;
}

.wfhme-boxed-link-banner4,
.wfhme-boxed-link-banner4 *{
  box-sizing:border-box;
}

.wfhme-boxed-link-banner4__copy{
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.wfhme-boxed-link-banner4__copy p{
  margin:0;
  font-size:clamp(16px,1.1vw,22px);
  line-height:1.3;
  font-weight:700;
  text-transform:uppercase;
}

.wfhme-boxed-link-banner4__button-wrap{
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
}

.wfhme-boxed-link-banner4__link{
  text-decoration:none;
}

.wfhme-boxed-link-banner4__button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 24px;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(90deg, #ff7f50, #ff5722);
    color: #fff;
    border-radius: 12px;
    border: 1px solid #000000;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
cursor:pointer;
	margin: 5px;
}

.wfhme-boxed-link-banner4__button span{
  display:block;
}

@media (max-width:768px){
  .wfhme-boxed-link-banner4{
    flex-direction:column;
    gap:18px;
    padding:24px 20px;
  }

  .wfhme-boxed-link-banner4__button{
    min-width:140px;
    padding:14px 26px;
  }
}

/* Second link banner*/


.wfhme-boxed-link-banner5{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:24px;
  padding:22px 32px;
  background:#c21500;
  color:#ffffff;
  font-family:Arial, Helvetica, sans-serif;
  overflow:hidden;
}

.wfhme-boxed-link-banner5,
.wfhme-boxed-link-banner5 *{
  box-sizing:border-box;
}

.wfhme-boxed-link-banner5__copy{
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.wfhme-boxed-link-banner5__copy p{
  margin:0;
  font-size:clamp(16px,1.1vw,22px);
  line-height:1.3;
  font-weight:700;
  text-transform:uppercase;
}

.wfhme-boxed-link-banner5__button-wrap{
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
}

.wfhme-boxed-link-banner5__link{
  text-decoration:none;
}

.wfhme-boxed-link-banner5__button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 24px;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(90deg, #ff7f50, #ff5722);
    color: #fff;
    border-radius: 12px;
    border: 1px solid #000000;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
cursor:pointer;
	margin: 5px;
}

.wfhme-boxed-link-banner5__button span{
  display:block;
}

@media (max-width:768px){
  .wfhme-boxed-link-banner5{
    flex-direction:column;
    gap:18px;
    padding:24px 20px;
  }

  .wfhme-boxed-link-banner5__button{
    min-width:140px;
    padding:14px 26px;
  }
}


/* Second link banner*/


.wfhme-boxed-link-banner6{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:24px;
  padding:22px 32px;
  background:#c21500;
  color:#ffffff;
  font-family:Arial, Helvetica, sans-serif;
  overflow:hidden;
}

.wfhme-boxed-link-banner6,
.wfhme-boxed-link-banner6 *{
  box-sizing:border-box;
}

.wfhme-boxed-link-banner6__copy{
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.wfhme-boxed-link-banner6__copy p{
  margin:0;
  font-size:clamp(16px,1.1vw,22px);
  line-height:1.3;
  font-weight:700;
  text-transform:uppercase;
}
.wfhme-boxed-link-banner6__button-wrap{
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
}

.wfhme-boxed-link-banner6__link{
  text-decoration:none;
}

.wfhme-boxed-link-banner6__button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 24px;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(90deg, #ff7f50, #ff5722);
    color: #fff;
    border-radius: 12px;
    border: 1px solid #000000;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
cursor:pointer;
	margin: 5px;
}

.wfhme-boxed-link-banner6__button span{
  display:block;
}

@media (max-width:768px){
  .wfhme-boxed-link-banner6{
    flex-direction:column;
    gap:18px;
    padding:24px 20px;
  }

  .wfhme-boxed-link-banner6__button{
    min-width:140px;
    padding:14px 26px;
  }
}

/* ============================= */
/* PAGE WRAPPER (no body used)  */
/* ============================= */

:root{
  --wf-green:#1f7a63;
  --wf-yellow:#f4c542;
  --wf-white:#ffffff;
}

.wf-reviews{
  width:100%;
  padding:0px 20px;
  box-sizing:border-box;
  display:flex;
  justify-content:center;
}

.wf-wrap{
  width:85%;
  max-width:1400px;
  margin:auto;
  display:grid;
  grid-template-columns:280px 1fr;
  gap:30px;
  align-items:center;
}

/* Rating */
.wf-rating{
  text-align:center;
  box-shadow:none;
  display:flex;
  flex-direction:column;
  justify-content:center;
  box-sizing:border-box;
}

.wf-stars{
  font-size:30px;
  color:var(--wf-yellow);
  letter-spacing:5px;
  animation:wfPulse 2s infinite ease-in-out;
  text-shadow:none;
}

@keyframes wfPulse{
  0%,100%{transform:scale(1)}
  50%{transform:scale(1.12)}
}

.wf-rating-text{
  margin-top:10px;
  color:var(--wf-green);
  font-size:25px;
  padding-bottom:10px;
  text-shadow:none;
}

/* Carousel */
.wf-carousel{
  position:relative;
  overflow:hidden;
  min-height:0;
  height:auto;
  transition:height .9s ease;
}

/* Review cards */
.wfff-card{
  background:var(--wf-white);
  border-radius:20px;
  padding:30px 30px 55px; /* added 35px extra bottom padding */
  box-shadow:none;
  display:flex;
  gap:18px;
  align-items:flex-start;
  opacity:0;
  transition:opacity .9s ease;
  position:absolute;
  left:0;
  right:0;
  top:0;
  transform:none;
  pointer-events:none;
  box-sizing:border-box;
  width:100%;
}

.wfff-card.active{
  opacity:1;
  pointer-events:auto;
}

.wf-avatar{
  width:60px;
  height:60px;
  border-radius:50%;
  object-fit:cover;
  border:3px solid var(--wf-yellow);
  flex-shrink:0;
}

.wf-text{
  font-size:20px;
  line-height:1.4;
  margin-bottom:10px;
  color:#000000;
  text-shadow:none;
  overflow-wrap:break-word;
  word-break:normal;
}

.wf-user{
  font-weight:700;
  color:var(--wf-green);
  font-size:15px;
  text-shadow:none;
}

/* Mobile */
@media (max-width:768px){

  .wf-wrap{
    width:85%;
    grid-template-columns:1fr;
  }

  .wf-rating{
    flex-direction:row;
    gap:12px;
    align-items:center;
    justify-content:center;
    min-height:120px;
  }

  .wf-stars{
    font-size:22px;
  }

  .wf-carousel{
    min-height:0;
  }

  .wfff-card{
    padding:22px 20px 53px; /* keeps 35px bottom spacing on mobile */
    gap:14px;
  }

  .wf-text{
    font-size:18px;
    line-height:1.5;
  }
}

@media (max-width:480px){

  .wf-wrap{
    width:100%;
  }

  .wfff-card{
    padding:18px 16px 51px;
    gap:12px;
  }

  .wf-avatar{
    width:52px;
    height:52px;
  }

  .wf-text{
    font-size:17px;
    line-height:1.5;
  }

  .wf-user{
    font-size:14px;
  }

}

.container promo-section {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.promo-section {
  padding: 4rem 0;
  background: #f9f9f9;
}

.promo-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.promo-card {
  flex: 1 1 300px;
  background: white;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
}

.promo-card h3 {
  color: #d1002d;
  margin-top: 1rem;
}

.hero-carousel {
  overflow: hidden;
  width: 100%;
  perspective: 1800px;
  padding-top: 45px;
}

/* SCALE ENTIRE CAROUSEL */
.carousel-scale {
  transform: scale(1.2);
  transform-origin: center center;
}

.carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 40px;
  padding-top: 10px;
}

.flip-card {
  flex: 0 0 auto;
  width: 240px;
  height: 240px;
  position: relative;
  border-radius: 12px;
}

.flip-card-front {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 5px solid white;
}

.flip-card-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wf-banner{
  width:100%;
  height:420px;
  overflow:hidden;
}

.wf-banner img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* Mobile resize (50% height) */
@media (max-width:768px){

  .wf-banner{
    height:210px;
  }

}
.buttcent {
	width:100%;
	 text-align:center;
}

/*Cookie Consent Begin*/
#cookieConsent {
    background: #c21500;
    background: -webkit-linear-gradient(to right, #ffc500, #c21500);
    background: linear-gradient(to right, #ffc500, #c21500);
    min-height: 46px;
    font-size: 14px;
    color: #ccc;
    line-height: 26px;
    padding: 8px 0 8px 30px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    z-index: 9999;
    text-align: center;
}
#cookieConsent a {
    color: rgba(250,213,2,0.6);
    text-decoration: none;
}
#closeCookieConsent {
    display: inline-block;
    cursor: pointer;
    height: 20px;
    width: 20px;
    margin: -15px 0 0 0;
    font-weight: bold;
}
#closeCookieConsent:hover {
    color: #FFF;
	text-decoration: none;
}
#cookieConsent a.cookieConsentOK {
    background-color: rgba(250,213,2,1);
    color: #000;
    display: inline-block;
    border-radius: 5px;
    padding: 0 20px;
    cursor: pointer;
    margin: 0 60px 0 10px;
    transition: background-color 650ms;
	text-decoration: none;
}
#cookieConsent a.cookieConsentOK:hover {
    background-color: rgba(250,213,2,1);
}
/*Cookie Consent End*/

.wfhme-two-col-section {
  width: 100%;
  padding: 60px 5%;
  background: #c21500;
  background: -webkit-linear-gradient(to right, #ffc500, #c21500);
  background: linear-gradient(to right, #ffc500, #c21500);
  box-sizing: border-box;
	margin: 0 auto;
}

.wfhme-two-col-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  max-width: 1440px;
  margin: 0 auto;
}

.wfhme-two-col-section__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}

.wfhme-two-col-section__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
	text-align: center;
}

/* Responsive Stack */
@media (max-width: 900px) {
  .wfhme-two-col-section__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .wfhme-two-col-section {
    padding: 40px 5%;
  }
}

/* Short weekday letters on small screens */
.WFday-short{display:none;}

@media (max-width:600px){
  .WFday-full{display:none;}
  .WFday-short{display:inline;}
}

/* Accordian Info */


.accordion {
  color: #fbe92d;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  outline: none;
  font-weight: 300;
  font-size: 1.2em;
  line-height: 1.75em;
  letter-spacing: 0.025em;
  transition: 0.4s;
  text-align: center;
  border-radius: 0.35em;
background-color: #2B5434;
}

.active, .accordion:hover {
  background-color: #fbe92d;
  color: #000000;
}

.accordion:after {
  content: '\002B';
  color: #000000;
  font-weight: bold;
  float: right;
  margin-left: 5px;
	border-radius: 0.35em;
}

.active:after {
  content: "\2212";
}

.panel {
  text-align: left;
  background: linear-gradient(to right, #ffc500, #c21500);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  text-shadow: none;
  margin: auto;
  margin-top: 3px;
  border-radius: 0.35em;
  width: 100%;
}

.panel p {
	text-align: center;
}

.panel li {
	text-align: center;
	padding: 1.4em;
}

.panel img {
	margin-left: auto;
	margin-right: auto;
	display: block;
	border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.panel .button.style3 {
	margin-left: auto;
	margin-right: auto;
	display: block;
}
.panelcont {
	padding: 30px 10px 30px 10px;
	margin: auto;
	width: 95%;
}

.panelcont h2 {
	padding: 10px 0px 0px 5px;
}

.panelcontb {
	padding: 10px;
	margin: auto;
	max-width: 200px;
	height:auto;
}

.fb-plugins-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
}

.fb-post-container {
  width: 100%;
  max-width: 500px;
  box-sizing: border-box;
}

:root {
  --wf-yellow: #ffc500;
  --wf-red: #c21500;
  --wf-green: #01352c;
  --wf-mint: #4aa192;
  --wf-white: #ffffff;
  --wf-ink: #111111;
  --wf-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --wf-radius: 24px;
}

/* SECTION */
.wf-gallery2026 {
  position: relative;
  padding: 70px 20px;
  background: #c21500;
  background: -webkit-linear-gradient(to right, #ffc500, #c21500);
  background: linear-gradient(to right, #ffc500, #c21500);
  overflow: hidden;
}

.wf-gallery2026::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  mix-blend-mode: soft-light;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.22) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 30%, rgba(0,0,0,.18) 0 1px, transparent 1px),
    radial-gradient(circle at 50% 80%, rgba(255,255,255,.16) 0 1px, transparent 1px);
  background-size: 26px 26px, 34px 34px, 42px 42px;
  z-index: 0;
}

.wf-gallery2026-intro,
.wf-gallery2026-grid {
  width: min(1400px, 92vw);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.wf-gallery2026-intro {
  text-align: center;
  margin-bottom: 36px;
}

.wf-gallery2026-intro h2 {
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-shadow: 0 10px 30px rgba(0,0,0,.2);
}

.wf-gallery2026-intro p {
  max-width: 800px;
  margin: 0 auto;
  color: rgba(255,255,255,.92);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.7;
  text-shadow: 0 4px 12px rgba(0,0,0,.2);
}

/* MASONRY */
.wf-gallery2026-grid {
  column-count: 4;
  column-gap: 22px;
}

/* CARD */
.wf-photo-card {
  position: relative;
  margin: 0 0 22px;
  break-inside: avoid;
  border-radius: var(--wf-radius);
  overflow: hidden;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 18px 44px rgba(0,0,0,0.22);
  transform: translateY(0);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
  cursor: zoom-in;
  min-height: 280px;
  isolation: isolate;
}

.wf-photo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 70px rgba(0,0,0,0.26);
}

.wf-photo-media {
  position: relative;
  overflow: hidden;
  min-height: inherit;
  background: rgba(1,53,44,.12);
}

.wf-photo-img {
  width: 100%;
  height: 110%;
  object-fit: cover;
  display: block;
  transform: translateY(var(--parallax, 0px)) scale(1.08);
  transition: transform 0.2s linear;
  will-change: transform;
}

.wf-photo-halo {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.08), transparent 36%);
  z-index: 1;
  pointer-events: none;
}

.wf-photo-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 42px 18px 18px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.16) 20%, rgba(0,0,0,.7));
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  z-index: 2;
}

.wf-photo-meta {
  display: grid;
  gap: 8px;
}

.wf-photo-tag {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.67rem;
  color: #fff;
}

.wf-photo-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}

.wf-photo-index {
  font-size: 0.84rem;
  color: rgba(255,255,255,.82);
  white-space: nowrap;
}

/* LIGHTBOX */
.wf-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,.82);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
  padding: 24px;
}

.wf-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.wf-lightbox-dialog {
  width: min(1200px, 100%);
  max-height: 100%;
  display: grid;
  gap: 14px;
}

.wf-lightbox-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  color: #fff;
}

.wf-lightbox-close {
  min-width: 46px;
  height: 46px;
  border: 0;
  cursor: pointer;
  color: #fff;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  font-size: 1rem;
}

.wf-lightbox-viewer {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 30px 90px rgba(0,0,0,.38);
  min-height: 60vh;
  display: grid;
  place-items: center;
}

.wf-lightbox-viewer img {
  width: auto;
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  display: block;
}

.wf-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border: 0;
  cursor: pointer;
  color: #fff;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  font-size: 1.2rem;
  z-index: 2;
}

.wf-lightbox-prev { left: 16px; }
.wf-lightbox-next { right: 16px; }

/* RESPONSIVE */
@media (max-width: 1180px) {
  .wf-gallery2026-grid {
    column-count: 3;
  }
}

@media (max-width: 840px) {
  .wf-gallery2026-grid {
    column-count: 2;
  }

  .wf-gallery2026 {
    padding: 55px 16px;
  }
}

@media (max-width: 560px) {
  .wf-gallery2026-grid {
    column-count: 1;
  }

  .wf-photo-card {
    min-height: 240px;
  }

  .wf-lightbox {
    padding: 14px;
  }

  .wf-lightbox-viewer {
    min-height: 52vh;
  }

  .wf-lightbox-nav {
    width: 44px;
    height: 44px;
  }
}
.wwffwwff-video-banner {
  width: 100%;
  padding: 0;
  margin: 0;
}

.wwffwwff-video-shell {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  line-height: 0;
}

/* VIDEO */

.wwffwwff-video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* OVERLAY */

.wwffwwff-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
}

/* TEXT */

.wwffwwff-video-title {
  margin: 0;
  padding: 0 20px;

  font-family: inherit;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;

  color: #fff;

  font-size: clamp(2.5rem, 8vw, 7rem);
  line-height: 1;

  text-shadow:
    0 6px 20px rgba(0,0,0,.35),
    0 2px 8px rgba(0,0,0,.45);
}

/* MOBILE OPTIMISATION */

@media (max-width: 768px) {

  .wwffwwff-video-shell {
    min-height: auto;
  }

  .wwffwwff-video-title {
    font-size: clamp(2rem, 10vw, 4rem);
  }

}
.wwffwwff-video-textwrap{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:12px;
}

.wwffwwff-video-subtitle h3{
  margin:0;
  padding:0 20px;
  letter-spacing:.05em;
  text-align:center;
  text-shadow:
    0 6px 20px rgba(0,0,0,.35),
    0 2px 8px rgba(0,0,0,.45);
}

/* =======================================
   TRIPLE COLUMN WILD FESTIVALS SECTION
   keeps wfwfwf1 video classes for JS
   keeps wff1 flyer animation classes
======================================= */

.wfwfwf1-section{
  position:relative;
  width:100%;
  padding: 40px 0px 150px 0px;
  overflow:hidden;
}

/* BACKGROUND IMAGE */
.wfwfwf1-background{
  position:absolute;
  inset:0;
	background:
        linear-gradient(180deg, rgba(1,53,44,.18), rgba(1,53,44,.54) 42%, rgba(0,0,0,.74)),
        url('https://wildfestivals.co.uk/evenings.jpg') center/cover no-repeat;
      transform: scale(1.06);
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  z-index:0;
}

/* SAME HERO-STYLE OVERLAY */
.wfwfwf1-overlay{
  position:absolute;
  inset:0;
  z-index:1;
}

/* MAIN CONTAINER */
.wfwfwf1-shell{
  position:relative;
  z-index:2;
  width:min(1600px,94vw);
  margin:0 auto;
}

/* GRID */
.wfwfwf1-grid{
  display:grid;
  gap:32px;
  align-items:stretch;
}

.wfwfwf1-grid--triple{
  grid-template-columns:
    minmax(0,1fr)
    minmax(0,1fr)
    minmax(0,1fr);
}

.wfwfwf1-video-col,
.wfwfwf1-content-col,
.wff1-mediacol{
  display:flex;
  min-width:0;
}

/* =======================================
   COLUMN 1: VIDEO
======================================= */

.wfwfwf1-video-card{
  position:relative;
  width:100%;
  min-height:620px;
  height:100%;
  border-radius:16px;
  overflow:hidden;
  background:#000;
  border:1px solid rgba(255,255,255,.14);
  box-shadow:
    0 40px 90px rgba(0,0,0,.45),
    0 10px 24px rgba(0,0,0,.18);
  isolation:isolate;
}

.wfwfwf1-video-parallax-wrap{
  position:absolute;
  inset:0;
  overflow:hidden;
  background:#000;
}

.wfwfwf1-video{
  position:absolute;
  top:50%;
  left:50%;
  width:100%;
  height:100%;
  object-fit:cover;
  transform:
    translate(-50%,-50%)
    translate3d(0,var(--wfwfwf1-video-shift,0px),0)
    scale(1.05);
  transform-origin:center center;
  display:block;
  z-index:1;
  background:#000;
}

.wfwfwf1-video-shade{
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,.08),
      rgba(0,0,0,.16) 55%,
      rgba(0,0,0,.30)
    );
  z-index:2;
  pointer-events:none;
}

.wfwfwf1-video-glow{
  position:absolute;
  right:-8%;
  bottom:-14%;
  width:240px;
  height:240px;
  border-radius:50%;
  background:
    radial-gradient(circle, rgba(255,197,0,.35), rgba(255,197,0,0));
  filter:blur(18px);
  z-index:3;
  pointer-events:none;
}

.wfwfwf1-video-shine{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.16), transparent 18%, transparent 60%, rgba(0,0,0,.20)),
    linear-gradient(120deg, rgba(255,255,255,.10), transparent 35%);
  z-index:4;
  pointer-events:none;
}

/* =======================================
   COLUMN 2: TEXT
======================================= */

.wfwfwf1-content-card{
  width:100%;
  height:100%;
  padding: 10px 10px 10px 10px;
  border-radius:16px;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.14),
      rgba(255,255,255,.08)
    );
  border:1px solid rgba(255,255,255,.16);
  backdrop-filter:blur(14px);
  box-shadow:
    0 30px 80px rgba(0,0,0,.24),
    inset 0 1px 0 rgba(255,255,255,.22);
  display:flex;
  flex-direction:column;
  justify-content:center;
  text-align:center;
}

.wfwfwf1-content-card h2{
	margin-bottom: 10px;
	color:#FFEA00
}
.wfwfwf1-content-card p{
	
}

.wfwfwf1-title{
  margin:0 0 18px 0;
  color:#F9FF00;
  font-family:'BeaverPunch',sans-serif !important;
  font-size:clamp(42px,4.4vw,72px);
  line-height:clamp(46px,4.8vw,76px);
  font-weight:700;
  text-align:left;
  text-shadow:
    0px 4px 3px rgba(0,0,0,0.4),
    0px 8px 13px rgba(0,0,0,0.1),
    0px 18px 23px rgba(0,0,0,0.1);
}

.wfwfwf1-copy{
  margin:0 0 22px 0;
  font-family:'BeaverPunch',sans-serif !important;
  font-size:clamp(18px,1.15vw,21px);
  line-height:1.8;
  color:#fff;
  text-align:left;
  text-shadow:
    0px 2px 3px rgba(0,0,0,0.4),
    0px 4px 6px rgba(0,0,0,0.1),
    0px 9px 11px rgba(0,0,0,0.1);
}

.wff1-buttonwrap{
  display:inline-flex;
  width:fit-content;
  text-decoration:none;
  align-self:flex-start;
}

/* =======================================
   COLUMN 3: FLYERS
======================================= */

.wff1-mediacard{
  width:100%;
  height:100%;
  min-height:620px;
  border-radius:16px;
  overflow:hidden;
  position:relative;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.12),
      rgba(255,255,255,.05)
    );
  border:1px solid rgba(255,255,255,.16);
  box-shadow:
    0 30px 80px rgba(0,0,0,.28),
    0 10px 24px rgba(0,0,0,.18);
}

/* GALLERY WRAPPER */
.wff1-gallery{
  position:relative;
  width:100%;
  height:100%;
  min-height:inherit;
  margin:0;
  overflow:hidden;
}

/* STACKED LINKS */
.wff1-gallery a{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  margin:0 auto;
  left:0;
  right:0;
}

/* IMAGES */
.wff1-img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  opacity:0;
  animation:wff1fade 10s infinite;
  border-radius:0;
  box-shadow:none;
}

/* IMAGE DELAYS */
.wff1-img1{
  animation-delay:0s;
}

.wff1-img2{
  animation-delay:5s;
}

/* FADE ANIMATION — UNCHANGED */
@keyframes wff1fade{
  0%{opacity:0}
  10%{opacity:1}
  40%{opacity:1}
  50%{opacity:0}
  100%{opacity:0}
}

/* =======================================
   RESPONSIVE
======================================= */

@media (max-width:1280px){
  .wfwfwf1-grid--triple{
    grid-template-columns:
      minmax(0,1fr)
      minmax(0,1fr);
  }

  .wff1-mediacol{
    grid-column:1 / -1;
  }

  .wff1-mediacard{
    min-height:500px;
  }

  .wfwfwf1-video-card{
    min-height:560px;
  }
}

@media (max-width:900px){
  .wfwfwf1-grid--triple{
    grid-template-columns:1fr;
    gap:26px;
  }

  .wfwfwf1-video-col,
  .wfwfwf1-content-col,
  .wff1-mediacol{
    display:block;
  }

  .wfwfwf1-video-card{
    min-height:420px;
    height:auto;
    border-radius:22px;
  }

  .wfwfwf1-content-card{
    height:auto;
    border-radius:22px;
    padding:26px 20px;
    text-align:center;
  }

  .wfwfwf1-title,
  .wfwfwf1-copy{
    text-align:center;
  }

  .wff1-buttonwrap{
    align-self:center;
  }

  .wff1-mediacard{
    min-height:420px;
    border-radius:22px;
  }
}

@media (max-width:768px){
  .wfwfwf1-section{
    padding:30px 16px;
	  margin-top: -25px;
  }

  .wfwfwf1-title{
    font-size:clamp(36px,9vw,58px);
    line-height:clamp(40px,10vw,62px);
  }

  .wfwfwf1-copy{
    font-size:clamp(17px,4.1vw,20px);
  }
}

@media (max-width:520px){
  .wfwfwf1-video-card{
    min-height:300px;
  }

  .wff1-mediacard{
    min-height:300px;
  }
}

/* ===============================
   WF FULL WIDTH VIDEO SECTION
   overlay forced inside section
================================= */

.wf-video-section{
  position: relative !important;
  width: 100% !important;
  overflow: hidden !important;
  background: linear-gradient(to right, #ffc500, #c21500) !important;
}

/* VIDEO */
.wf-video-section video{
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center center !important;
  z-index: 0 !important;
}

/* BOTTOM FADE */
.wf-video-section::after{
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background:
    linear-gradient(
      to top,
      rgba(0,0,0,.72) 0%,
      rgba(0,0,0,.48) 28%,
      rgba(0,0,0,.20) 52%,
      rgba(0,0,0,0) 74%
    ) !important;
  pointer-events: none !important;
  z-index: 1 !important;
}

/* OVERLAY — HARD RESET */
.wf-video-overlay{
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;

  transform: none !important;
  margin: 0 !important;

  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;

  z-index: 2 !important;
  box-sizing: border-box !important;
  overflow: hidden !important;

  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;

  text-align: center !important;
  padding: clamp(14px, 2vw, 24px) !important;
  gap: clamp(8px, 1.2vw, 16px) !important;

  color: white !important;
}

/* REMOVE EXTRA BR SPACING THAT PUSHES TEXT OUT */
.wf-video-overlay > br{
  display: none !important;
}

/* TITLE */
.wf-video-overlay h2{
  margin: 0 !important;
  max-width: 95% !important;

  color: #F9FF00 !important;
  font-family: 'BeaverPunch', sans-serif !important;
  font-size: clamp(34px, 5vw, 84px) !important;
  line-height: 1.02 !important;
  text-align: center !important;

  text-shadow:
    2px 2px 0 #000000,
    2px -2px 0 #000000,
    -2px 2px 0 #000000,
    -2px -2px 0 #000000,
    0px 6px 18px rgba(0,0,0,.55) !important;
}

/* COPY */
.wf-video-overlay p{
  margin: 0 !important;
  max-width: min(900px, 94%) !important;

  color: #ffffff !important;
  font-family: 'BeaverPunch', sans-serif !important;
  font-size: clamp(15px, 1.5vw, 22px) !important;
  line-height: 1.5 !important;
  text-align: center !important;

  text-shadow:
    2px 2px 0 #000000,
    2px -2px 0 #000000,
    -2px 2px 0 #000000,
    -2px -2px 0 #000000,
    0px 4px 12px rgba(0,0,0,.42) !important;
}

/* TABLET */
@media (max-width: 900px){

  .wf-video-overlay{
    padding: 18px 16px !important;
    gap: 10px !important;
  }
}

/* MOBILE */
@media (max-width: 600px){
  .wf-video-section{
    height: clamp(220px, 68vw, 300px) !important;
  }

  .wf-video-overlay{
    padding: 14px 12px !important;
    gap: 8px !important;
  }

  .wf-video-overlay h2{
    font-size: clamp(24px, 7.5vw, 42px) !important;
    line-height: 1 !important;
  }

  .wf-video-overlay p{
    font-size: clamp(12px, 3.2vw, 16px) !important;
    line-height: 1.35 !important;
    max-width: 96% !important;
  }
}

/* =============================
   WFF1 TEXT SECTION
============================= */

.wff1-section{
  position: relative;
  width: 100%;
  padding: 20px 20px;
  overflow: hidden;
  background: linear-gradient(to right, #ffc500, #c21500);
  text-align: center;
}

/* subtle atmosphere */
.wff1-section::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.22) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 30%, rgba(0,0,0,.18) 0 1px, transparent 1px),
    radial-gradient(circle at 50% 80%, rgba(255,255,255,.16) 0 1px, transparent 1px);
  background-size: 26px 26px, 34px 34px, 42px 42px;
  z-index: 0;
}

.wff1-container{
  position: relative;
  z-index: 1;
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.wff1-content{
  width: 100%;
  padding: clamp(28px, 4vw, 52px);
  border-radius: 16px;

  background: linear-gradient(
    180deg,
    rgba(255,255,255,.14),
    rgba(255,255,255,.08)
  );

  border: 1px solid rgba(255,255,255,.16);

  backdrop-filter: blur(14px);

  box-shadow:
    0 30px 80px rgba(0,0,0,.24),
    inset 0 1px 0 rgba(255,255,255,.22);

  text-align: center;
}

/* responsive */

@media (max-width: 768px){

  .wff1-section{
    padding: 60px 16px;
  }

  .wff1-content{
    padding: 26px 20px;
  }

}

@media (max-width: 480px){

  .wff1-section{
    padding: 50px 14px;
  }

}
/* ===============================
   WF FULL WIDTH VIDEO SECTION NIGHT
   centered crop / centered overlay
================================= */

.wf-video-section-night{
  position: relative;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(to right, #ffc500, #c21500);

  height: clamp(320px, 42vw, 500px);
}

/* VIDEO */
.wf-video-section-night video{
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: center center;

  z-index: 0;
}

/* BOTTOM FADE */
.wf-video-section-night::after{
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(0,0,0,.72) 0%,
      rgba(0,0,0,.48) 28%,
      rgba(0,0,0,.20) 52%,
      rgba(0,0,0,0) 74%
    );

  pointer-events: none;
  z-index: 1;
}

/* OVERLAY */
.wf-video-overlay-night{
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;

  transform: none !important;
  margin: 0 !important;

  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;

  z-index: 2 !important;
  box-sizing: border-box !important;
  overflow: hidden !important;

  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;

  text-align: center !important;
  padding: clamp(14px, 2vw, 24px) !important;
  gap: clamp(8px, 1.2vw, 16px) !important;

  color: white !important;
}

.wf-video-overlay-night h1{
	margin:0px;
}
.wf-video-overlay-night h3{
	margin:0px;
}


/* hide spacer breaks in the HTML */
.wf-video-overlay-night > br{
  display: none !important;
}

/* TITLE */
.wf-video-overlay-night h2{
  margin: 0 !important;
  max-width: 95% !important;

  color: #F9FF00 !important;
  font-family: 'BeaverPunch', sans-serif !important;
  font-size: clamp(34px, 5vw, 84px) !important;
  line-height: 1.02 !important;
  text-align: center !important;

  text-shadow:
    2px 2px 0 #000000,
    2px -2px 0 #000000,
    -2px 2px 0 #000000,
    -2px -2px 0 #000000,
    0px 6px 18px rgba(0,0,0,.55) !important;
}

/* COPY */
.wf-video-overlay-night p{
  margin: 0 !important;
  max-width: min(900px, 94%) !important;

  color: #ffffff !important;
  font-family: 'BeaverPunch', sans-serif !important;
  font-size: clamp(15px, 1.5vw, 22px) !important;
  line-height: 1.5 !important;
  text-align: center !important;

  text-shadow:
    2px 2px 0 #000000,
    2px -2px 0 #000000,
    -2px 2px 0 #000000,
    -2px -2px 0 #000000,
    0px 4px 12px rgba(0,0,0,.42) !important;
}

/* TABLET */
@media (max-width: 900px){
  .wf-video-section-night{
    height: clamp(260px, 46vw, 400px) !important;
  }

  .wf-video-overlay-night{
    padding: 18px 16px !important;
    gap: 10px !important;
  }

  .wf-video-overlay-night h2{
    font-size: clamp(30px, 6.5vw, 62px) !important;
  }

  .wf-video-overlay-night p{
    font-size: clamp(14px, 2.5vw, 18px) !important;
    line-height: 1.45 !important;
  }
}

/* MOBILE */
@media (max-width: 600px){
  .wf-video-section-night{
    height: clamp(220px, 58vw, 300px) !important;
  }

  .wf-video-overlay-night{
    padding: 14px 12px !important;
    gap: 8px !important;
  }

  .wf-video-overlay-night h2{
    font-size: clamp(24px, 7.5vw, 42px) !important;
    line-height: 1 !important;
  }

  .wf-video-overlay-night p{
    font-size: clamp(12px, 3.2vw, 16px) !important;
    line-height: 1.35 !important;
    max-width: 96% !important;
  }
}

/* =============================
   WFF2 TWO COLUMN SECTION
============================= */

.wff2-section{
  width: 100%;
  padding: 30px 20px;
  background: linear-gradient(to right, #ffc500, #c21500);
}

/* CONTAINER */
.wff2-container{
  max-width: 1200px;
  margin: 0 auto;
}

/* GRID */
.wff2-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch;
}

/* COLUMNS */
.wff2-image-col,
.wff2-text-col{
  display: flex;
  min-width: 0;
}

/* IMAGE CARD */
.wff2-image-card{
  width: 100%;
  height: 100%;
  min-height: 100%;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* IMAGE */
.wff2-image-card img{
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 16px;
}

/* TEXT CARD */
.wff2-text-card{
  width: 100%;
  height: 100%;
  padding: 30px;
  background: transparent;
  border: none;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 900px){
  .wff2-grid{
    grid-template-columns: 1fr;
  }

  .wff2-text-card{
    height: auto;
  }
}
/* minimal extra polish using your existing structure */
.wff2-shop-page{
  padding: 40px 20px 70px;
  background: linear-gradient(to right, #ffc500, #c21500);
}

.wff2-shop-hero{
  max-width: 1200px;
  margin: 0 auto 28px;
  padding: 28px 22px;
  text-align: center;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 24px 60px rgba(0,0,0,.18);
  backdrop-filter: blur(10px);
}

.wff2-shop-hero p{
  max-width: 920px;
  margin: 0 auto 16px;
}

.wff2-shop-page .wff2-grid{
  margin-bottom: 26px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.05));
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 18px 44px rgba(0,0,0,.20);
}

.wff2-shop-page .wff2-text-card{
  padding: 24px;
  background: transparent;
}

.wff2-shop-page .wff2-text-card h2{
  margin-bottom: 12px;
}

.wff2-shop-page .wff2-image-card{
  padding: 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 24px 55px rgba(0,0,0,.28);
}

.wff2-shop-page .wff2-image-card a{
  display: block;
}

.wff2-shop-page .wff2-image-card img{
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wff2-shop-page .wff2-image-card a:hover img{
  transform: scale(1.02);
  box-shadow: 0 24px 48px rgba(0,0,0,.42);
}

.wff2-shop-buttons{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}

.wff2-shop-buttons a{
  text-decoration: none;
}

.wff2-shop-page .button-glamp{
  margin: 0;
}

@media (max-width: 900px){
  .wff2-shop-page{
    padding: 30px 16px 50px;
  }

  .wff2-shop-page .wff2-grid{
    padding: 14px;
  }

  .wff2-shop-page .wff2-text-card{
    padding: 16px;
  }

  .wff2-shop-page .wff2-image-card{
    padding: 10px;
  }
}
.wff2-image-card a img{
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wff2-image-card a:hover img{
  transform: scale(1.02);
}

/* solar panel hero image */

.wf-video-section-night.hero-solar-fix{
      background: url('images/mendit/solar-van-hero.png') center center / cover no-repeat !important;
      min-height: clamp(460px, 72vw, 760px);
      height: auto !important;
      display: flex;
      align-items: center;
    }

    .wf-video-section-night.hero-solar-fix::after{
      background:
        linear-gradient(
          90deg,
          rgba(0,0,0,.68) 0%,
          rgba(0,0,0,.48) 34%,
          rgba(0,0,0,.18) 62%,
          rgba(0,0,0,.06) 100%
        ) !important;
    }

    .hero-solar-fix #logowrap{
      width: 100%;
      max-width: 1400px;
      margin: 0 auto;
      padding: 110px 24px 70px;
      position: relative;
      z-index: 3;
    }

    .hero-solar-fix .wf-video-overlay-night{
      position: relative !important;
      inset: auto !important;
      width: min(720px, 100%) !important;
      max-width: 720px !important;
      height: auto !important;
      overflow: visible !important;
      align-items: flex-start !important;
      justify-content: center !important;
      text-align: left !important;
      padding: 0 !important;
      margin: 0 !important;
      gap: 18px !important;
    }

    .hero-solar-fix .wf-video-overlay-night h2{
      max-width: 100% !important;
      text-align: left !important;
      font-size: clamp(40px, 7vw, 96px) !important;
      line-height: .96 !important;
    }

    .hero-solar-fix .wf-video-overlay-night p{
      max-width: 100% !important;
      text-align: left !important;
      font-size: clamp(16px, 2vw, 24px) !important;
      line-height: 1.5 !important;
    }

    .hero-solar-fix .wff2-shop-buttons{
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      justify-content: flex-start;
      width: 100%;
    }

    .hero-solar-fix .wff2-shop-buttons a{
      flex: 0 1 auto;
      min-width: 180px;
      text-align: center;
    }

    @media (max-width: 900px){
      .wf-video-section-night.hero-solar-fix{
        min-height: 520px;
        background-position: center center !important;
      }

      .hero-solar-fix #logowrap{
        padding: 90px 20px 48px;
      }

      .hero-solar-fix .wf-video-overlay-night{
        width: min(100%, 620px) !important;
        gap: 14px !important;
      }
    }

    @media (max-width: 600px){
      .wf-video-section-night.hero-solar-fix{
        min-height: 560px;
      }

      .hero-solar-fix #logowrap{
        padding: 76px 16px 36px;
      }

      .hero-solar-fix .wf-video-overlay-night h2{
        font-size: clamp(30px, 10vw, 52px) !important;
      }

      .hero-solar-fix .wf-video-overlay-night p{
        font-size: clamp(14px, 4vw, 18px) !important;
        line-height: 1.4 !important;
      }

      .hero-solar-fix .wff2-shop-buttons{
        flex-direction: column;
        align-items: stretch;
      }

      .hero-solar-fix .wff2-shop-buttons a{
        min-width: 0;
        width: 100%;
      }
    }

.wf-booking-grid-section{
  padding-top:0;
  padding-bottom:0;
  background:transparent !important;
}

.wf-booking-grid-section .wf-container{
  background:transparent !important;
}

.wf-booking-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:24px;
  align-items:stretch;
  background:transparent !important;
}

.wf-booking-card{
  position:relative;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  align-items:stretch;
  min-width:0;
  width:100%;
  height:100%;
  padding:20px;
  border:3px solid #ffffff;
  border-radius:16px;
  box-shadow:0 10px 24px rgba(0,0,0,0.18);
  background:#c21500;
  background:-webkit-linear-gradient(to right, #ffc500, #c21500);
  background:linear-gradient(to right, #ffc500, #c21500);
  overflow:hidden;
}

.wf-booking-card > *{
  min-width:0;
}

.wf-booking-title{
  margin:0 0 10px 0;
  text-align:center;
}

.wf-booking-link{
  display:block;
  width:100%;
  color:inherit;
  text-decoration:none;
  overflow-wrap:anywhere;
  word-break:break-word;
}

.wf-booking-subtext,
.wf-booking-date{
  width:100%;
  text-align:center;
  overflow-wrap:anywhere;
  word-break:break-word;
  font-size:clamp(15px, 1.05vw, 20px);
  line-height:1.5;
}

.wf-booking-subtext{
  margin-bottom:8px;
}

.wf-booking-date{
  margin-bottom:14px;
}

.wf-booking-status-area{
  width:100%;
  min-width:0;
  min-height:188px;
  margin-top:auto;
  display:flex;
  align-items:stretch;
}

.wf-booking-note{
  width:100%;
  min-height:188px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:16px;
  border-radius:12px;
  background:#ffffff;
  border:3px solid #000000;
  color:#000000;
  text-align:center;
  font-family:'BeaverPunch' !important;
  font-size:clamp(14px, 1vw, 18px);
  line-height:1.35;
  letter-spacing:0.10em;
  text-shadow:none;
  overflow-wrap:anywhere;
  word-break:break-word;
}

.wf-booking-timer{
  width:100%;
  min-width:0;
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px;
  align-content:stretch;
}

.wf-booking-cell{
  min-width:0;
  min-height:88px;
  padding:14px 12px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  background:#ffffff;
  border:3px solid #000000;
  box-shadow:0 6px 14px rgba(0,0,0,0.10);
  text-align:center;
}

.wf-booking-value{
  display:block;
  width:100%;
  color:#000000;
  text-align:center;
  font-family:'BeaverPunch' !important;
  font-size:clamp(18px, 1.65vw, 28px);
  line-height:1;
  letter-spacing:0.06em;
  text-shadow:none;
  white-space:nowrap;
}

.wf-booking-label{
  display:block;
  width:100%;
  margin-top:6px;
  color:#000000;
  text-align:center;
  font-family:'BeaverPunch' !important;
  font-size:clamp(10px, 0.75vw, 13px);
  line-height:1.1;
  letter-spacing:0.08em;
  text-transform:uppercase;
  text-shadow:none;
  white-space:nowrap;
}

.wf-booking-button.button-glamp{
  width:100%;
  margin:14px 0 0 0;
  box-sizing:border-box;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:56px;
  text-align:center;
}

.wf-booking-card--soldout .wf-booking-link{
  pointer-events:none;
  cursor:default;
  text-decoration:line-through;
  text-decoration-thickness:2px;
}

.wf-booking-card--soldout .wf-booking-timer--soldout,
.wf-booking-card--soldout .wf-booking-button--disabled{
  opacity:0.45;
}

.wf-booking-button--disabled{
  pointer-events:none;
  cursor:not-allowed;
}

.wf-booking-card--soldout::after{
  content:"Sold Out";
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%) rotate(-16deg);
  color:red;
  font-family:'Resmont-Bold', 'BeaverPunch', sans-serif !important;
  font-size:clamp(24px, 2vw, 36px);
  line-height:1;
  letter-spacing:0.06em;
  white-space:nowrap;
  -webkit-text-stroke:2px #ffffff;
  text-shadow:
    0 0 2px #ffffff,
    0 3px 10px rgba(255,255,255,0.95),
    0 8px 24px rgba(220,38,38,0.22);
  z-index:5;
  pointer-events:none;
}

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

@media (max-width:700px){
  .wf-booking-grid{
    grid-template-columns:1fr;
  }

  .wf-booking-card{
    padding:18px;
  }

  .wf-booking-status-area,
  .wf-booking-note{
    min-height:176px;
  }

  .wf-booking-cell{
    min-height:82px;
    padding:12px 10px;
  }

  .wf-booking-button.button-glamp{
    min-height:52px;
  }
}

@media (max-width:420px){
  .wf-booking-card{
    padding:16px;
  }

  .wf-booking-timer{
    gap:10px;
  }

  .wf-booking-subtext,
  .wf-booking-date{
    font-size:clamp(14px, 4vw, 17px);
  }
}
.wf-booking-title{
  font-size:clamp(15px, 1.05vw, 20px);
  line-height:1.5;
  font-weight:inherit;
  margin:0 0 10px 0;
}