body {
  margin: 0;
  font-family: 'Assistant', sans-serif;
  background-color: #fdfdfb;
  color: #111;
}
html{
    scroll-behavior: smooth;
}
.hero {
  height: 100vh;
  background-image: url(''); /* תמונה לדוגמה, החלף לאמיתית */
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: white;
  max-width: 700px;
  padding: 20px;
}

.hero h1 {
  font-family: 'Noto Serif Hebrew', serif;
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero p {
  font-family: 'Assistant', sans-serif;
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 30px;
}

.btn-primary {
  padding: 12px 28px;
  background-color: #d4af37;
  color: black;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: background 0.3s;
}

.btn-primary:hover {
  background-color: #b89425;
}

.villas-preview {
  padding: 60px 20px;
  background-color: #0d0d0d;
  color: #eaeaea;
  text-align: center;
  direction: rtl;
}

.villas-preview h2 {
  font-family: 'Noto Serif Hebrew', serif;
  font-size: 42px;
  margin-bottom: 40px;
  color: #d4af37; /* זהב עדין */
}

.villas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.villa-card {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  transition: transform 0.3s, box-shadow 0.3s;
}

.villa-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.7);
}

.villa-card h3 {
  font-family: 'Noto Serif Hebrew', serif;
  font-size: 26px;
  margin-bottom: 12px;
  color: #ffffff;
}

.villa-card p {
  font-family: 'Assistant', sans-serif;
  font-size: 16px;
  color: #cccccc;
  margin-bottom: 20px;
  line-height: 1.6;
}

.villa-card .button {
  display: inline-block;
  background-color: #d4af37;
  color: #0d0d0d;
  padding: 12px 28px;
  text-decoration: none;
  border-radius: 25px;
  font-family: 'Assistant', sans-serif;
  font-weight: 600;
  transition: background 0.3s;
}

.villa-card .button:hover {
  background-color: #b89425;
  color: #fff;
}
.why-us {
  background-color: #121212;
  color: #f5f5f5;
  padding: 80px 20px;
  text-align: center;
  direction: rtl;
}

.why-us h2 {
  font-family: 'Noto Serif Hebrew', serif;
  font-size: 40px;
  color: #d4af37;
  margin-bottom: 50px;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit {
  background-color: #1e1e1e;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 30px 20px;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.benefit:hover {
  transform: translateY(-6px);
}

.benefit h3 {
  font-family: 'Noto Serif Hebrew', serif;
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 12px;
}

.benefit p {
  font-family: 'Assistant', sans-serif;
  font-size: 16px;
  color: #cccccc;
  line-height: 1.6;
}
.testimonials {
  background-color: #0f0f0f;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  direction: rtl;
}

.testimonials h2 {
  font-family: 'Noto Serif Hebrew', serif;
  font-size: 32px;
  color: #d4af37;
  margin-bottom: 40px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.review-card {
  background-color: #1b1b1b;
  border-radius: 10px;
  padding: 25px 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  font-family: 'Noto Sans Hebrew', sans-serif;
  font-size: 16px;
  color: #eaeaea;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 160px;
}

.review-card p {
  margin-bottom: 10px;
  font-style: italic;
  line-height: 1.6;
}

.review-card span {
  font-size: 14px;
  color: #b3b3b3;
}
.gallery {
  background-color: #0d0d0d;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  direction: rtl;
}

.gallery h2 {
  font-family: 'Noto Serif Hebrew', serif;
  font-size: 32px;
  color: #d4af37;
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}



.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  display: block;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}
    body {
      background: #111;
      font-family: 'Cormorant Garamond', serif;
      margin: 0;
      padding: 0;
    }

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 10px;
  margin: 0 auto;
  max-width: 1200px;
  padding: 20px;
}

.gallery a {
  display: block;
  overflow: hidden;
  border-radius: 10px;
}

.gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  margin: 0;
  padding: 0;
  border: 2px solid gold;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.03);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

    h2 {
  font-family: 'Noto Serif Hebrew', serif;
  font-size: 42px;
  margin-bottom: 40px;
  color: #d4af37; /* זהב עדין */
    }

    .contact-section {
  background-color: #0b0b0b;
  color: #fff;
  padding: 80px 20px;
  direction: rtl;
  font-family: 'Heebo', sans-serif;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-title h2 {
  color: #ffd700;
  font-size: 2.8em;
  text-align: center;
  margin-bottom: 10px;
}

.contact-title p {
  color: #ccc;
  text-align: center;
  margin-bottom: 50px;
  font-size: 1.2em;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 50px;
}

/* טופס */
.contact-form {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input {
  padding: 14px;
  background-color: #1c1c1c;
  border: 1px solid #333;
  border-radius: 6px;
  color: #fff;
  font-size: 1em;
}

.contact-form input::placeholder {
  color: #999;
}

.contact-form button {
  padding: 14px;
  background-color: #ffd700;
  color: #000;
  font-weight: bold;
  font-size: 1.1em;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form button:hover {
  background-color: #e0be00;
}

/* פרטים */
.contact-details {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-details ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.contact-details li {
  margin-bottom: 15px;
  font-size: 1.1em;
  display: flex;
  align-items: center;
}

.contact-details li i {
  margin-left: 10px;
  color: #ffd700;
}

.contact-details a {
  color: #ffd700;
  text-decoration: none;
}

.social-links a {
  font-size: 1.6em;
  margin-left: 20px;
  color: #ffd700;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #ffffff;
}
.site-footer {
  background-color: #0a0a0a;
  color: #ccc;
  padding: 60px 20px 20px;
  font-family: 'Heebo', sans-serif;
  direction: rtl;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 1px solid #333;
  padding-bottom: 30px;
}

.footer-logo h2 {
  color: #ffd700;
  font-size: 1.8em;
  margin-bottom: 10px;
}

.footer-logo p {
  color: #aaa;
  max-width: 280px;
  line-height: 1.6;
}

.footer-nav h4,
.footer-social h4 {
  color: #ffd700;
  margin-bottom: 10px;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
}

.footer-nav li {
  margin-bottom: 8px;
}

.footer-nav a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #ffd700;
}

.footer-social .social-links {
  display: flex;
  gap: 15px;
}

.footer-social a {
  font-size: 1.5em;
  color: #ffd700;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-social a:hover {
  transform: scale(1.2);
  color: #fff;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9em;
  color: #777;
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #25D366;
  color: white;
  font-size: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #1ebe5b;
  transform: scale(1.1);
  color: #fff;
}
.whatsapp-float {
  background-color: #ffd700;
  color: #0a0a0a;
}

.whatsapp-float:hover {
  background-color: #fff;
  color: #000;
}
/* טאבלטים ומטה */
@media (max-width: 768px) {

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 16px;
  }

  .btn-primary {
    font-size: 14px;
    padding: 10px 22px;
  }

  .villa-card h3 {
    font-size: 22px;
  }

  .villa-card p,
  .benefit p,
  .review-card,
  .contact-form input,
  .contact-form button {
    font-size: 14px;
  }

  .contact-content {
    flex-direction: column;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo p {
    max-width: 100%;
  }

  .footer-nav,
  .footer-social {
    width: 100%;
  }

}

/* מובייל קטן */
@media (max-width: 480px) {

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 14px;
  }

  .btn-primary {
    font-size: 13px;
    padding: 8px 18px;
  }

  .villas-grid,
  .benefits,

  .review-grid {
    grid-template-columns: 1fr;
  }

  .villa-card,
  .benefit,
  .review-card {
    padding: 20px 16px;
  }

  .gallery img {
    height: 150px;
  }

  .contact-title h2 {
    font-size: 2em;
  }

  .contact-title p {
    font-size: 1em;
  }

  .contact-form input,
  .contact-form button {
    font-size: 14px;
    padding: 12px;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
    line-height: 50px;
  }

  h2 {
    font-size: 28px;
  }

}
@media (max-width: 768px) {
  .footer-social,
  footer {
    padding: 20px;
    font-size: 14px;
    text-align: center;
  }
.footer-social,
  footer .footer-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
.footer-social,
  footer .footer-column {
    padding: 0;
  }
.footer-social,
  footer h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }
.footer-social,
  footer p,
  footer a {
    font-size: 14px;
  }
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr) !important; /* תמיד 2 טורים */
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.gallery-section h2 {
  text-align: center;
  margin: 0 auto 40px; /* שמרנו על מרווח תחתון של 40px כמו בקוד שלך */
  max-width: 1100px;   /* לרוחב אחיד עם הגלריה */
  font-family: 'Noto Serif Hebrew', serif;
  font-size: 32px;
  color: #d4af37;
  direction: rtl;
}
