/* ── GLOBAL ── */
body {
  font-family: var(--font-body);
  background: var(--color-black);
  color: var(--color-black);
  overflow-x: hidden;
}

/* ════════════════════════════
   BUTTONS
════════════════════════════ */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.08em;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
  border: 1.5px solid transparent;
}

.btn--dark {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

.btn--dark:hover {
  opacity: 0.75;
}

.btn--outline {
  background: transparent;
  color: var(--color-black);
  border-color: var(--color-black);
}

.btn--outline:hover {
  background: var(--color-black);
  color: var(--color-white);
}


/* ════════════════════════════
   HERO
════════════════════════════ */
.hero {
  padding: 38px 38px 44px;
  border-radius: 50px;
  background: var(--color-white);
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  background-image: url('../assets/background.webp');  
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 24px;
}

.hero-sfsm-logo {
   height: 45px;
  width: auto;
}

.hero-top-btn {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.08em;
  color: var(--color-white);
  background: var(--color-black);
  padding: 7px 22px;
  border-radius: var(--radius-pill);
  transition: opacity var(--transition);
}

.hero-top-btn:hover {
  opacity: 0.7;
}

.hero-top-outline-btn {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.08em;
  color: var(--color-black);
  background: transparent;
  border: 1.5px solid var(--color-black);
  padding: 7px 22px;
  border-radius: var(--radius-pill);
  transition: opacity var(--transition);
}

.hero-top-outline-btn:hover {
  background: var(--color-black);
  color: var(--color-white);}

/* positions the image */
.hero-logo-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

/* sizes the image */
.hero-logo-img {
  width: 1000px;
  height: auto;
  display: block;
}

.hero-meta {
  display: flex;
  font-size: 16px;
  justify-content: flex-start;
  gap: 26px;
  color: var(--color-black);
  letter-spacing: -0.08em;
  margin-bottom: 20px;
  margin-top: 20px;
  font-weight: 500;
}

.hero-meta strong {
  color: var(--color-black);
  font-weight: 500;

}

.hero-actions {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: flex-start;
}


/* ════════════════════════════
 SPEAKER
 ════════════════════════════ */

.speaker {
  aspect-ratio: 3 / 4;
  margin-top: clamp(-200px, -20vw, -80px);
  z-index: 3;
  position: relative;
  min-height: 600px;
}

.speaker-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.speaker-text {
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 100%;
}

.speaker-text-desktop { display: block; }
.speaker-text-mobile  { display: none; }
.speaker-text-small { display: none; }

/* ════════════════════════════
   DATES
════════════════════════════ */
.dates {
  background: var(--color-black);
  color: var(--color-white);
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  overflow: visible;
}


.dates-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding: var(--section-pad);
}

.dates-left {
  flex: 1;
}

.dates-tag {
  font-size: var(--text-small);
  font-weight: 500;
  letter-spacing: -0.08em;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 16px;
  text-align: right;
}

.dates-title {
  font-family: var(--font-display);
  font-size: clamp(64px, 12vw, 300px);
  font-weight: 900;
  line-height: 1;
  color: var(--color-white);
  text-transform: lowercase;
  margin-bottom: 36px;
  letter-spacing: -0.08em;
}

.dates-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.date-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.date-day {
  font-family: var(--font-display);
  font-size: clamp(32px, 3vw, 64px);
  font-weight: 900;
  color: var(--color-white);
  line-height: 0.8;
  letter-spacing: -0.08em;
}

.date-time {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 500;
  color: var(--color-white);
  line-height: 0.8;
  letter-spacing: -0.08em;
}

.date-detail {
  font-size: clamp(16px, 3vw, 28px);
  font-weight: 300;
  color: #ffffff;
  line-height: 0.5;
  letter-spacing: -0.08em;
}



/* ════════════════════════════
   TICKER
════════════════════════════ */
.ticker {
  overflow: hidden;
  white-space: nowrap;
  background: var(--color-black);
  padding: 12px 0;
}

.ticker-track {
  display: inline-block;
  animation: ticker 20s linear infinite;
}

.ticker-track--reverse {
  animation-direction: reverse;
}

.ticker-track span {
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
  padding: 0 28px;
  letter-spacing: -0.08em;
}

.ticker-dot {
  color: #ffffff !important;
  padding: 0 6px !important;
  letter-spacing: 0 !important;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ════════════════════════════
   FREE TO ATTEND
════════════════════════════ */
.free {
  background: var(--color-black);
  color: var(--color-white);
  padding: var(--section-pad);
  text-align: center;
}

.free-eyebrow {
  font-family: var(--font-display);
  font-size: clamp(12px, 2vw, 16px);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 12px;
}

.free-title {
  font-family: var(--font-display);
  font-size: clamp(64px, 12vw, 180px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.08em;
  text-transform: lowercase;
  margin-bottom: 24px;
}

.free-sub {
  font-size: clamp(16px, 2.5vw, 24px);
  font-weight: 400;
  opacity: 0.7;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.4;
  letter-spacing: -0.03em;
}


/* ════════════════════════════
   WHAT IS
════════════════════════════ */
.what {
  padding: var(--section-pad);
  background: var(--color-white);
}

.what-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.what-eyebrow {
  font-family: var(--font-display);
  font-size: clamp(64px, 12vw, 300px);
  font-weight: 900;
  line-height: 1;
  color: var(--color-black);
  text-transform: lowercase;
  margin-bottom: -10px;
  letter-spacing: -0.08em;
}

.what-title-img {
  width: 1200px;
  height: auto;
  display: block;
  margin-bottom: 24px;
}

.what-body {
  font-size: 32px;
  font-weight: 400;
  color: #000000;
  line-height: 1;
  letter-spacing: -0.05em;

}

.what-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: #f0f0f0;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.what-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}




/* ════════════════════════════
   SHIRT
════════════════════════════ */
.shirt {
  background: var(--color-black);
  padding: var(--section-pad);
  text-align: left;
  padding-top: 160px;
  padding-bottom: 160px;
  
}

.shirt-title .font-normal {
  font-family: var(--font-display);
  font-size: clamp(64px, 9vw, 300px);
  font-weight: 400;
  line-height: 0;
  text-transform: lowercase;
  color: var(--color-white);
  margin-bottom: 8px;
  letter-spacing: -0.08em;
}

.shirt-title .font-bold {
  font-family: var(--font-display);
  font-size: clamp(64px, 9vw, 300px);
  font-weight: 900;
  line-height: 0.8;
  text-transform: lowercase;
  color: var(--color-white);
  margin-bottom: 8px;
  letter-spacing: -0.08em;
}

.shirt-sub {
  font-size: 24px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 48px;
  letter-spacing: -0.08em;
}

.shirt-img {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  gap: 16px;
}

.shirt-img img {
  width: 50%;
  border-radius: var(--radius-md);
  object-fit: cover;
}


  /* ════════════════════════════
    LOCATION
  ════════════════════════════ */
  .location {
    background: var(--color-black);
    padding: 64px 32px 0;
  }

  .location-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
  }

  .location-pin {
    font-size: 22px;
    margin-top: 10px;
  }

  .location-name .font-bold{
    font-family: var(--font-display);
    font-size: clamp(64px, 8vw, 300px);
    font-weight: 900;
    line-height: 0.9;
    text-transform: lowercase;
    color: var(--color-white);
    letter-spacing: -0.08em;
    text-align: left;
    flex: 1;
  }

  .location-name .font-normal{
    font-family: var(--font-display);
    font-size: clamp(64px, 8vw, 300px);
    font-weight: 400;
    line-height: 0.9;
    text-transform: lowercase;
    color: var(--color-white);
    letter-spacing: -0.08em;
    text-align: left;
    flex: 1;
  }

  .location-address {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 1000px);
    font-weight: 400;
    color: var(--color-white);
    line-height: 1.1;
    letter-spacing: -0.08em;
    text-align: right;
    flex: 1;
  }

  .location-photo {
    width: 40%;
    overflow: hidden;
    position: relative;
    top: -35vw;        /* pull it up under the text */
    margin-bottom: -30vw;  /* compensate so it doesn't leave a gap */
    z-index: 0;
    margin-left: auto;
    margin-right: auto;
  }

  .location-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; 
  }

  .location-mobile { display: none; }

  
/* ════════════════════════════
   REGISTER HERO
════════════════════════════ */
.reg-hero {
  background: var(--color-black);
  padding: 120px 32px 64px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.reg-hero-title .font-normal {
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 300px);
  font-weight: 400;
  line-height: 0;
  text-transform: lowercase;
  color: var(--color-white);
  margin-bottom: 12px;
  letter-spacing: -0.08em;
}

.reg-hero-title .font-bold {
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 300px);
  font-weight: 900;
  line-height: 0.8;
  text-transform: lowercase;
  color: var(--color-white);
  margin-bottom: 12px;
  letter-spacing: -0.08em;
}

.reg-deadline {
  font-size: 24px;
  color: #ffffff;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
  margin-top: 20px;
  letter-spacing: -0.08em;
}

.reg-zelle {
  font-size: 16px;
  color: #A5A5A5;
  letter-spacing: -0.08em;
}

.reg-price {
  font-family: var(--font-display);
  font-size: clamp(100px, 17vw, 500px);
  font-weight: 900;
  line-height: 1;
  color: var(--color-white);
  letter-spacing: -0.08em;
  margin-top: -30px;  /* adjust until it lines up */
}


/* ════════════════════════════
   FORM
════════════════════════════ */
.form-section {
  background: var(--color-white);
  padding: var(--section-pad);
  border-radius: 50px;
}

.form-wrap {
  max-width: 550px;
}

.form-heading {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 900;
  color: var(--color-black);
  margin-bottom: 4px;
  letter-spacing: -0.08em ;
  line-height: 1;
}

.form-sub {
  font-size: 16px;
  font-style: italic;
  color: var(--color-gray);
  margin-top: 18px;
  margin-bottom: 36px;
  line-height: 1;
  letter-spacing: -0.08em;
}

.field {
  margin-bottom: 22px;
}

.day-btn {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  color: #666;
  background: var(--color-white);
  border: 1px solid #ddd;
  border-radius: var(--radius-sm);  
  transition: all var(--transition);
  cursor: pointer;
  font-family: var(--font-body);
  letter-spacing: -0.08em;
}

.day-btn:hover {
  border-color: var(--color-black);
  color: var(--color-black);
}

.day-btn.selected {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

.field label {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-black);
  letter-spacing: -0.08em;
  margin-bottom: 8px;
}

.field label .hint {
  font-weight: 300;
  font-style: italic;
  color: #bbb;
  margin-left: 4px;
}

.field input {
  width: 100%;
  background: transparent;
  border: 1.5px solid #ddd;
  border-radius: 15px;
  padding: 14px 18px;
  font-size: 14px;
  color: var(--color-black);
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.field textarea {
  width: 100%;
  background: transparent;
  border: 1.5px solid #ddd;
  border-radius: 15px;
  padding: 18px;
  font-size: 14px;
  color: var(--color-black);
  outline: none;
  transition: border-color var(--transition);
  resize: none;
  min-height: 120px;
  appearance: none;
  -webkit-appearance: none;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--color-black);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #ccc;
  font-size: 13px;
}

.field textarea {
  resize: none;
}

/* Size buttons */
.size-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.size-btn {
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 500;
  color: #666;
  background: var(--color-white);
  border: 1px solid #ddd;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.size-btn:hover {
  border-color: var(--color-black);
  color: var(--color-black);
}

.size-btn.selected {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

/* Error */
.form-error {
  font-size: 12px;
  color: #b94040;
  min-height: 18px;
  margin-bottom: 4px;
}

/* Submit */
.submit-btn {
  width: 100%;
  padding: 15px;
  background: var(--color-black);
  color: var(--color-white);
  border-radius: 15px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-top: 12px;
  transition: opacity var(--transition);
  letter-spacing: -0.08em;
}

.submit-btn:hover {
  opacity: 0.8;
}

.form-note {
  font-size: var(--text-xs);
  color: #aaa;
  text-align: center;
  margin-top: 14px;
  font-style: italic;
}

/* Success state */
.success {
  display: none;
  text-align: center;
  padding: 64px 0;
}

.success.visible {
  display: block;
}

.success-check {
  width: 56px;
  height: 56px;
  background: var(--color-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--color-white);
  font-size: 22px;
}

.success-title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  text-transform: lowercase;
  margin-bottom: 10px;
  letter-spacing: -0.08em;

}

.success-msg {
  font-size: 14px;
  color: var(--color-gray);
  line-height: 1.8;
  max-width: 380px;
  margin: 0 auto 24px;
}

.zelle-box {
  background: #f5f5f3;
  border-radius: var(--radius-md);
  padding: 18px 22px;
  font-size: 13px;
  color: #333;
  line-height: 1.7;
  max-width: 360px;
  margin: 0 auto;
  text-align: left;
}

.zelle-num {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-black);
  display: inline-block;
  margin-top: 4px;
}

.zelle-note-sm {
  font-size: 11px;
  color: #aaa;
  display: block;
  margin-top: 4px;
}


/* ════════════════════════════
   FOOTER
════════════════════════════ */
.footer {
  background: var(--color-black);
  color: #606060;
  text-align: center;
  padding: 28px 24px;
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
}


/* ════════════════════════════
   RESPONSIVE
════════════════════════════ */
@media (max-width: 640px) {
  :root {
    --section-pad: 48px 24px;
  }

  /* TICKER */
  .ticker-track span {
    font-size: 10px !important;
    padding: 0 8px !important;
  }
  
  /* ── HERO ── */
  .hero {
    aspect-ratio: 1 / 1;
    justify-content: center;
    gap: 16px;
    overflow: hidden;
    padding: 24px;
    align-items: center;
  }

  .hero-logo-wrap {
    justify-content: center;
    align-items: center;
    flex: 0;
  }

  .hero-logo-img {
    width: 300px;
  }

  .hero-top {
    position: absolute;
    top: 40px;
    left: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 48px);
  }

  .hero-bottom {
    position: absolute;
    bottom: 40px;
    left: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .hero-meta {
    font-size: 14px;
    gap: 16px;
    margin: 0;
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
    gap: 12px;
  }

  /* SPEAKER */
  .speaker {
    position: absolute;
    left: 146px;
    top: 20px;
    width: 400px;
    height: 515px;
    min-height: unset;
    margin-top: 0;
    transform: none;
    z-index: 3;
  }

  .speaker-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
  }
  
  .speaker-text {
    position: absolute;
    top: 16px;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .speaker-text-desktop { display: none; }
  .speaker-text-mobile  { display: block; }

  /* ── DATES ── */
  .dates {
    position: relative;
    padding: 32px 0px;
    overflow: hidden;
    margin-top: -60px; /* adjust as needed */

  }

  .dates-inner {
    max-width: 400px;
    z-index: 2;
    position: relative;
  }

  .dates-list {
    gap: 24px; /* tighter */
  }


  /* ── WHAT IS ── */
  .what-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .what-photo { order: -1; }

  .what-title-img {
    width: 100%;
  }

  .what-body {
    font-size: 20px;
  }

  .what-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .what-photo {
    order: 2;
  }

  .what-left {
    order: 1;
  }

  /* ── SHIRT ── */
  .shirt {
    padding-top: 80px;
    padding-bottom: 60px;
  }

  .shirt-img {
    flex-direction: column;
    margin-top: -20px;


  }

  .shirt-img img {
    width: 100%;
  }

  .location-desktop { display: none; }
  .location-mobile { display: block; width: 100%; }
  .location {
    padding-top: 0;
  }


  /* ── REGISTER HERO ── */
  .reg-hero {
    flex-wrap: nowrap;
    align-items: center;
    padding: 64px 24px;
  }

  .reg-hero-left {
    max-width: 60%;
  }

  .reg-deadline {
    margin-top: 2px; /* gap between "now" and deadline */
    margin-bottom: 2px; /* gap between deadline and zelle text */
  }

  .reg-price {
    font-size: clamp(10px, 20vw, 150px);
    flex-shrink: 1;
    margin-top: -90px;
  }

  .reg-zelle {
    margin-bottom: -34px; /* adjust as needed */
  }

  /* ── FORM ── */
  .form-section {
    border-radius: 50px 50px 50px 50px;
  }

  .form-heading {
    font-size: 40px;
  }

  .size-grid {
    gap: 6px;
  }
}

@media (max-width: 413px) {
  .speaker-text-mobile  { display: none; }
  .speaker-text-small   { display: block; }
}