/* =========================
   Stylesheet - styles.css
   ========================= */

/* Reset-ish */
* { box-sizing: border-box; margin: 0; padding: 0; }

/* --- Fonts & base --- */
body {
  font-family: 'Amiri', Georgia, serif;
  background: #f9f9f9;
  color: #060626;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

/* Content wrapper margins aligned with navbar */
.content-wrapper {
  width: 80%;
  max-width: 1100px;
  margin: 36px auto;
}

/* --- NAVBAR --- */
.navbar {
  background-color: #060626;
  color: #fff;
  padding: 14px 0;
  box-shadow: 0 2px 4px rgba(6,6,38,0.12);
  font-family: 'Myriad Hebrew', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.nav-container {
  width: 80%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  color: #fff;
  font-weight: 600;
  font-size: 1.15rem;
  text-decoration: none;
  letter-spacing: 0.2px;
}

.nav-links { list-style: none; display: flex; gap: 20px; align-items: center; }
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.98rem;
  transition: color .18s ease;
}
.nav-links a:hover { color: #d1d1ff; text-decoration: underline; }

/* --- HERO IMAGE --- */
.hero-image {
  width: 100%;
  max-width: 1022px;
  display: block;
  margin: 10px auto 28px auto;
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(6,6,38,0.06);
}

/* --- MISSION BOX --- */
.mission-box {
  background: #fff;
  padding: 18px 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  margin-bottom: 26px;
  text-align: center;
}

.mission-box p {
  font-size: 1.22rem;
  margin: 0;
  color: #060626;
  line-height: 1.38; /* slightly tighter spacing */
}

/* --- CONTACT FORM --- */
.contact-form {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  max-width: 760px;
  margin: 0 auto 48px auto;
  font-family: 'Amiri', serif;
}

/* layout helper: rows with two columns on wide screens */
.form-row {
  display: flex;
  gap: 14px;
  margin-bottom: 8px;
}

/* make .form-row stack on small screens */
@media (max-width: 740px) {
  .form-row { flex-direction: column; }
}

/* group wrapper for label + input */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1 1 0;
}

/* LABELS - larger, closer to field */
.form-group label {
  font-size: 1.02rem;
  font-weight: 700;
  color: #222;
  margin: 0;
  line-height: 1;
}

/* INPUTS & TEXTAREA */
.form-group input,
.form-group textarea {
  font-size: 1.05rem;
  padding: 10px 12px;
  border: 1px solid #d0d0d6;
  border-radius: 8px;
  color: #111;
  background: #fff;
  width: 100%;
  min-height: 44px;
  line-height: 1.3;
}

/* textarea spacing fix (extra gap above Message) */
.form-group textarea {
  min-height: 130px;
  padding-top: 12px;
  padding-bottom: 12px;
  margin-top: 10px; /* increased slightly to fix label spacing */
}

/* reduce vertical space between fields overall */
.contact-form .form-group + .form-group { margin-top: 4px; }

/* Button / actions */
.form-actions {
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
}

.form-actions button {
  background: #060626;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-family: 'Myriad Hebrew', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: transform .12s ease, background .18s ease;
}
.form-actions button:hover { transform: translateY(-2px); background: #1a1a50; }

/* --- Footer --- */
.site-footer {
  text-align: center;
  color: #666;
  padding: 26px 0 60px 0;
  font-size: 0.95rem;
}

/* --- Responsive tweaks --- */
@media (max-width: 900px) {
  .nav-container, .content-wrapper { width: 90%; }
}


/* =========================
   EXAMPLES SECTION
   ========================= */

.examples-section {
  max-width: 900px; /* Originally was 760px per gpt */  
  margin: 60px auto 100px auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  overflow: hidden;
}

/* Header bar across the top */
.examples-header {
  background-color: #060626;
  color: #fff;
  font-family: 'Myriad Hebrew', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 16px 20px;
  margin: 0;
}

/* Each example item */
.example {
  padding: 20px;
  border-bottom: 1px solid #eee;
  text-align: left;
}

.example:last-child {
  border-bottom: none;
}

/* Text in examples */
.example p {
  font-size: 1.08rem;
  margin-bottom: 14px;
  line-height: 1.45;
}

/* Example images */
.example img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Add spacing between multiple stacked example sections (if you reuse the block) */
.examples-section + .examples-section {
  margin-top: 80px;
}

/* Responsive adjustments */
@media (max-width: 740px) {
  .examples-section {
    width: 90%;
  }
  .examples-header {
    font-size: 1.15rem;
    padding: 14px;
  }
  .example {
    padding: 16px;
  }
}
