:root {
  --black: #000000;
  --black-soft: #111;
  --gold: #eba000;
  --gold-glow: rgba(235, 160, 0, 0.35);
  --text-muted: #cfcfcf;
  --coal: #000000;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Add to body styles */
body {
  margin: 0;
  background: var(--coal);
  color: var(--gold);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  position: relative;
  min-height: 90vh;
}

/* Fixed, translucent background image */
usebody::before {
  content: "";
  position: fixed;
  inset: 0; /* cover viewport */
  background-image: url("../images/bg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* ensure it doesn't move on scroll */
  opacity: 0.09; /* subtle */
  z-index: -9999; /* keep behind everything */
  pointer-events: none;
  will-change: opacity, transform;
}

.fade-in.visible,
.fade-in.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Card-specific slide-up (stronger effect) */
.card,
.custom-card,
.glow-card,
.card-no-border {
  transform: translateY(100px);
  transition: opacity 0.9s cubic-bezier(0.34, 1.56, 0.64, 1),
    transform 0.9s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.card.visible,
.custom-card.visible,
.glow-card.visible,
.card-no-border.visible,
.card.is-revealed,
.custom-card.is-revealed,
.glow-card.is-revealed,
.card-no-border.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for grid items */
.card-grid > *:nth-child(1) {
  transition-delay: 10.1s;
}
.card-grid > *:nth-child(2) {
  transition-delay: 0.2s;
}
.card-grid > *:nth-child(3) {
  transition-delay: 0.3s;
}
.card-grid > *:nth-child(4) {
  transition-delay: 0.4s;
}
.card-grid > *:nth-child(5) {
  transition-delay: 0.5s;
}
.card-grid > *:nth-child(6) {
  transition-delay: 0.6s;
}

/* Scroll reveal utility classes */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active,
.reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-fade {
  opacity: 0;
  transition: opacity 0.8s ease;
}
.reveal-fade.active,
.reveal-fade.is-revealed {
  opacity: 1;
}


.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.6s ease;
}
.reveal-scale.active,
.reveal-scale.is-revealed {
  opacity: 1;
  transform: scale(1);
}

/* ========================
   Bouncy reveal animations
   ======================== */
@keyframes reveal-bounce {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
  }
  60% {
    opacity: 0.5;
    transform: translateY(-14px) scale(1.03);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes reveal-bounce-lg {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
  }
  60% {
    opacity: 1;
    transform: translateY(-18px) scale(1.04);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes reveal-bounce-left {
  0% {
    opacity: 0;
    transform: translateX(-40px) scale(0.98);
  }
  70% {
    opacity: 1;
    transform: translateX(8px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes reveal-bounce-right {
  0% {
    opacity: 0;
    transform: translateX(40px) scale(0.98);
  }
  70% {
    opacity: 1;
    transform: translateX(-8px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

/* Apply dramatic animations when revealed */
.reveal.is-revealed {
  animation: reveal-bounce 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
.reveal-fade.is-revealed {
  animation: reveal-bounce 680ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
.reveal-slide-left.is-revealed {
  animation: reveal-bounce-left 760ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
.reveal-slide-right.is-revealed {
  animation: reveal-bounce-right 760ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
.reveal-scale.is-revealed {
  animation: reveal-bounce 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Stronger for cards */
.card.is-revealed,
.custom-card.is-revealed,
.glow-card.is-revealed,
.card-no-border.is-revealed {
  animation: reveal-bounce-lg 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Enhanced button hover effects */
.btn {
  padding: 14px 28px;
  border-radius: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}


.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
  z-index: -1;
}


.btn-primary:hover {
  color: var(--black);
  font-size: calc(100% + 2px);
}

.btn-primary::before {
  background: var(--gold);
}


/* Border glow animation */
@keyframes borderGlow {
  0%,
  100% {
    box-shadow: 0 0 5px var(--gold-glow);
  }
  50% {
    box-shadow: 0 0 20px var(--gold-glow), 0 0 30px var(--gold-glow);
  }
}

.btn:hover {
  animation: borderGlow 2.5s ease-in-out infinite;
}

.attention-btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1.8rem;
  font-weight: 600;
  color: #000;
  background: linear-gradient(135deg, #b37a00, #fff278, #9a6900);
  background-size: 200% 100%;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  animation: gradientFlow 1.5s linear infinite;
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

h1 {
  font-family: "Roboto", sans-serif;
  margin: 0;
  line-height: 1;
  font-weight: 900;
  color: var(--gold);
}
h3 {
  font-family: "Roboto", sans-serif;
  margin: 0;
  line-height: 1;
  font-weight: 900;
  color: var(--gold);
  font-size: 1.7rem;
}

a {
  text-decoration: none;
  color: inherit;
}
.honeypot {
  position: absolute;
  left: -5000px;
  top: -5000px;
}


@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.btn:hover {
  transform: translateY(-2px);
}

.card {
  background: var(--black-soft);
  border: 3px solid var(--gold);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
}

.card h3 {
  margin: 20px 0 10px;
  color: var(--gold);
}

p {
  font-size: 1.2rem;
  /* font-weight: bold; */
}

.card-link {
  display: inline-block;
  margin-top: 20px;
  /* color: var(--gold); */
  font-weight: 600;
}


/* Social links inside modal */
.social-list {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 12px 0 18px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
  border: 1px solid rgba(235, 160, 0, 0.08);
}

.social-link:hover {
  background-color: rgba(255, 243, 139, 0.45);
  font-weight: 750;
}
.social-link svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
}



.glow-box {
  border: 1px solid rgba(235, 160, 0, 0.25);
  box-shadow: 0 0 0 10px rgba(235, 160, 0, 0.15), 0 0 35px var(--gold-glow);
  border-radius: 28px;
}

.glow-card {
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.glow-card:hover {
  box-shadow: 0 0 25px rgba(235, 160, 0, 0.45);
  transform: translateY(-4px);
}


.custom-card h1 {
  font-size: 4rem;
  margin-bottom: 16px;
}

.custom-card h1 span {
  color: var(--gold);
}


.custom-card {
  box-shadow: 0 0 0 2px rgba(235, 160, 0, 0.15), 0 0 15px var(--gold-glow);
  max-width: none;
  width: calc(100% - 50px);
  margin: 50px auto;
  padding: 0px 40px;
  text-align: center;
  border: 3px solid var(--gold);
  border-radius: 20px;
  padding: 20px 30px;
  position: relative;
  min-height: 450px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.card-no-border {
  background: var(--black-soft);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
}

.card-no-border h3 {
  color: #d4a03f;
  font-size: 1.1rem;
  margin: 20px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.glow-card form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.glow-card input,
.glow-card textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid #d4a03f;
  color: #fff;
  padding: 10px 0;
  font-size: 1rem;
  padding: 10px;
}

.glow-card input::placeholder,
.glow-card textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.glow-card textarea {
  min-height: 80px;
  resize: vertical;
}

.btn-primary {
  background: var(--gold);
  color: #000;
  border: none;
  padding: 12px 40px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  align-self: center;
}

.custom-card > h3 {
  text-align: center;
  font-size: 0.9rem;
}

.center {
  text-align: center !important;
}

/* Mobile (phones & small tablets) */
@media (max-width: 768px) {
  
  h1 {
    font-size: 2.5rem !important;
  }
  h2 {
    font-size: 1.3rem !important;
  }
  h3 {
    font-size: 1rem !important;
  }
  p {
    font-size: 1rem;
    line-height: 1.6;
  }
  .left {
    padding: 0px 0px !important;
  }
  .attention-btn {
    font-size: 1rem;
  }
}
