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

body {
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #1f2d3d;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}


/* MAIN CONTAINER */
.container {
  flex: 1;
  max-width: 900px;
  margin: 60px auto;
  text-align: center;
  padding: 0 20px;
}

/* PROGRESS STEPS */
.steps {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 50px;
  font-weight: 500;
  color: #9aa7b2;
}

.step {
  cursor: pointer;
}

.step.active {
  color: #1f3a53;
  font-weight: 600;
}

/* FORM SECTIONS */
.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

/* HEADINGS */
.container h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 500;
  margin-bottom: 20px;
  color: #1f3a53;
}



/* EVENT OPTIONS */
.event-options {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.event-card {
  position: relative;
}

.event-card input {
  display: none;
}

.event-card span {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  border: 1.5px solid #c6d6e3;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.25s ease;
}

.event-card span:hover {
  background-color: #f1f6fa;
  border-color: #9bb9d3;
}

.event-card input:checked + span {
  background-color: #1f3a53;
  color: white;
  border-color: #1f3a53;
}

/* INPUT GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-bottom: 40px;
}

input,
textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1.5px solid #d5e2ec;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
}

textarea {
  min-height: 160px;
  resize: vertical;
}

/* BUTTONS */
.btn {
  background-color: #1f3a53;
  color: white;
  border: none;
  padding: 14px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn:hover {
  background-color: #d5e2ec;
}

.submit {
  margin-top: 20px;
}

/* FOOTER */
footer {
  background-color: #1f2d3d;
  color: white;
  text-align: center;
  padding: 22px;
  font-size: 14px;
}


.booking-intro {
  font-size: 1.1rem;
  color: #6b7c8a;
  margin-bottom: 45px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.step-label {
  font-size: 0.9rem;
  color: #9aa7b2;
  margin-bottom: 35px;
  letter-spacing: 0.5px;
}

.centered-grid {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.form-navigation {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

/* Back button style */
.btn.back {
  background-color: transparent;
  color: #1f3a53;
  border: 1.5px solid #c6d6e3;
}

.btn.back:hover {
  background-color: #f1f6fa;
}
