@font-face {
  font-family: 'Kingthings';
  src: url('fonts/KingthingsTypewriter.ttf') format('truetype');
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #17391e;
}

/* ================= HEADER ================= */

.site-header {
  text-align: center;
  padding: 16px 24px 0;
}

.main-logo {
  width: 200px;
  max-width: 100%;
}

.nav-divider {
  height: 1px;
  background: #ccc;
  margin: 6px 0 16px;
}

.main-nav {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto 16px;
}

.main-nav a {
  text-decoration: none;
  font-size: 18px;
  color: #17391e;
  font-weight: bold;
}

/* ================= HERO ================= */

.hero {
  background: #f6c453;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 40px;
}

.hero-inner {
  max-width: 1200px;
  display: flex;
  align-items: center;
  gap: 56px;
  padding: 40px;
}

.hero h1 {
  font-family: 'Kingthings', serif;
  font-size: 42px;
  line-height: 1.3;
}

.hero-circle-logo {
  width: 240px;
}

/* ================= DIAGONALS & SEPARATORS ================= */

.diagonal {
  height: 100px;
  width: 100%;
}

.spacer-white {
  height: 80px;
  background: #ffffff;
}

/* מעברים */
.diagonal.yellow-to-white {
  background: linear-gradient(to bottom right, #f6c453 49.8%, #ffffff 50.2%);
}

.diagonal.white-to-green {
  background: linear-gradient(to bottom right, #ffffff 49.8%, #183a1d 50.2%);
}

.diagonal.green-to-white {
  background: linear-gradient(to bottom right, #183a1d 49.8%, #ffffff 50.2%);
}

.diagonal.white-to-pink {
  background: linear-gradient(to bottom right, #ffffff 49.8%, #f4b6c2 50.2%);
}

/* ================= MADE OF (GREEN SECTION) ================= */

.made-of {
  background: #183a1d;
  padding: 60px 24px 120px;
}

.made-of h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 64px;
  color: #ffffff;
}

.made-of h2 .dot {
  color: #f6c453;
}

.cards {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.show-card {
  background: #fefbe9;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #17391e;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 20px;
  border-radius: 4px;
}

.show-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.show-card img {
  max-width: 240px;
  margin-bottom: 24px;
}

.show-card span {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}

/* ================= FIND OUT MORE (PINK SECTION) ================= */

.find-out {
  padding: 60px 24px 120px;
  background: #f4b6c2;
}

.find-out h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 64px;
}

.find-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px; /* רווח אנכי 40, רווח אופקי 32 */
}

/* קופסה שמכילה תמונה + טקסט */
.find-item {
  display: flex;
  flex-direction: column;
}

.find-item img,
.find-item video {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid rgba(0,0,0,0.1);
  display: block;
}

/* עיצוב הטקסט מתחת לתמונה */
.caption {
  margin-top: 12px;
  font-size: 16px;
  color: #17391e;
  font-weight: bold;
  text-align: left;
}

/* ================= FOOTER ================= */

.site-footer {
  background: #0f1f14;
  color: white;
  padding: 64px 24px 24px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 64px;
  align-items: flex-start;
}

.footer-logo {
  width: 150px;
  display: block;
}

.footer-links {
  display: flex;
  gap: 80px;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links strong {
  font-size: 16px;
  margin-bottom: 8px;
  color: #f6c453;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 60px;
  text-align: center;
  font-size: 13px;
  opacity: 0.5;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
}

/* ================= MOBILE RESPONSIVE ================= */

@media (max-width: 768px) {
  .main-nav {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .hero-inner {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-circle-logo {
    width: 180px;
  }

  .cards,
  .find-grid {
    grid-template-columns: 1fr; /* טור אחד בנייד */
    gap: 32px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }

  .footer-links {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }
}