:root {
  --light-gray: #f8f8f8;
  --gray: #454e50;
  --dark-gray: #414042;
  --black: #1a1a1a;
  --blue: #2d3e50; /* #2d3e50 */
  --orange: #fbb03b;
  --gold: #D29B43;
  --tan: #FBF6EE;
  --tan-dark: #F5E8D4;
  --tan-darker: #EAD2AC;
}

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

body {
  font-family: 'Lato', sans-serif;
  color: var(--dark-gray);
  line-height: 1.6;
  /* background-color: var(--light-gray); */
}

a {
  color: var(--gold);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.header {
  background: var(--blue);
  color: white;
  padding: 0.75rem 2rem;
  text-align: center;
}

.header-title {
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-section {
  position: relative;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0 60%;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  max-width: 900px;
}

.hero-title {
  font-family: 'Great Vibes', cursive;
  /* font-size: clamp(3rem, 8vw, 5.5rem); */
  font-size: 5.5rem;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 0;
  color: var(--tan);
}
.hero-title2 {
  position: relative;
  top: -28px;
  right: 48px;
  font-size: 1.8rem;
}

.hero-subtitle {
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0.95;
  color: var(--tan-darker);
}
.hero-subtitle2 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--tan-darker);
}


@media (max-width: 319px) {
  .hero-title {
    font-size: 3.4rem;
  }
  .hero-title2 {
    font-size: 1.2rem;
    top: -18px;
    right: 34px;
  }
}
@media (min-width: 320px) and (max-width: 374px) {
  .hero-title {
    font-size: 3.8rem;
  }
  .hero-title2 {
    font-size: 1.3rem;
    top: -20px;
    right: 37px;
  }
}
@media (min-width: 375px) and (max-width: 427px) {
  .hero-title {
    font-size: 4.6rem;
  }
  .hero-title2 {
    font-size: 1.5rem;
    top: -23px;
    right: 40px;
  }
}

.badge {
  display: inline-block;
  background-color: var(--gold);
  color: white;
  padding: 0.25rem 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 20px;
}

.content-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.intro-text {
  /* font-size: 1.1rem;
  line-height: 1.8; */
  margin-bottom: 3rem;
  /* margin: -105px 0 2rem; */
  /* background-color: var(--tan-dark); */
  /* position: relative; */
  /* z-index: 2; */
  /* padding: 1.5rem 2rem; */
  /* border-radius: 4px; */
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
}

.details-form-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* gap: 2rem; */
  margin-bottom: 3rem;
}

.event-details {
  background: var(--light-gray);
  border-left: 4px solid var(--tan-darker);
  padding: 2rem;
  position: relative;
}

.event-details p {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.event-details strong {
  font-weight: 700;
  color: var(--blue);
}

.divider {
  border: 0;
  height: 1px;
  background: #ddd;
  margin: 3rem 0;
}

.closing-text {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.quote-section {
  background: var(--blue);
  color: white;
  padding: 3rem 2rem;
  text-align: center;
  /* margin-top: 3rem; */
}

.quote-text {
  font-size: 1.3rem;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto 1rem;
  line-height: 1.7;
  font-weight: 300;
}

.quote-author {
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  opacity: 0.8;
}

.footer {
  background: var(--black);
  color: white;
  padding: 1.25rem;
  text-align: center;
}

.footer-text {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Icons */
.icon-container {
  background-color: var(--tan-darker);
  border-radius: 40px;
  /* padding: 3px; */
  width: 30px;
  height: 30px;
  text-align: center;
  position: absolute;
  left: -16px;
}
.icon {
  width: 20px;
  height: 20px;
  fill: var(--blue);
  vertical-align: middle;
}
.loading {
  animation: spin 1.6s linear infinite;
  fill: white;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* === FA Form === */
.wFormContainer {
  background: var(--blue);
  /* border: 2px dashed #ccc; */
  border-radius: 4px;
  padding: 2rem;
  height: 100%;
}

.oneField {
  margin-bottom: 1rem;
}

.oneField label {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 400;
  font-size: 0.95rem;
  /* color: #555; */
  color: white;
}

.oneField input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  background: white;
}

.actions {
  margin-top: 1.4rem;
}

.errFld input {
  border: 1px solid #ff6b6b !important;
}
.errMsg {
  color: #ff6b6b;
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

/* === Components === */
.btn {
  display: block;
  width: 100%;
  background: var(--gold);
  color: white;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition-duration: .2s;
  transition-timing-function: cubic-bezier(0, 0, .2, 1);
  transition-property: color, background-color, border-color, opacity, box-shadow, transform, filter;
}
.btn:hover {
  /* filter: brightness(0.85); */
  background: oklch(from var(--gold) calc(l - 0.07) c h);
}


/* === Utilities === */
.hidden {
  display: none !important;
}

@media (max-width: 768px) {
  /* .hero-title {
    font-size: 2.5rem;
  } */

  .content-wrapper {
    padding: 2rem 1.5rem;
  }

  .hero-section {
    min-height: 400px;
  }

  .details-form-container {
    grid-template-columns: 1fr;
  }
}