/* ── Reset ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --pink:   #fac3dd;
  --navy:   #3a58a3;   
  --red:    #e42320;   
  --white:  #ffffff;
}

@font-face {
  font-family: 'TT Norms Pro';
  src: url('fonts/TypeType\ -\ TT\ Norms\ Pro\ Normal.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'TT Norms Pro';
  src: url('fonts/TypeType\ -\ TT\ Norms\ Pro\ Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'TT Norms Pro';
  src: url('fonts/TypeType\ -\ TT\ Norms\ Pro\ Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'TT Norms Pro';
  src: url('fonts/TTNormsPro-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Ogg';
  src: url('fonts/Ogg-RegularItalic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'Ogg';
  src: url('fonts/Ogg-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

/* ── Base ── */
html {
  width: 100vw;
  height: auto;
  overflow-x: hidden;
}
body {
  background: var(--pink);
  color: var(--red);
  font-family: 'TT Norms Pro', sans-serif;
  font-weight: 400;
  line-height: normal;
  width: 100%;
  position: relative;
  overflow: hidden;
}


/* ── Page wrapper ── */
.page {
  max-width: 660px;
  /* background-color: aquamarine; */
  margin: 0 auto;
  padding: 36px 24px 48px;
  text-align: center;
}

/* ── Brand labels ── */
.brand-top,
.brand-bottom {
  font-family: 'TT Norms Pro', sans-serif;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--red);
  margin-bottom: 2rem;
}

.brand-bottom {
  margin-top: 36px;
  margin-bottom: 0rem;
}

/* ── Hero icons row ── */
.hero-icons {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin: 4rem 0rem;
}


.hero-icon {
  position: relative;
  width: 100px;
}

.icon-num {
  font-family: 'Ogg';
  font-size: 50px;
  color: var(--red);
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.hero-icon img {
  width: auto;
  display: block;
}

/* Stagger vertical positions */
.hero-icon:nth-child(1) .icon-num { top: -30px; left: 0; }
.hero-icon:nth-child(2) .icon-num { top: 95px; left: 60%; }
.hero-icon:nth-child(3) .icon-num { top: -5px; left: -25px; }
.hero-icon:nth-child(4) .icon-num { top: -55px; right: 0px; }

.hero-icon:nth-child(1) img { height: 7rem; margin-right: 1rem; }
.hero-icon:nth-child(2) img { height: 8.5rem; margin-right: 1rem; }
.hero-icon:nth-child(3) img { height: 8.5rem; margin-right: -1rem; }
.hero-icon:nth-child(4) img { height: 4rem; transform: scaleX(-1); margin-left: -1rem;  }

/* ── Main title ── */
.main-title,
.section-heading {
  font-family: 'Ogg', serif;
  font-size: clamp(36px, 8vw, 56px);
  font-style: italic;
  color: var(--red);
  line-height: 1.1;
  margin-bottom: 14px;
  font-weight: 400;
}

/* ── Main description ── */
.main-desc {
  font-size: clamp(14px, 1.6vw, 18px);
  line-height: 1.65;
  margin-bottom: 8px;
}

/* ── Divider ── */
.divider {
  border: none;
  border-top: 2px solid var(--navy);
  margin: 28px 0;
}

/* ── Info sections ── */
section {
  margin: 0rem 2rem;
  max-width: 100%;
  /* background-color: #e2cbca; */
}

.section-content {
  padding: 0rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* background-color: aqua; */
}

.section-text {
  font-size: clamp(14px, 1.6vw, 18px);
  line-height: 1.65;
}

/* ── Schedule list ── */
.schedule-list {
  text-align: left;
  font-size: clamp(14px, 1.6vw, 18px);
  line-height: 1.55;
}

.schedule-list li {
  display: grid;
  grid-template-columns: 16px 60px 1fr;
  gap: 0 8px;
  margin-bottom: 4px;
}

.schedule-prefix {
  text-align: left;
}

.schedule-time {
  text-align: right;
}

.schedule-desc {
  text-align: left;
  margin-left: 2.5rem;
}


/* ── Form section ── */
.form-section {
  text-align: center;
}

/* Radio buttons */
.radio-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin: 16px auto 20px;
  width: 100%;
  text-align: left;
}

.radio-label {
  display: flex;
  align-items: center;
  padding: 2px;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  cursor: pointer;
}

/* Hide native radio */
.radio-label input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 2px solid var(--red);
  border-radius: 50%;
  background: transparent;
  flex-shrink: 0;
  cursor: pointer;
  transition: background 0.15s;
}

/* Checked state — red dot inside */
.radio-label input[type="radio"]:checked {
  background: radial-gradient(circle, var(--red) 40%, transparent 45%);
  border-color: var(--red);
}

/* Form inputs */
.form-input {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 auto 10px;
  padding: 10px 100px;
  border: 2px solid var(--navy);
  border-radius: 999px;
  background: var(--white);
  font-family: 'TT Norms Pro', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--red);
  text-align: center;
  outline: none;
  transition: box-shadow 0.2s;
}

.form-input::placeholder {
  color: var(--red);
  font-weight: 600;
}

.form-input:focus {
  box-shadow: 0 0 0 3px rgba(26, 32, 87, 0.2);
}

/* Textarea block */
.textarea-wrapper {
  max-width: 100%;
  margin: 0 auto 14px;
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: 18px;
  padding: 24px 20px 0px;
  text-align: center;
}

.textarea-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 6px;
}

.form-textarea {
  width: 100%;
  border: none;
  outline: none;
  resize: none;
  font-family: 'TT Norms Pro', sans-serif;
  font-size: 12px;
  color: var(--red);
  background: transparent;
  min-height: 64px;
  text-align: center;
}

.form-textarea::placeholder {
  color: var(--red);
}

/* Submit button */
.btn-submit {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 26px auto 0;
  padding: 6px 100px;
  border: none;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-family: 'Ogg';
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
}

.btn-submit:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn-submit:active {
  transform: translateY(0);
}


/* Success message */
.success-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--pink);
    z-index: 100;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

body.show-success .success-overlay {
    display: flex;
}

.success-box {
    max-width: 400px;
}

.success-title {
    font-family: 'Ogg', serif;
    font-style: italic;
    font-size: 42px;
    color: var(--red);
    margin-bottom: 16px;
    line-height: 1.2;
}

.success-text {
    font-size: 16px;
    color: var(--ink);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.success-bird {
  width: 10rem;
  height: auto;
}

/* ── Background Birds ── */
.bg-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.bg-icon {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.bg-icon img {
  width: 150%;
  height: auto;
  display: block;
}

.bg-icon:nth-child(1) {
  left: -55px;
  top: 25%;
  width: 90px;
  transform: rotate(45deg);
}

.bg-icon:nth-child(2) {
  right: 6px;
  top: 42%;
  width: 70px;
}

.bg-icon:nth-child(2) img {
  width: 120%;
  height: auto;
}

.bg-icon:nth-child(3) {
  left: -20px;
  top: 75%;
  width: 115px;
  transform: rotate(40deg) scaleX(-1);
}

.bg-icon:nth-child(4) {
  right: -3px; 
  bottom: -4%; 
  width: 90px;
  transform: rotate(-35deg);
}


/* errors */
.field-error {
    display: block;
    font-size: 12px;
    color: var(--red);
    margin: 4px auto;
    text-align: center;
}

.input-error {
    border-color: var(--red) !important;
    box-shadow: 0 0 0 3px rgba(200, 16, 62, 0.15) !important;
}


/* ── Responsive ── */
@media (max-width: 480px) {

.icon-num {
    font-size: 26px;
  }

  .hero-icons {
    justify-content: space-between;
    margin: 2rem 0;
  }

  .hero-icon {
    width: 60px;
  }

  .hero-icon:nth-child(1) img { height: 3.8rem; margin-right: 0.5rem; }
  .hero-icon:nth-child(2) img { height: 4.6rem; margin-right: 0.5rem; }
  .hero-icon:nth-child(3) img { height: 4.6rem; margin-right: -0.5rem; }
  .hero-icon:nth-child(4) img { height: 2.2rem; transform: scaleX(-1); margin-left: -0.5rem; }

  .hero-icon:nth-child(1) .icon-num { top: -16px; left: 0; }
  .hero-icon:nth-child(2) .icon-num { top: 52px; left: 60%; }
  .hero-icon:nth-child(3) .icon-num { top: -3px; left: -14px; }
  .hero-icon:nth-child(4) .icon-num { top: -30px; right: 0px; }


.bg-icon:nth-child(1) {
  left: -45px;
  top: 25%;
  width: 70px;
  transform: rotate(35deg);
}

.bg-icon:nth-child(2) {
  right: -10px;
  top: 40.5%;
  width: 60px;
}

.bg-icon:nth-child(3) {
  left: -35px;
  top: 75%;
  width: 105px;
  transform: rotate(40deg) scaleX(-1);
}

.bg-icon:nth-child(4) {
  right: -3px; 
  bottom: -4%; 
  width: 70px;
  transform: rotate(-35deg);
}

  .section-content {
    padding: 0rem 0rem;
  }

  .form-input {
    padding: 10px 50px;
  }

  .btn-submit {
    padding: 6px 20px;
  }

  .schedule-desc {
    margin-left: 0.5rem;
  }

}