@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=Manrope:wght@200..800&display=swap');

:root {
  --bg: #fbf8f3;
  --card-bg: #f4eee0;
  --text-dark: #1c1a17;
  --text-gray: #6f6a62;
  --gold: #ab8a44;
  --gold-light: #ddc07f;
  --gold-dark: #96742c;
  --border-light: #e6ddc9;
  --badge-bg: #17130f;
}

* {
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  color: var(--text-gray);
  background-color: var(--bg);
}

h1, h2, h3, h4, .brand-font {
  font-family: "Fraunces", serif;
  font-weight: 500;
  color: var(--text-dark);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

.text-gold {
  color: var(--gold) !important;
}

.italic-gold {
  font-style: italic;
  color: var(--gold);
}

.gold-gradient-text {
    -webkit-text-fill-color:transparent;
    color:#0000;
    background:linear-gradient(135deg,#deb868 0%,#e8c97a 25%,#c9a24b 55%,#a87f32 100%);
    -webkit-background-clip:text;
    background-clip:text
  }


/* ---------- Badge ---------- */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 20px;
  background-color: var(--badge-bg);
  border: 1px solid rgba(171, 138, 68, 0.6);
  border-radius: 30px;
  color: #f3e7cf;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.badge-pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--gold-light);
  display: inline-block;
}

/* ---------- Buttons ---------- */
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  border: 0;
  color: var(--text-dark);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.85rem;
  padding: 14px 20px;
  border-radius: 30px;
  box-shadow: 0 12px 24px rgba(171, 138, 68, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(171, 138, 68, 0.38);
  color: var(--text-dark);
}

.nav-register {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-register:hover {
  color: var(--gold-dark);
}

/* ---------- Header ---------- */
#header {
  background-color: var(--bg);
}

#header .navbar-brand img {
  max-width: 90px;
}

 .hairline-gold {
  height: 1px;
  background: linear-gradient(90deg,#0000 0%,#c9a24b80 20%,#c9a24bb3 50%,#c9a24b80 80%,#0000 100%);
  }


/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 90px 0 70px;
  background: radial-gradient(ellipse 900px 500px at 18% 30%, rgba(221, 192, 127, 0.16), transparent 60%);
}

.hero-heading {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: 84px;
  line-height: 1.08;
  margin-bottom: 18px;
}

@media (max-width: 991px) {
  .hero{
    padding: 60px 0 50px;
  }
  .hero-heading {
    font-size: 56px;
  }
}

@media (max-width: 575px) {
  .hero{
    padding: 40px 0 40px;
  }
  .hero-heading {
    font-size: 42px;
  }
}

.hero-heading .line {
  display: block;
}

.hero-sub {
  font-size: clamp(1.75rem, 2.4vw, 1.6rem);
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 18px;
}

.divider-short {
  width: 140px;
  margin: 0 0 20px;
}

.hero-tagline {
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 18px;
}

.hero-location {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 34px;
  display: block;
}

/* ---------- Info strip ---------- */
.info-strip {
}

.info-strip .info-col {
  padding: 24px 20px;
  border-right: 1px solid var(--border-light);
}

.info-strip .info-col:first-child {
  padding-left: 0;
}

.info-strip .info-col:last-child {
  border-right: 0;
}

.info-strip .value {
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1.25;
}

.info-strip .label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-gray);
  margin-top: 6px;
  display: block;
}

/* ---------- Registration card ---------- */
.register-card {
  background-color: var(--card-bg);
  border: 1px solid rgba(171, 138, 68, 0.35);
  border-radius: 16px;
  padding: 44px 40px;
  box-shadow: 0 30px 60px rgba(28, 26, 23, 0.08);
}

.register-card h2 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.3;
  margin: 18px 0 0;
}

.register-card .divider-short {
  margin-top: 18px;
}

.register-card .sub {
  font-size: 0.92rem;
  margin-bottom: 26px;
}

.register-card .form-group {
  margin-bottom: 20px;
}

.register-card label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-gray);
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.register-card .form-control {
  border: 0;
  border-bottom: 1px solid var(--border-light);
  border-radius: 0;
  padding: 6px 2px;
  background-color: transparent;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.register-card .form-control:focus {
  box-shadow: none;
  border-color: var(--gold);
}

.register-card .form-check {
  margin-bottom: 22px;
}

.register-card .form-check-label {
  font-size: 0.78rem;
  color: var(--text-gray);
}

.register-card .form-check-label a {
  color: var(--gold);
  text-decoration: underline;
}

.register-card .btn-gold {
  width: 100%;
}

.register-card .disclaimer {
  font-size: 0.72rem;
  color: var(--text-gray);
  margin-top: 16px;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .register-card h2 {
    font-size: 1.5rem;
    margin: 0;
  }
}

/* ---------- Footer ---------- */
.site-footer {
  background-color: var(--bg);
}

.site-footer .footer-container {
  padding: 50px 0 40px;
}

.site-footer .footer-logo {
  max-width: 90px;
  margin-bottom: 18px;
}

.site-footer p {
  font-size: 0.92rem;
  line-height: 1.7;
}

.site-footer .company-name {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 10px;
}

.site-footer hr {
  border-color: var(--border-light);
  margin: 40px 0 18px;
  opacity: 1;
}

.site-footer .copyright {
  font-size: 0.78rem;
  color: var(--text-gray);
}

.tick-icon{
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg,#e8c97a 0%,#deb868 30%,#c9a24b 65%,#a87f32 100%);
  box-shadow: rgba(201, 162, 75, 0.6) 0px 10px 30px -10px;
}
.tick-icon > svg{
  width: 40px;
}
/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .hero .row {
    text-align: center;
  }
  .hero-tagline {
    margin-left: auto;
    margin-right: auto;
  }
  .divider-short{
    margin-left: auto;
    margin-right: auto;
  }
  .info-strip {
    text-align: center;
  }
  .info-strip .info-col {
    padding: 16px 0;
  }
  .info-strip .info-col:last-child {
    border-bottom: 0;
  }
  .register-card {
    margin-top: 50px;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }
  .site-footer{
    text-align: center;
  }
  .site-footer .col-lg-6:last-child {
    text-align: center !important;
    margin-top: 30px;
  }
}

@media (max-width: 575px) {
  .info-strip .info-col {
    border-right: 0;
    border-bottom: 1px solid var(--border-light);
  }
  .register-card {
    padding: 30px 22px;
  }
}
