/* RESET */
:root {
  --primary-color: #0f1723;
  --secondary-color: #ea5023;
  --tertiary-color: #403d39;
  --gray-color: #ccc5b9;
  --white-color: #fffcf2;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Roboto", sans-serif;
  color: var(--white-color);
  background-color: var(--primary-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Lato", sans-serif;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

.section-title-1 {
  /* margin-top: 10px; */
  font-size: 2.3em;
  font-weight: 900;
  /* padding: 10px; */
  margin-bottom: 10px;
  text-align: center;
  letter-spacing: 0.1em;
  color: var(--secondary-color);
  text-transform: uppercase;
}

.section-title-2 {
  padding-top: 20px;
  padding-bottom: 30px;
  font-size: 1em;
  font-weight: 400;
  letter-spacing: 0.4em;
  line-height: 24px;
  color: var(--gray-color);
  text-transform: uppercase;
}

/* HERO SECTION */
#hero-section {
  position: relative;
  width: 100%;
  height: auto;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 40px 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.6s ease;
  z-index: 10000;
}
:root {
  --nav-safe: 200px; /* desktop */
}

.cta-section {
  position: relative;
}

@media (max-width: 980px) {
  :root {
    --nav-safe: 100px;
  } /* smaller on mobile */
}

.cta-section {
  position: relative;
}

.cta-main-btn {
  display: inline-block;
  margin-top: 50px;
  padding: 12px 28px;
  width: clamp(180px, 50vw, 260px);
  text-align: center;
  background-color: rgba(234, 80, 35, 0.7);
  color: var(--white-color);
  font-weight: 800;
  border-radius: 30px;
  text-transform: uppercase;
  font-size: clamp(14px, 3.5vw, 16px);
  letter-spacing: 0.08em;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.cta-main-btn:hover {
  background-color: rgba(234, 80, 35, 0.92);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .hero-title {
    letter-spacing: 0.18rem;
  }
  .cta-main-btn {
    width: min(70%, 300px);
    padding: 14px 15px;
    font-size: 1rem; /* readable on small screens */
  }
}

nav.sticky {
  padding: 40px 10%;
  background-color: #0f1723;
}

/* Navbar logo font change */
.logo {
  white-space: nowrap;
  font-family: "Lato", sans-serif; /* cleaner font */
  font-size: 2em;
  font-weight: 700; /* bolder */
  letter-spacing: 2px;
  color: var(--white-color);
}

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

header .background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: url(./assets/hero-bg.png) no-repeat center;
  background-size: cover;
  z-index: -1;
}

header .background div {
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  opacity: 0.5;
}

.nav-links li {
  margin: auto 10px;
}

.nav-links li a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: 0.8px;
  letter-spacing: 1.5px;
  color: var(--white-color);
  border-radius: 20px;
  transition: all 0.5s ease;
}

.nav-links li a:hover {
  background-color: var(--secondary-color);
}

.nav-icons li {
  margin: auto 8px;
}

.nav-icons input[type="checkbox"] {
  display: none;
}

.nav-icons .icon {
  width: 22px;
  height: 22px;
  color: var(--white-color);
}

.nav-icons label {
  display: none;
  cursor: pointer;
}

.nav-icons .line {
  width: 22px;
  height: 2px;
  margin: 5px 10px;
  border-radius: 11px;
  background-color: var(--white-color);
  transition: all 0.5s ease;
}

.nav-icons input[type="checkbox"]:checked ~ label .line1 {
  transform: translateY(5px) rotate(225deg);
}

.nav-icons input[type="checkbox"]:checked ~ label .line2 {
  transform: translateY(-2px) rotate(-225deg);
}

.cta-section {
  position: relative;
  width: 100%;
  height: auto;
  /* padding: 100px 5% 0; */
}

.text-section {
  padding-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: calc(100vh - 100px);
  /* margin-bottom: 80px; */
}

.hero-title {
  padding: 10px;
  font-size: 2.5em;
  font-weight: 600;
  letter-spacing: 0.5rem;
  text-align: center;
  color: var(--white-color);
}

.hero-title.t1 {
  font-size: 3em;
}

.hero-title.t2 {
  font-weight: 300;
}

.countdown {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: auto;
  padding: 60px 8%;
  text-align: center;
  background-color: var(--primary-color);
}

.countdown-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.countdown-el .text {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 0.8;
  margin: 1rem 2rem;
  color: var(--secondary-color);
}

.countdown-el span {
  font-size: 1rem;
  text-transform: lowercase;
}

#upcoming-events {
  width: 100%;
  height: 100vh;

  background-color: #fffcf207;
}

.buy-button,
.button,
.inner-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.buy-button {
  position: absolute;
  /* margin-top: 1px; */
  margin-bottom: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 245px;
  height: 80px;
  background-color: #fa6400;
  border-radius: 10px; /* Rounded corners */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* Soft shadow */
  transition: transform 0.2s ease, background-color 0.3s ease;
}

.buy-button:hover {
  background-color: #ff7a1a; /* Slightly lighter on hover */
  transform: translateX(-50%) scale(1.05); /* Subtle pop effect */
}

.buy-button a {
  font-size: 1.5em;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--white-color);
  text-decoration: none;
}

.button {
  position: relative;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: #202b3b;
  cursor: pointer;
  word-break: break-all;
  transition: all 0.5s ease;
  border-radius: 15%;
}

.button:hover {
  transform: scale(1.1);
}

.inner-btn {
  width: 130px;
  height: 130px;
  font-size: 0.8em;
  font-weight: 700;
  letter-spacing: 0.4em;
  color: var(--gray-color);
  text-align: center;
  border-radius: 50%;
  border: 2px solid var(--secondary-color);
}

.inner-btn img {
  opacity: 0.8;
}

#upcoming-events {
  width: 100%;
  height: auto;
  padding: 100px 5% 50px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#upcoming-events .section-title-2 {
  padding-bottom: 0;
}

.events-section {
  width: 100%;
  height: auto;
  padding: 50px 5%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.events-list {
  width: 50%;
  height: auto;
  padding: 35px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}

.event {
  width: 100%;
  height: auto;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
}

.event .date {
  display: grid;
  place-items: center;
  width: 300px;
  height: 50px;
  font-family: "Lato", sans-serif;
  font-size: 1.2em;
  font-weight: 900;
  letter-spacing: 0.8px;
  color: var(--secondary-color);
  border-radius: 50%;
  border: 2px solid var(--secondary-color);
}

.event-title {
  font-size: 1.2em;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.event-schedule {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.event-location,
.event-date {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.event-location .icon,
.event-date .icon {
  width: 18px;
  height: 18px;
  margin: 10px 0 0;
  color: var(--tertiary-color);
}

.event-location p,
.event-date p {
  padding: 10px 10px 0;
  font-size: 0.8em;
}

.events-img {
  width: 40%;
  height: 500px;
  background-size: cover;
  background-position: center;
  animation: bgSwitch 15s infinite;
}

#artists {
  width: 100%;
  height: auto;
  padding: 100px 5%;
  text-align: center;
}

#artists .section-title-1 {
  padding: 10px 0;
}

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

.artist-container {
  position: relative;
  width: 200px;
  height: 250px;
  overflow: hidden;
  cursor: pointer;
}

.artist-info {
  position: absolute;
  bottom: -250px;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background-color: #ea5223a9;
  transition: all 0.5s ease;
}

.artist-container:hover .artist-info {
  bottom: 0;
}

.artist-info .icon {
  width: 40px;
  height: 40px;
  margin: 50px 0 5px;
}

.artist-info h4 {
  font-size: 1.1em;
  margin-bottom: 5px;
}

.artist-info p {
  font-size: 0.8em;
  margin-bottom: 30px;
}

.artist-social-links {
  width: 100%;
  height: auto;
  margin: 10px 0;
  padding: 0 20%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.artist-social-links li a {
  color: var(--white-color);
  transition: all 0.5s ease;
}

.artist-social-links li a:hover {
  color: var(--primary-color);
}

.artist-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#contact {
  margin-top: 50px;
}

.contact-cards {
  display: grid;
  gap: 20px;
  margin: 50px auto 0;
  grid-template-columns: 1fr;
  max-width: 700px;
}

/* Desktop: 2Ã—2 grid */
@media (min-width: 992px) {
  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    column-gap: 20px;
    row-gap: 20px;
    justify-items: center;
  }
}

/* Small screens: center cards */
@media (max-width: 991px) {
  .contact-cards {
    justify-items: center; /* center all cards horizontally */
  }
  .card {
    max-width: 320px; /* keeps them from stretching full width */
    width: 100%;
  }
}
/* Each card auto-expands but stays consistent */
.card {
  margin: 0;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 320px; /* keeps consistent card width */
  min-height: 140px;
  border-radius: 20px;
  border: 2px solid var(--secondary-color);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.3s ease;
}
.card:hover {
  transform: translateY(-4px);
}

.card .icon {
  width: 40px;
  height: 40px;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

/* ---- New social handle link styling ---- */
.card a {
  color: var(--white-color);
  font-weight: 500;
  transition: color 0.3s ease;
}
.card a:hover {
  color: var(--secondary-color);
}

footer {
  width: 100%;
  height: auto;
}

.articles {
  padding: 80px 8%;
  background-color: #202b3b;
}

.articles .section-title-2 {
  padding-bottom: 15px;
}

.line {
  width: 100%;
  height: 1px;
  margin-bottom: 50px;
  background-color: var(--secondary-color);
}

.articles-cards {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.a-card {
  width: 265px;
  height: 350px;
}

.a-card img {
  width: 100%;
  height: 50%;
}

.a-card h3 {
  font-family: "Lato", sans-serif;
  font-size: 1em;
  font-weight: 900;
  letter-spacing: 1.8px;
  line-height: 50px;
}

.a-card p {
  font-size: 0.8em;
  font-weight: 300;
  letter-spacing: 1.8px;
  line-height: 18px;
  padding: 0 0 10px;
}

.a-card a {
  font-size: 0.8em;
  letter-spacing: 1px;
  line-height: 18px;
  text-decoration: underline;
  color: var(--secondary-color);
}

.footer-links {
  padding: 40px;
}

.links,
.footer-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.f-links {
  flex-wrap: wrap;
}

.f-links li {
  margin-right: 10px;
}

.f-links li a {
  font-size: 0.7em;
  letter-spacing: 1.2px;
  color: var(--white-color);
  transition: all 0.4s ease;
}

.f-links li a:hover {
  color: var(--secondary-color);
}

.f-networks li {
  width: 35px;
  height: 35px;
  margin: 0 5px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: all 0.5s ease;
}

.f-networks a {
  color: rgba(255, 255, 255, 0.253);
}

.fa-brands {
  transition: all 0.3s ease;
}

.f-networks li:hover {
  background-color: rgba(255, 255, 255, 0.829);
}

.f-networks li:hover .fa-instagram {
  color: #e1306c;
}
.f-networks li:hover .fa-facebook {
  color: #4267b2;
}
.f-networks li:hover .fa-twitter {
  color: #1da1f2;
}
.f-networks li:hover .fa-linkedin-in {
  color: #0077b5;
}
.f-networks li:hover .fa-youtube {
  color: #ff0000;
}

@media screen and (max-width: 980px) {
  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 985;
  }
  .nav-links {
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    padding: 120px 0 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    background-color: #0f1723;
    z-index: 980;
  }
  .menu-open {
    animation: openMenu 0.7s forwards;
  }
  .close {
    animation: closeMenu 0.7s forwards;
  }
  @keyframes openMenu {
    0% {
      right: -100%;
    }
    100% {
      right: 0;
    }
  }
  @keyframes closeMenu {
    0% {
      right: 0;
    }
    100% {
      right: -100%;
    }
  }
  .nav-icons label {
    position: absolute;
    display: block;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 990;
  }
  .events-list,
  .events-img {
    width: 100%;
  }
  .event-title {
    margin: 15px 0;
  }
  .event-schedule,
  .contact-cards,
  .articles-cards {
    justify-content: center;
  }
  .artist-gallery {
    flex-wrap: wrap;
  }
  .footer-links,
  .links {
    flex-direction: column;
  }
  .f-links {
    margin: 40px 0;
  }
  .f-links li {
    margin: 3px;
  }
  .f-networks {
    flex-direction: row;
  }
}

/* event */

/* ===== Fresh Fusion split section ===== */
/* ================== ARC BUTTON ================== */
.arc-button {
  align-items: center;
  background-clip: padding-box;
  background-color: #fa6400;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
  box-sizing: border-box;
  color: #fff !important; /* force white */
  cursor: pointer;
  display: inline-flex;
  font-family: system-ui, -apple-system, "Helvetica Neue", Helvetica, Arial,
    sans-serif;
  font-size: 15px;
  font-weight: 600;
  justify-content: center;
  line-height: 1.25;
  margin: 12px auto; /* centers horizontally */
  min-height: 2.6rem;
  padding: 0.6rem 0.9rem; /* reduced width */
  position: relative;
  text-decoration: none;
  transition: all 250ms;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: baseline;
  width: fit-content !important; /* hugs text */
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* --- Force text color white in ALL states --- */
.arc-button,
.arc-button:link,
.arc-button:visited,
.arc-button:hover,
.arc-button:focus,
.arc-button:active,
.arc-button a,
.arc-button a:link,
.arc-button a:visited,
.arc-button a:hover,
.arc-button a:focus,
.arc-button a:active {
  color: #fff !important;
  text-decoration: none !important;
}

/* Hover / active states */
.arc-button:hover,
.arc-button:focus {
  background-color: #fb8332;
  color: #fff !important;
  box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
  transform: translateY(-1px);
}

.arc-button:active {
  background-color: #c85000;
  color: #fff !important;
  box-shadow: rgba(0, 0, 0.06, 0.06) 0 2px 4px;
  transform: translateY(0);
}

/* ================== PARENT CONTENT CENTER ================== */
.content {
  text-align: center; /* centers the button with text above */
}

/* ================== MOBILE RESPONSIVE ================== */
@media (max-width: 600px) {
  .arc-button {
    display: block; /* make it full-width */
    width: 100% !important; /* strong CTA look */
    max-width: 320px; /* prevent it from stretching too wide */
    font-size: 16px;
    padding: 0.55rem 0.8rem;
    min-height: 2.5rem;
    margin: 14px auto; /* keep it centered */
  }
}

.fusion-split {
  width: 100%;
  padding: 80px 5%;
  display: grid;
  grid-template-columns: 1.1fr 1fr; /* Left / Right */
  gap: 48px;
  align-items: stretch;
}

/* LEFT column split into two equal rows */
.split-left {
  display: grid;
  grid-template-rows: 1fr 1fr; /* Top (desc) / Bottom (event) */
  gap: 28px;
}

/* --- TOP: Description --- */
.left-top {
  display: grid;
  place-items: center;
  text-align: center;
  /* padding: 24px; */
  padding-left: 20px;
  padding-right: 20px;
}

.ff-heading {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: clamp(23px, 3.4vw, 39px);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  color: var(--white-color);
}
.ff-heading span {
  color: var(--secondary-color);
}

.ff-copy {
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.9;
  max-width: 1000px; /* expanded width as requested */
  margin: 0 auto;
  color: var(--white-color);
  opacity: 0.9;
  text-align: left;
}
/* TICKET BUUTON BELOW POSTER*/

/* --- BOTTOM: Event card --- */
.left-bottom {
  margin-left: 30px;
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr; /* circle / details */
  align-items: center;
  gap: 22px;
  /* padding-top: 1px; */
}

.badge {
  display: grid;
  place-items: center;
  width: clamp(95px, 11vw, 130px);
  height: clamp(70px, 7.5vw, 96px);
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-size: clamp(16px, 1.6vw, 22px);
  letter-spacing: 1px;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  border-radius: 999px; /* pill */
}

.event-body {
  min-width: 0;
}

.event-title {
  font-weight: 800;
  letter-spacing: 1.5px;
  font-size: clamp(18px, 2vw, 24px);
  margin: 6px 0 10px;
  color: var(--white-color);
}

.event-meta {
  margin: 0;
  /* padding-top: 40px; */
  display: grid;
  gap: 25px;
}

.meta-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--white-color);
  opacity: 0.99;
  text-align: left;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.5rem;
  font-family: "Lato", sans-serif;
  font-weight: 350;
  letter-spacing: 0.06em;
}

.meta-ico {
  width: 20px;
  flex-shrink: 0;
  display: inline-block;
}

/* --- RIGHT: Image --- */
.split-right {
  min-height: 420px;
}
.hero-img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
}

/* ====== Responsive ====== */
@media (max-width: 1100px) {
  .fusion-split {
    grid-template-columns: 1fr; /* stack Left / Right */
    gap: 36px;
  }
  .hero-img {
    min-height: 360px;
  }
}

@media (max-width: 720px) {
  .split-left {
    grid-template-rows: auto auto;
  }

  .left-bottom {
    grid-template-columns: 1fr; /* circle on top, details below */
    justify-items: start;
    padding-left: 8px;
  }

  .badge {
    width: 100px;
    height: 80px;
    margin-bottom: 5px;
  }

  .ff-copy {
    max-width: 95%; /* comfortable on phones */
    text-align: center;
  }
}

/* ABOUT V PROD */

/* ===== About V Productions band (header) ===== */
.about-vp {
  margin: 0 auto;
  position: relative;
  width: 100%;
  padding: clamp(10px, 1vw, 15px) 4%;
  margin-top: clamp(75px, 2vw, 24px);
  z-index: 1; /* stays above the background overlay */
}

.about-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(13px, 2vw, 20px) 3% clamp(13px, 2vw, 20px) 4%;
  background: rgba(15, 23, 35, 0.72);
}

.about-vp h2 {
  font-family: "Lato", sans-serif;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: clamp(18px, 2.8vw, 28px);
  color: var(--white-color);
  margin: 0 0 6px 0;
}

.about-vp h2 span {
  color: var(--secondary-color);
}

.about-vp p {
  font-size: clamp(16px, 1.35vw, 16px);
  line-height: 1.9;
  color: var(--white-color);
  opacity: 0.7;
  /* margin: 0; */
  /* text-align: left; */
}

/* REGISTRATION */
/* Base wrapper (works for both .fullpage and .centered) */
.iframe-wrapper {
  position: fixed;
  inset: 0; /* top/right/bottom/left: 0 */
  width: 100vw;
  height: 100dvh; /* visible viewport on iOS (fixes 100vh bug) */
  padding-bottom: env(safe-area-inset-bottom);
  z-index: 9998;
  overflow: hidden; /* iframe will handle scrolling */
  background: transparent;
}

/* Full-page variant */
.iframe-wrapper.fullpage {
  /* inherits from .iframe-wrapper */
}

/* Centered variant (desktop); overridden on phones below */
.iframe-wrapper.centered {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  inset: auto;
  width: 100vw;
  height: 100dvh;
  border-radius: 0;
  box-shadow: none;
}

/* The actual iframe */
.iframe-wrapper iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  overflow: auto; /* allow inner scroll */
  -webkit-overflow-scrolling: touch; /* smooth iOS scroll */
}

/* iPhone/Small screens: force true full-bleed (no translate) */
@media (max-width: 768px) {
  .iframe-wrapper.centered {
    position: fixed;
    inset: 0;
    transform: none;
    width: 100vw;
    height: 100dvh;
    border-radius: 0;
    box-shadow: none;
  }
}

/* ===== Overlay to hide Tally watermark on RIGHT side only
   (click-through so it NEVER blocks the Submit button) ===== */
.footer-overlay {
  position: fixed; /* attach to viewport, not inside iframe */
  right: 0;
  bottom: 0;
  width: 100%; /* cover only right half; adjust if needed */
  height: 55px; /* small strip */
  background: #202b3b; /* match site theme */
  z-index: 9999; /* above iframe */
  pointer-events: none; /* DO NOT block taps inside the form */
}

/*  SLIDESHOW */

/* Reuse animation for right-side images */
.slideshow {
  animation: bgSwitch 20s infinite;
}

/* You already have this defined, just ensure it's global */
@keyframes bgSwitch {
  0%,
  40% {
    /* First image stays from 0% to 40% */
    background-image: url("./assets/tour-img-01.jpg");
  }
  50% {
    background-image: url("./assets/tour-img-02.jpg");
  }
  60% {
    background-image: url("./assets/tour-img-03.jpg");
  }
  70% {
    background-image: url("./assets/tour-img-04.jpg");
  }
  80% {
    background-image: url("./assets/tour-img-05.jpg");
  }
  100% {
    background-image: url("./assets/tour-img-01.jpg");
  }
}

/* ===== MENU CARD SECTION ===== */
.menu-card {
  width: 100%;
  padding: 60px 8%;
  /* margin-top: 30px; */
  background: #202b3b; /* subtle contrast */
  border-radius: 5px;
  text-align: center;
}

.menu-content {
  margin-top: 5px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.menu-item {
  background: var(--primary-color);
  border: 2px solid var(--secondary-color);
  border-radius: 10px;
  padding: 20px;
  transition: transform 0.3s ease;
}

.menu-item:hover {
  transform: scale(1.05);
  background: rgba(234, 80, 35, 0.1);
}

.menu-item h4 {
  font-size: 1.1em;
  color: var(--secondary-color);
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.menu-item p {
  font-size: 0.9em;
  color: var(--white-color);
  opacity: 0.85;
}

/* Submit Page */

.submit-page {
  background: var(--primary-color);
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 30px;
}

.confirm-wrap {
  max-width: 760px;
  width: 100%;
  text-align: center;
  background: rgba(32, 43, 59, 0.65);
  border: 2px solid var(--secondary-color);
  border-radius: 16px;
  padding: clamp(20px, 5vw, 48px);
}

.checkmark {
  width: 86px;
  height: 86px;
  margin: 0 auto 16px;
  display: block;
}

.headline {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--secondary-color);
  font-size: clamp(22px, 3.2vw, 34px);
  margin: 6px 0 8px;
}

.subline {
  color: var(--gray-color);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: clamp(12px, 1.2vw, 14px);
  margin-bottom: 18px;
}

.message {
  color: var(--white-color);
  opacity: 0.9;
  line-height: 1.8;
  font-size: clamp(15px, 1.35vw, 18px);
  margin: 10px auto 28px;
  max-width: 60ch;
}

.back-btn {
  margin-top: 30px;
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  border: 2px solid var(--secondary-color);
  color: var(--white-color);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.9rem;
  background: transparent;
  transition: transform 0.2s ease, background 0.2s ease;
}
.back-btn:hover {
  transform: translateY(-2px);
  background: rgba(234, 80, 35, 0.12);
}

/* ======== SCOPED FIXES FOR UPCOMING EVENTS ======== */
/* Equal-height columns and clean alignment */
#fresh-fusion.fusion-split {
  align-items: stretch; /* both columns same height */
  min-height: 520px;
}

/* Left: image fills, button sits below */
#fresh-fusion .split-left {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto; /* image grows, button auto */
  gap: 16px;
}

/* Keep the global .hero-img intact; only tune here */
#fresh-fusion .hero-img {
  height: 100%;
  min-height: 420px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
}

/* Right: About (fills) + Venue (bottom) */
#fresh-fusion .split-right {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 28px;
  height: 100%;
}

/* Center About copy vertically */
#fresh-fusion .left-top {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Venue hugs bottom */
#fresh-fusion .left-bottom {
  align-self: end;
}

/* If you used the older global .buy-button here, neutralize it locally */

@media (max-width: 1100px) {
  #fresh-fusion.fusion-split {
    grid-template-columns: 1fr; /* stack columns */
    min-height: 0;
    gap: 28px;
  }
  #fresh-fusion .split-right {
    grid-template-rows: auto auto;
  }
}

@media (max-width: 720px) {
  #fresh-fusion .hero-img {
    min-height: 280px;
    height: auto;
  }
  #fresh-fusion .buy-button a {
    font-size: 1.4em;
    padding: 12px 20px;
  }
  #fresh-fusion .buy-button a::after {
    height: 20px;
    border-bottom-width: 4px;
  }
  #fresh-fusion .ff-copy {
    max-width: 95%;
    text-align: center;
    margin-inline: auto;
  }
  #fresh-fusion .left-bottom {
    grid-template-columns: 1fr; /* badge on top, details below */
    justify-items: start;
    padding-left: 8px;
  }
  #fresh-fusion .badge {
    margin-bottom: 6px;
  }
}

/* FUSION SECTION */

/* ===== UPCOMING EVENTS: Vertical layout (scoped) ===== */
/* ===== UPCOMING EVENTS (scoped to this section only) ===== */
#upcoming-events.events-vertical.two-col {
  width: 100%;
  padding: 100px 5% 60px;
}

#upcoming-events.events-vertical.two-col .inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr; /* mobile/tablet: vertical */
  gap: 22px;
  align-items: start;
}

#upcoming-events.events-vertical.two-col .poster {
  min-height: clamp(260px, 56vw, 420px);
  /* background: url(./assets/tour-img-01.JPG); */
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.poster.slideshow {
  animation: twoSlide 5s infinite alternate ease-in-out;
}
/* Define two-image background transition */
@keyframes twoSlide {
  0%,
  45% {
    background-image: url("./assets/tour-img-01.JPG");
  }
  55%,
  100% {
    background-image: url("./assets/bandtaarang.jpeg");
  }
}

#upcoming-events.events-vertical.two-col .poster img {
  display: none; /* no crop on small screens */
}

/* RIGHT: content */
#upcoming-events.events-vertical.two-col .content {
  display: grid;
  gap: 14px;
  text-align: center; /* nice for small screens */
}

/* Subline centered + spacing before BUY */
#upcoming-events.events-vertical.two-col .content .section-title-2 {
  text-align: center;
  letter-spacing: 0.2em;
  /* margin-top: 1px; */
  margin-bottom: 12px;
}

/* About spacing + readable copy width */
#upcoming-events.events-vertical.two-col .about-ff {
  margin-top: 30px;
  margin-bottom: 12px;
  padding-inline: 6px;
}
#upcoming-events.events-vertical.two-col .ff-copy {
  max-width: 70ch;
  margin: 0 auto;
  text-align: left;
  font-size: 0.98rem;
  line-height: 1.65;
}

/* Venue / Address / Date */
#upcoming-events.events-vertical.two-col .details-stack {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr; /* stack on mobile */
  gap: 14px 18px;
  text-align: left;
  padding-inline: 6px;
}
#upcoming-events.events-vertical.two-col .venue-circle {
  width: clamp(160px, 12vw, 110px);
  height: clamp(70px, 12vw, 110px);
  display: grid;
  place-items: center;
  text-decoration: none;
  cursor: pointer;
  border-width: 4px;
  /* align-items: center; */
}
#upcoming-events.events-vertical.two-col .event-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
#upcoming-events.events-vertical.two-col .meta-item {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 8px;
  align-items: start;
}
#upcoming-events.events-vertical.two-col .meta-ico {
  line-height: 1.2;
}

/* ===== Desktop & larger ===== */
@media (min-width: 992px) {
  #upcoming-events.events-vertical.two-col .inner {
    grid-template-columns: 1fr 1fr; /* equal L/R widths */
    gap: 40px;
    align-items: start;
  }

  /* Poster smaller, edges aligned with content */
  #upcoming-events.events-vertical.two-col .poster {
    min-height: 585px; /* taller on desktops */
    max-height: 600px; /* a bit more headroom */
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #upcoming-events.events-vertical.two-col .poster img {
    width: 100%;
    height: auto;
    object-fit: contain; /* uncropped */
  }

  /* Right column alignment + slightly smaller fonts */
  #upcoming-events.events-vertical.two-col .content {
    text-align: left;
    align-content: start;
    gap: 18px;
  }
  #upcoming-events.events-vertical.two-col .content .section-title-1 {
    font-size: clamp(2rem, 3vw, 2.5rem);
    line-height: 1.15;
    margin-bottom: 4px;
  }
  #upcoming-events.events-vertical.two-col .content .section-title-2 {
    font-size: clamp(0.95rem, 1.2vw, 1.15rem);
    text-align: center; /* keep subline centered on desktop */
  }
  /* Venue row lined up with right column */
  #upcoming-events.events-vertical.two-col .details-stack {
    grid-template-columns: auto 1fr; /* VENUE circle then text */
    align-items: center;
  }
}

/* ===== Tablets ===== */
@media (min-width: 600px) and (max-width: 991.98px) {
  #upcoming-events.events-vertical.two-col .poster img {
    min-height: clamp(300px, 70vw, 420px);
    /* max-height: 60vh; */
    object-fit: contain;
  }
  #upcoming-events.events-vertical.two-col .content {
    text-align: center;
  }
}

/* ===== Phones ===== */
@media (max-width: 600px) {
  #upcoming-events.events-vertical.two-col .ff-copy {
    text-align: left;
  }
}
@media (max-width: 576px) {
  #upcoming-events.events-vertical.two-col .poster {
    min-height: clamp(450px, 85vw, 530px); /* make it a bit bigger */
    background-size: contain; /* no crop */
    background-position: center;
  }
}

@media (max-width: 600px) {
  #upcoming-events.events-vertical.two-col .venue-circle {
    display: flex;
    align-items: center; /* vertical center */
    justify-content: center; /* horizontal center */
    text-align: center;
    margin: 0 auto; /* centers horizontally */
    display: flex; /* ensure it's treated like a block for margin auto */
    margin-top: 14px;
  }
}
