.main { margin: 54px auto 0 auto; }
@media only screen and (max-width: 1200px) { .main { margin: 49px auto 0 auto; } }
@media only screen and (max-width: 600px) { .main { margin: 46px auto 0 auto; } .main__hero { min-height: 160px; } }


.vc__heroSection {
  width: 100%;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: #1a0a0a;
}
.vc__heroSection::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../../images/voucher2.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: 0.35;
  pointer-events: none;
}
.vc__heroSection::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(128, 0, 0, 0.15) 0%, transparent 100%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(128, 0, 0, 0.1) 0%, transparent 100%);
  pointer-events: none;
}

.vc__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 140px 20px 80px 20px;
}
@media only screen and (max-width: 1050px) {
  .vc__content {
    padding: 120px 15px 50px 15px;
  }
}

/* ====== NAV — white on dark hero, reverts on scroll ====== */
body:has(.vc__heroSection) .header:not(.header--scrolled) .header__navLink {
  color: #fff;
}
body:has(.vc__heroSection) .header:not(.header--scrolled) .header__navLink:hover {
  color: rgba(255, 255, 255, 0.7);
}
body:has(.vc__heroSection) .header:not(.header--scrolled) .header__navLink--red {
  color: #ff9999;
}
body:has(.vc__heroSection) .header:not(.header--scrolled) .header__navLink--red:hover {
  color: #fff;
}
body:has(.vc__heroSection) .header:not(.header--scrolled) .dropDownLink {
  color: #fff;
}
body:has(.vc__heroSection) .header:not(.header--scrolled) .dropDownLink:hover {
  color: rgba(255, 255, 255, 0.7);
}
body:has(.vc__heroSection) .header:not(.header--scrolled) .header__hamburger span {
  background: #fff;
}

/* ====== HEADER ====== */
.vc__header {
  text-align: center;
  margin: 0 0 50px 0;
}
.vc__heroIcon {
  font-size: 48px;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 18px 0;
}
.vc__title {
  color: white;
  font-size: 48px;
  font-weight: 800;
  margin: 0 0 14px 0;
  line-height: 1.2em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
@media only screen and (max-width: 1050px) {
  .vc__title { font-size: 36px; }
}
@media only screen and (max-width: 600px) {
  .vc__title { font-size: 28px; }
}
.vc__subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  font-weight: 400;
  margin: 0;
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.5em;
}
@media only screen and (max-width: 1050px) {
  .vc__subtitle { font-size: 18px; }
}

/* ====== GRID ====== */
.vc__grid {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ====== FROSTED GLASS CARDS ====== */
.vc__card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.4s ease,
    background 0.4s ease;
}
.vc__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255, 255, 255, 0.06) 45%,
    rgba(255, 255, 255, 0.12) 50%,
    rgba(255, 255, 255, 0.06) 55%,
    transparent 80%
  );
  pointer-events: none;
  z-index: 1;
}
.vc__card:hover::before {
  animation: vc-shine 0.8s ease forwards;
}
@keyframes vc-shine {
  0% { left: -100%; }
  100% { left: 140%; }
}
.vc__card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.3),
    0 2px 10px rgba(128, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
}
@media only screen and (max-width: 600px) {
  .vc__card {
    padding: 24px 20px;
  }
}

/* ====== CARD HEADER ====== */
.vc__cardHeader {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 20px 0;
}
.vc__cardIcon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 12px;
  background: rgba(128, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #ff9999;
  transition: background 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.vc__card:hover .vc__cardIcon {
  background: #800000;
  transform: scale(1.08);
}
.vc__cardTitle {
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin: 0;
}
@media only screen and (max-width: 600px) {
  .vc__cardTitle { font-size: 20px; }
}

/* ====== CARD TEXT ====== */
.vc__cardText {
  font-size: 17px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7em;
  margin: 0;
}

/* ====== RULES LIST ====== */
.vc__rulesList {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vc__rulesItem {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6em;
}
.vc__rulesNumber {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 50%;
  background: rgba(128, 0, 0, 0.35);
  color: #ff9999;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

/* ====== CONTACT LINKS ====== */
.vc__contactLinks {
  display: flex;
  gap: 16px;
  margin: 20px 0 0 0;
  flex-wrap: wrap;
}
.vc__contactLink {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  text-decoration: none;
  flex: 1;
  min-width: 200px;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  overflow: visible;
}
.vc__contactLink:hover {
  background: rgba(128, 0, 0, 0.2);
  border-color: rgba(128, 0, 0, 0.4);
  transform: translateY(-2px);
}
.vc__contactIcon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: rgba(128, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #ff9999;
}
.vc__contactText {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.vc__contactLabel {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.vc__contactValue {
  font-size: 17px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.3px;
}
@media only screen and (max-width: 500px) {
  .vc__contactLinks {
    flex-direction: column;
  }
  .vc__contactLink {
    min-width: 0;
  }
}

/* ====== HOURS ====== */
.vc__hours {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.7), rgba(46, 125, 50, 0.5));
  border: 2px solid rgba(76, 175, 80, 0.5);
  border-radius: 14px;
  margin: 20px 0 0 0;
  box-shadow: 0 4px 20px rgba(46, 125, 50, 0.25);
}
.vc__hoursIcon {
  font-size: 26px;
  color: #a5d6a7;
}
.vc__hoursText {
  font-size: 20px;
  font-weight: 600;
  color: white;
}
.vc__hoursText strong {
  font-weight: 800;
  color: #a5d6a7;
  font-size: 22px;
}
