@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;
}

@font-face {
    font-family: 'Inconsolata-LGC';
    src: url('/fonts/Inconsolata-LGC.woff2') format('woff2'),
         url('/fonts/Inconsolata-LGC.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', 'Inconsolata-LGC','Wild-Character', 'EmbolismSparkRegular', 'Stereofidelic-Regular', 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;
}



.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: var(--green) !important;
  color: white !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;
}

/* 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: #FFFFFF;
	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-color: rgba(255, 255, 255, 0.3);
  padding: 20px;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.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) {
  .highlights-section {
    padding: 5px 20px; /* smaller screen padding */
  }
  .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: 60px 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--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;
}
/* ===============================
   VIDEO SECTION - NIGHT VIDEO
================================= */

.wf-video-section-night{
  position:relative;
  top: -40px;
  height:55vh;
  overflow:hidden;
}

.wf-video-overlay-night 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-night 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;
}

@media (max-width: 768px) {

 .wf-video-section-night{
  position:relative;
  top: -40px;
  height:75vh;
  overflow:hidden;
	}
}
.wf-video-section-night video{
  position:absolute;
  width:100%;
  height:100%;
  object-fit:cover;
}

.wf-video-section-night::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.5);
}

.wf-video-overlay-night{
  position:relative;
  z-index:2;
  color:white;
  text-align:center;
  top:50%;
  transform:translateY(-50%);
  width: 85%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===============================
   STAGGER REVEAL
================================= */

.wf-stagger > *{
  opacity:0;
  transform:translateY(60px);
  transition:1.2s cubic-bezier(.21,.9,.34,1);
}

.wf-stagger.is-visible > *{
  opacity:1;
  transform:translateY(0);
}

.wf-stagger.is-visible > *:nth-child(1){transition-delay:.1s;}
.wf-stagger.is-visible > *:nth-child(2){transition-delay:.25s;}
.wf-stagger.is-visible > *:nth-child(3){transition-delay:.4s;}
.wf-stagger.is-visible > *:nth-child(4){transition-delay:.55s;}

/* ===============================
   LINE REVEAL
================================= */

.wf-line-reveal{
  opacity:0;
  transform:translateY(40px);
  transition:1.2s cubic-bezier(.21,.9,.34,1);
}

.wf-line-reveal.is-visible{
  opacity:1;
  transform:translateY(0);
}

/* ===============================
   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: 30px;
  padding: 10px 0 20px;
  background: #f7f7f7;
  overflow: hidden;
  border: 0px solid;
  box-shadow: 0px 1px 18px 6px rgba(0,0,0,0.75);
	-moz-transform: skew(0deg, -1deg);
-webkit-transform: skew(0deg, -1deg);
-o-transform: skew(0deg, -1deg);
-ms-transform: skew(0deg, -1deg);
transform: skew(0deg, -1deg);
}

/* 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);
}

/* 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);
}
/* =============================
   WFF1 Photo Gallery Section
============================= */

/* SECTION */
.wff1-section{
  padding:70px 20px;
  background:#c21500;
  background:-webkit-linear-gradient(to right,#ffc500,#c21500);
  background:linear-gradient(to right,#ffc500,#c21500);
  color:#fff;
  text-align:center;
}

/* CONTAINER */
.wff1-container{
  max-width:900px;
  margin:0 auto;
}

/* TEXT */
.wff1-container h2{
  font-size:2rem;
  margin-bottom:15px;
	color:#F9FF00;
}

.wff1-container p{
  font-size:1.1rem;
  line-height:1.6;
  margin-bottom:15px;
}

/* GALLERY WRAPPER */
.wff1-gallery{
  position:relative;
  width:100%;
  margin:40px auto 30px auto;
  overflow:hidden; /* stops anything visually spilling out */
}

/* STACKED LINKS */
.wff1-gallery a{
  position:absolute;
  inset:0;
  width:85%;
  margin:0 auto;
  left:0;
  right:0;
}

/* IMAGES */
.wff1-img{
  width:100%;
  height:auto;
  display:block;
  opacity:0;
  animation:wff1fade 10s infinite;
  border-radius:10px;
  box-shadow:
    0 10px 20px rgba(0,0,0,0.2),
    0 6px 6px rgba(0,0,0,0.15);
}

/* IMAGE DELAYS */
.wff1-img1{
  animation-delay:0s;
}

.wff1-img2{
  animation-delay:5s;
}

/* FADE ANIMATION */
@keyframes wff1fade{
  0%{opacity:0}
  10%{opacity:1}
  40%{opacity:1}
  50%{opacity:0}
  100%{opacity:0}
}

/* RESPONSIVE */
@media (max-width:600px){
  .wff1-container h2{
    font-size:1.7rem;
  }

  .wff1-gallery a{
    width:100%;
  }

  .wff1-container{
    padding-bottom:40px;
  }
}
/*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:40px 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:320px;
  height:auto;
  transition:height .9s ease;
}

/* Review cards */
.wf-card{
  background:var(--wf-white);
  border-radius:20px;
  padding:30px 30px 20px;
  box-shadow:none;
  display:flex;
  gap:18px;
  align-items:flex-start;
  opacity:0;
  transition:opacity .9s ease;
  position:absolute;
  left:0;
  right:0;
  top:50%;
  transform:translateY(-50%);
  pointer-events:none;
  box-sizing:border-box;
}

.wf-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:24px;
  margin-bottom:10px;
  color:#000000;
  text-shadow:none;
}

.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:360px;
  }

  .wf-card{
    padding:22px 20px 18px;
  }
}

.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*/