* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@font-face {
  font-family: "Trajan_Pro_Bold";
  src: url("../fonts/Trajan_Pro_Bold.ttf") format("truetype");
}
@font-face {
  font-family: "BonVivant";
  src: url("../fonts/BonVivant-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Gotham_Light";
  src: url("../fonts/GothamHTF-Light.otf") format("opentype");
}

:root,
html {
  font-family: "Times New Roman", Times, serif;
  scroll-padding-top: 70px;
  line-height: 1.15;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}
:root {
  --colorPrimary: #e1b976;
  --colorSecondary: #eae7e4;
  --colorBlack: #000000;
  --colorWhite: #ffffff;

  --BackgroundBlack: #040201;
  --MetallicSilver: #eae7e4;
  --GoldHighlight: #e1b976;
  --DeepGold: #9c6d3b;
  --DarkBronze: #432a15;
  --GreyShine: #a29e9e;
}

body {
  background-color: var(--colorBlack);
  color: var(--colorWhite);
}
main {
  margin-top: 100px;
}

header {
  border-bottom: 2px solid var(--colorPrimary);
}

/*  */
.font-gotham {
  font-family: "Gotham_Light";
}

.button_gradient {
  background: linear-gradient(135deg, #ecb556, #b3824f, #89531f);
}

.countdown-row {
  max-width: 800px;
  margin-bottom: 60px;
}

.count-card {
  background: #111;
  border-radius: 20px;
  padding: 35px 20px;
  text-align: center;
  border: 1px solid #1f1f1f;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.05);
}

.count-card h2 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 5px;
}

.count-card span {
  font-size: 13px;
  letter-spacing: 2px;
  color: #9a9a9a;
}

.event-info {
  border: 1px solid #1e1e1e;
  border-left: 4px solid #caa64b;
  padding: 25px 30px;
  border-radius: 12px;
  margin-bottom: 30px;
  max-width: 850px;
}

.date {
  font-size: 18px;
  margin-bottom: 10px;
}

.venue {
  color: #caa64b;
  font-weight: 600;
  letter-spacing: 1px;
}

.register-btn {
  background: linear-gradient(90deg, #caa64b, #e6d2a2);
  border: none;
  padding: 14px 35px;
  border-radius: 6px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-top: 10px;
}

.register-btn:hover {
  opacity: 0.9;
}

@media (max-width: 768px) {
  .count-card {
    padding: 18px 8px;
  }

  .count-card h2 {
    font-size: 28px;
  }

  .count-card span {
    font-size: 10px;
  }
}

/* ----------------------------------------------------------- */
/* Modal Styles */
.custom-modal {
  background: #0b0b0b;
  border-radius: 20px;
  border: 1px solid #2c2c2c;
  border: 1px solid var(--GoldHighlight);
  color: #fff;
}

.modal-logo {
  max-width: 220px;
}

.form-title {
  font-size: 2rem;
  text-align: center;
  color: var(--colorPrimary);
  text-transform: uppercase;
  font-family: "Trajan_Pro_Bold";
}

.form-label {
  color: #bdbdbd;
  font-size: 14px;
}

.custom-input {
  background: #1a1a1a;
  border: 1px solid #333;
  color: #fff;
  padding: 14px;
  border-radius: 10px;
}

.custom-input::placeholder {
  color: #777;
}

.custom-input:focus {
  background: #1a1a1a;
  border-color: #caa64b;
  box-shadow: none;
  color: #fff;
}

.country-code {
  background: #1a1a1a;
  border: 1px solid #333;
  color: #ccc;
  border-radius: 10px 0 0 10px;
}

.designation-options {
  display: flex;
  gap: 30px;
  margin-top: 10px;
}

.custom-radio {
  accent-color: #caa64b;
}

.submit-btn {
  background: linear-gradient(90deg, #caa64b, #e6d2a2);
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 2px;
}

.submit-btn:hover {
  opacity: 0.9;
}

/*  */
.section-heading span {
  font-size: 60px;
  font-weight: 700;
  margin: 0 8px;
  display: inline-block;

  /* gradient text */

  background: linear-gradient(
    120deg,
    var(--MetallicSilver),
    var(--GoldHighlight),
    var(--DeepGold),
    var(--GoldHighlight),
    var(--MetallicSilver)
  );

  background-size: 200% auto;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  /* animation */

  animation: textGradient 4s linear infinite;
}

@keyframes textGradient {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

@keyframes goldShine {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 250% center;
  }
}

.section-heading span {
  text-shadow:
    0 0 8px rgba(225, 185, 118, 0.4),
    0 0 20px rgba(225, 185, 118, 0.25);
}

/*  */
.tracking-in-expand-fwd {
  -webkit-animation: tracking-in-expand-fwd 0.8s
    cubic-bezier(0.215, 0.61, 0.355, 1) both;
  animation: tracking-in-expand-fwd 0.8s cubic-bezier(0.215, 0.61, 0.355, 1)
    both;
}

/* ----------------------------------------------
 * Generated by Animista on 2026-3-12 15:11:46
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation tracking-in-expand-fwd
 * ----------------------------------------
 */
@-webkit-keyframes tracking-in-expand-fwd {
  0% {
    letter-spacing: -0.5em;
    -webkit-transform: translateZ(-700px);
    transform: translateZ(-700px);
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes tracking-in-expand-fwd {
  0% {
    letter-spacing: -0.5em;
    -webkit-transform: translateZ(-700px);
    transform: translateZ(-700px);
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
