* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #f7f2ea;
  color: #161616;
  font-family: Arial, sans-serif;
}

.event-hero {
  min-height: 70vh;
  padding: 160px 56px 90px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.72)),
    url("../images/hapag-food.jpg") center/cover no-repeat;
  color: #fff;
}

.event-hero-content {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.eyebrow {
  color: #c7a86d;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.event-hero h1 {
  font-family: Georgia, serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.9;
  font-weight: 400;
  max-width: 850px;
  margin-bottom: 24px;
}

.event-hero p:not(.eyebrow) {
  max-width: 650px;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
}

.event-form-section {
  padding: 90px 56px;
}

.event-form-wrapper {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.form-intro {
  max-width: 680px;
  margin-bottom: 42px;
}

.form-intro h2 {
  font-family: Georgia, serif;
  font-size: clamp(2.3rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 18px;
  color: #26351f;
}

.form-intro p:not(.eyebrow) {
  color: #555;
  line-height: 1.7;
}

.event-form {
  display: grid;
  gap: 28px;
}

.form-card {
  background: #fffaf2;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 32px;
  padding: 34px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.06);
}

.form-card-header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 30px;
}

.form-card-header span {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #26351f;
  color: #f7f2ea;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.form-card-header h3 {
  font-family: Georgia, serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: #26351f;
  margin-bottom: 6px;
}

.form-card-header p {
  color: #777;
  line-height: 1.5;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.form-group label {
  color: #4f6146;
  font-size: 0.86rem;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.13);
  border-radius: 16px;
  background: #fff;
  padding: 16px 18px;
  font-size: 1rem;
  outline: none;
  color: #161616;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: #c7a86d;
  box-shadow: 0 0 0 4px rgba(199, 168, 109, 0.18);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.menu-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.035);
}

.menu-card h4 {
  color: #26351f;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}

.menu-card label,
.payment-options label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  margin-bottom: 13px;
  color: #333;
  cursor: pointer;
}

.menu-card input,
.payment-options input {
  width: 18px;
  height: 18px;
  accent-color: #66785f;
}

.dessert-card {
  grid-column: span 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
}

.dessert-card h4 {
  grid-column: span 3;
}

.full-width {
  margin-bottom: 26px;
}

.included-box {
  background: #f1eadf;
  border-left: 5px solid #c7a86d;
  border-radius: 18px;
  padding: 22px;
  margin-bottom: 26px;
}

.included-box strong {
  color: #26351f;
}

.included-box p {
  margin-top: 6px;
  color: #555;
}

.payment-options {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.submit-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: #26351f;
  color: #fff;
  padding: 30px 34px;
  border-radius: 28px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.12);
}

.submit-panel p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
}

.submit-panel button {
  border: none;
  background: #c7a86d;
  color: #161616;
  padding: 17px 30px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.8px;
  cursor: pointer;
  white-space: nowrap;
  transition: 0.25s ease;
}

.submit-panel button:hover {
  background: #f1d28f;
  transform: translateY(-2px);
}

.event-booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 32px;
  align-items: start;
}

.estimate-panel {
  position: sticky;
  top: 130px;
  background: #fffaf2;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 32px;
  padding: 30px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
}

.estimate-eyebrow {
  color: #c7a86d;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.72rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.estimate-panel h3 {
  font-family: Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
  color: #26351f;
  margin-bottom: 28px;
}

.estimate-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 22px;
}

.estimate-row span,
.estimate-line span {
  color: #666;
  font-size: 0.9rem;
}

.estimate-row strong {
  color: #b97900;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.estimate-box {
  background: #f7f2ea;
  border-radius: 22px;
  padding: 22px;
}

.estimate-line,
.estimate-total {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.estimate-line strong {
  color: #26351f;
}

.estimate-total {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  padding-top: 18px;
  margin-bottom: 0;
}

.estimate-total span {
  font-weight: 800;
  color: #26351f;
  text-transform: uppercase;
}

.estimate-total strong {
  color: #b97900;
  font-size: 1.4rem;
}

.estimate-note {
  margin-top: 20px;
  color: #666;
  font-size: 0.88rem;
  line-height: 1.6;
}

.event-topbar {
  position: absolute;
  top: 34px;
  left: 50%;
  transform: translateX(-50%);

  width: min(1180px, calc(100% - 48px));

  display: flex;
  align-items: center;
  justify-content: space-between;

  z-index: 1000;
}

.event-logo img {
  height: 74px;
  object-fit: contain;
}

.back-home-btn {
  text-decoration: none;
  color: #000000;
  border: 1px solid rgba(255,255,255,.18);
  background:#c7a86d;

  backdrop-filter: blur(16px);

  padding: 14px 22px;
  border-radius: 999px;

  font-size: .9rem;
  font-weight: 700;

  transition: .25s ease;
}

.back-home-btn:hover {
  background:#cfa85f;
  transform: translateY(-2px);
}

.deposit-field {
  display: none;
  margin-top: 18px;
}

.deposit-field.active {
  display: block;
}

.deposit-field input {
  width: 25%;
}
