/* ========= base ========= */
:root {
  --text-dark: #111;
  --text: #333;
  --muted: #666;
  --bg: #ffffff;
  --bg-dark: #09283b;
  --bg-soft: #faf7f1;
  --bg-soft-offset: #f0f0f0;
  --card: #ffffff;
  --accent: #ff8c00;
  --shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
  /* The “old” gradient vibe you liked */
  --quote-gradient: linear-gradient(30deg, rgb(59, 192, 209) 0%, #f7b119 100%);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg-dark);
  /* background: var(--bg-soft); */
  color: var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  scroll-behavior: smooth;
}

body {
  font-family: "Heebo", sans-serif;
}


img {
  max-width: 100%;
  height: auto;
}

a {
  color: #0366d6;
  text-decoration: none;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========= header ========= */
.site-header {
  background: #061823;
  padding: 0;
  margin: -60px 0 -70px;
  text-align: center;
}

.logo {
  width: 420px;
}

/* ========= hero ========= */
.hero {
  background: var(--bg-dark);
  color: #fff;
  padding: 30px 0 80px;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin: 0 0 16px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.4rem;
  margin-bottom: 28px;
  color: #d8e5ec;
}

.btn-primary {
  display: inline-block;
  background: var(--accent);
  border: none;
  color: #fff;
  padding: 14px 28px;
  margin-top: 15px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 18px;
  transition: transform .15s ease, box-shadow .15s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}

/* ========= pitch ========= */
.pitch-section {
  background: var(--bg-dark);
  position: relative;
  margin-bottom: 10px;
  /* background: var(--bg-soft); */
}

.pitch-card {
  background: var(--bg-soft);
  box-shadow: var(--shadow);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  margin-top: 60px; /* pull a bit under the hero if you want; adjust/remove if not */
}

.pitch-card h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 24px;
  font-family: "Segoe UI Semibold", sans-serif;
}

.pitch-card p {
  font-size: 1.15rem;
  line-height: 1.85;
  color: #444;
  font-weight: 400;
}


.pitch-closing {
  margin-top: 26px;
  font-weight: 500;
}

.wave-wrapper {
  height: 50px;
  overflow: hidden;
  line-height: 0;
}

.wave path {
  fill: var(--bg-dark);
}

/* ========= quote ========= */
.quote-section {
  background: var(--quote-gradient);
  color: #fff;
  text-align: center;
  padding: 35px 20px 45px; /* extra bottom so the next card doesn't feel glued */
}

.quote-section h2 {
  font-size: 2.4rem;
  line-height: 1.6;
  margin: 0;
}

.quote-highlight {
  font-size: 2.8rem;
  display: block;
  /* margin-top: 7px; */
  font-weight: 700;
}

/* ========= contact ========= */
.contact-card {
  background: var(--bg-soft); /* cleaner background */
  padding: 60px 20px;
}

.contact-card .container {
  background: none; /* remove inner white box */
  box-shadow: none;
  padding: 0;
}

.contact-card h2 {
  text-align: center;
  text-decoration: underline;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.contact-form-area h2,
.booking-area h2 {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.contact-form-area h4 {
  text-align: center;
  font-weight: 500;
  font-size: 1rem;
  margin-top: 12px;
}

.contact-card h4 {
  text-align: center;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.contact-info {
  text-align: center;
  margin-bottom: 24px;
}

.contact-info a {
  margin: 0 10px;
  font-weight: 500;
}

#contact-form {
  display: grid;
  gap: 14px;
}

#contact-form input,
#contact-form textarea {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  background: #fdfdfd;
  border: 1px solid #ddd;
  border-radius: 10px;
}

#contact-form input:focus,
#contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(255, 140, 0, 0.2);
}


#form-response {
  margin-top: 12px;
  text-align: center;
  color: green;
  font-weight: 600;
}

/* ========= footer ========= */
.site-footer {
  background: var(--bg-dark);
  color: #9bb3bf;
  padding: 28px 0;
  text-align: center;
  font-size: 0.9rem;
}

/* ========= responsive ========= */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .quote-section h2 {
    font-size: 2rem;
  }

  .quote-highlight {
    font-size: 2.2rem;
  }
}

/* ========= socials ========= */
.social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 16px 0;
  flex-wrap: wrap;
}

.social-links a img {
  width: 32px;
  height: 32px;
  opacity: 0.85;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-links a:hover img {
  transform: scale(1.1);
  opacity: 1;
}


/* ========= mid-strip ========= */
.faq {
  background: var(--bg-dark);
  padding: 25px 0 50px;
}

.faq h2 {
  text-align: center;
  margin-bottom: 24px;
  color: var(--bg-soft);
}

.faq details {
  background: #fafafa;
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,.03);
  cursor: pointer;
}

.faq summary {
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
}

.faq p {
  font-size: 1rem;
  color: #444;
}


/* ========= how it works ========= */
.how-it-works {
  background: var(--bg-soft);
  padding: 20px 0 60px;
  text-align: center;
}

.how-it-works h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 36px;
}

.step h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.step p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}


.step {
  background: #fafafa;
  border-radius: 12px;
  padding: 24px 18px;
  box-shadow: 0 4px 14px rgba(0,0,0,.04);
}

.step .icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.visual-highlight {
  background: var(--bg-soft);
  padding: 40px 20px;
  text-align: center;
}

.visual-highlight .photo {
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  max-width: 50%;
  height: auto;
  margin-bottom: 16px;
}

.visual-highlight p {
  font-size: 1.3rem;
  color: #333;
  font-weight: 600;
}

/* MID PHOTO STRIP  */
.photo-break {
  position: relative;
  height: 420px;
  overflow: hidden;
}

.photo-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  filter: brightness(0.82);
}

.photo-break-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 16px;
  color: #fff;
}

.photo-break-overlay h3 {
  font-size: 1.9rem;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0,0,0,.35);
}

@media (max-width: 768px) {
  .photo-break {
    height: 260px;
  }
  .photo-break-overlay h3 {
    font-size: 1.4rem;
  }
}

/* GALLERY FOOTER */
.carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 40px auto;
  padding: 10px;
  max-width: 1200px;
}

.carousel-track {
  max-width: 70%;
  max-height: 80vh;
  border-radius: 12px;
  display: flex;
  padding: 10px 0;
  gap: 14px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

.carousel-track::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.carousel-track img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  padding: 1px;
  background: #cac83a;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.carousel-track img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.carousel-btn {
  background: #ff8c00;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: background 0.2s ease, transform 0.2s ease;
}

.carousel-btn:hover {
  background: #ffa733;
  transform: scale(1.08);
}

.carousel-btn svg {
  width: 24px;
  height: 24px;
}

.carousel-btn.left {
  left: -60px;
}

.carousel-btn.right {
  right: -60px;
}

@media (max-width: 768px) {
  .carousel-track img {
    width: 220px;
    height: 140px;
  }
}


/* modal */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.9);
  text-align: center;
  padding-top: 60px;
}

.modal-content {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 12px;
}

.modal .close {
  position: absolute;
  top: 32px;
  left: 32px;
  font-size: 32px;
  color: white;
  cursor: pointer;
}

/* arrows */
.modal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 50%;
  padding: 12px;
  width: 48px;
  height: 48px;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10001;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, background 0.2s ease;
}

.modal-arrow:hover {
  background: #ffa733;
  transform: translateY(-50%) scale(1.08);
}

.modal-arrow.left {
  left: 32px;
}

.modal-arrow.right {
  right: 32px;
}

.contact-booking-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  flex-direction: column; /* default mobile layout */
}

@media (min-width: 768px) {
  .contact-booking-wrapper {
    flex-direction: row-reverse; /* booking on left, contact on right */
  }
}


.contact-form-area, .booking-area {
  background: #fff;
  padding: 32px 24px;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  flex: 1 1 46%;
  min-width: 320px;
}

.booking-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.booking-buttons button,
.booking-panel button {
  background-color: var(--accent);
  color: white;
  border: none;
  padding: 0.7rem 1.2rem;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.booking-buttons button:hover,
.booking-panel button:hover {
  transform: scale(1.05);
  background-color: #ffa733;
}

.booking-panel {
  margin-top: 1rem;
  border: 1px solid #ccc;
  border-radius: 12px;
  overflow: hidden;
  background-color: white;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.btn-secondary {
  /* margin-top: 0.5rem; */
  margin-bottom: 20px;
  background-color: #6a4c93;
}

@media (max-width: 480px) {
  .pitch-card h2,
  .quote-section h2 {
    font-size: 1.6rem;
  }

  .quote-highlight {
    font-size: 1.9rem;
  }
}

.btn-orange {
  background: var(--accent);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  padding: 12px 20px;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-orange:hover {
  transform: translateY(-2px);
  background: #ffa733;
}

.tab-card {
  background: white;
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  overflow: hidden;
  max-width: 720px;
  margin: 0 auto;
}

.tab-header {
  display: flex;
  justify-content: center;
  background: #f0f0f0;
  border-bottom: 1px solid #ddd;
  position: relative;
  border-radius: 18px 18px 0 0;
  overflow: hidden;
}

.tab-btn {
  flex: 1;
  background: transparent;
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
  color: #333;
}

.tab-btn.active:nth-child(1) { /* צור קשר */
  background: #ff8c00;
  color: white;
}

.tab-btn.active:nth-child(2) { /* קביעת פגישה */
  background: #3bc0d1;
  color: white;
}

/* SUBTITLE AND DISCLAIMER */
#booking-tab .tab-title {
  color: #111; /* black */
  font-size: 1.5rem;
  margin-top: 0rem;
}

#booking-tab .disclaimer {
  color: #d43f3f;
  font-weight: 500;
  text-align: center;
  margin-bottom: 1rem;
}

.booking-how-it-works {
  background: #fdfdfb;
}

.booking-steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 16px;
}

.booking-how-it-works .step {
  background: #fff;
  border-radius: 14px;
  padding: 16px 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  text-align: center;
}

.booking-how-it-works .step .icon {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.booking-how-it-works .step h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #333;
}

.booking-how-it-works .step p {
  font-size: 0.9rem;
  line-height: 1.4;
  color: #555;
}


/* CENTER THE BUTTONS */
#booking-tab .booking-buttons {
  justify-content: center;
}


.tab-content-wrapper {
  padding: 28px 24px;
}

.tab-title {
  text-align: center;
  margin-bottom: 12px;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
}

.booking-panel button.btn-secondary {
  background-color: #3bc0d1; /* cyan tone from logo */
  color: #fff;
  padding: 8px 18px;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 20px;
  margin: 12px auto 12px;
  display: block;
  transition: background 0.2s ease, transform 0.2s ease;
}

.booking-panel button.btn-secondary:hover {
  background-color: #50d7e7;
  transform: scale(1.05);
}

.booking-panel iframe {
  width: 100%;
  min-height: 620px;
  height: auto;
  /* max-height: 90vh; */
  border: none;
  overflow: hidden;
}

#booking-tab .btn-orange {
  background-color: #3bc0d1;
}

#booking-tab .btn-orange:hover {
  background-color: #50d7e7;
}

.booking-how {
  padding: 20px 10px 0;
}

.booking-how .step {
  padding: 18px 12px;
  font-size: 0.95rem;
}

.booking-how .step h3 {
  font-size: 1.05rem;
}

.booking-how .step p {
  font-size: 0.95rem;
  color: #555;
}

.booking-how .step .icon {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.booking-how .steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  justify-items: center;
}

.booking-notes {
  background: #fffdfb;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 1px 5px rgba(0,0,0,0.03);
  max-width: 700px;
  text-align: right;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}

.booking-notes .disclaimer {
  color: #d43f3f;
  font-weight: 600;
  margin-bottom: 12px;
  text-align: center;
}

.booking-notes ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.booking-notes li {
  margin-bottom: 8px;
}

.booking-notes ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center; /* Center the lines like the disclaimer */
}

.split-button {
  display: flex;
  justify-content: center;
  align-items: stretch;
  overflow: hidden;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  width: max-content;
  margin: 1.5rem auto 0;
}

.split-button {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  width: 100%;
  max-width: 440px;
  margin: 2rem auto 0;
  direction: rtl;
}

.split-button button {
  flex: 1;
  padding: 0.9em 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: white;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s ease;
  border-radius: 0;
}

.split-button button:first-child {
  background-color: #ff7f0f;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
}

.split-button button:last-child {
  background-color: #00c4cc;
  border-top-left-radius: 999px;
  border-bottom-left-radius: 999px;
}

.split-button .split-btn-contact:hover {
  background-color: #e66e00;
}

.split-button .split-btn-booking:hover {
  background-color: #00acb4;
}
