/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #C5A55A;
  --gold-light: #D4B86A;
  --gold-bg: #F5EDD8;
  --dark: #1A1A1A;
  --text: #333333;
  --muted: #666666;
  --bg: #FAFAF7;
  --white: #FFFFFF;
  --border: #E8E0D0;
  --font-he: 'Heebo', sans-serif;
  --font-en: 'Playfair Display', serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-he);
  background: var(--bg);
  color: var(--text);
  direction: rtl;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== TOP BAR ===== */
.topbar {
  background: var(--dark);
  color: #ccc;
  font-size: 0.82rem;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 101;
  height: 36px;
  display: flex;
  align-items: center;
}

.topbar-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: flex-end;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: #ccc;
  white-space: nowrap;
  transition: color 0.2s;
}

.topbar-item:hover { color: var(--white); }

.topbar-cta {
  color: var(--gold);
  font-weight: 600;
}

.topbar-cta:hover { color: var(--gold-light); }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 36px;
  right: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 70px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.1;
}

.logo-en {
  font-family: var(--font-en);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--dark);
}

.logo-he {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav a {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text);
  transition: color 0.2s;
  position: relative;
}

.nav a:hover,
.nav a.active {
  color: var(--dark);
}

.nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--white);
  padding: 0.55rem 1.2rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.2s;
}

.btn-whatsapp:hover { background: var(--gold-light); }

/* ===== NAV TOGGLE (mobile) ===== */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--dark);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  margin-top: 106px;
  position: relative;
  height: calc(100vh - 70px);
  min-height: 500px;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
}

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

.hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 26, 0.78);
  backdrop-filter: blur(2px);
  padding: 1.8rem 3rem;
  text-align: center;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.hero-content h1 {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 0;
}

.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: #ddd;
  margin-bottom: 0;
}

.hero-desc {
  font-size: 0.95rem;
  color: #bbb;
  letter-spacing: 0.02em;
  margin-bottom: 0;
}

.hero-text-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  text-align: right;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--white);
  padding: 0.75rem 1.8rem;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.2s;
}

.btn-gold:hover { background: var(--gold-light); }

/* ===== FEATURES ===== */
.features {
  padding: 5rem 2rem;
  background: var(--white);
}

.features-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.feature {
  text-align: center;
  padding: 1.5rem 1rem;
}

.feature-icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 1rem;
  color: var(--dark);
}

.feature h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.feature p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ===== GALLERY ===== */
.gallery {
  padding: 5rem 2rem;
  background: var(--bg);
  text-align: center;
}

.gallery h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.gallery h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin: 0.6rem auto 2.5rem;
}

.gallery-grid {
  max-width: 1100px;
  margin: 0 auto 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #ddd;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease;
  display: block;
}

.gallery-item:hover img { transform: scale(1.04); }

.gallery-team {
  max-width: 1100px;
  margin: 0 auto 2rem;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.gallery-team img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.team-label {
  position: absolute;
  bottom: 14px;
  right: 18px;
  background: rgba(26,26,26,0.72);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 4px 14px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}

.btn-outline {
  display: inline-block;
  border: 1.5px solid var(--dark);
  color: var(--dark);
  padding: 0.65rem 2rem;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}

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

/* ===== ABOUT ===== */
.about {
  padding: 4rem 2rem;
  background: var(--white);
  text-align: center;
}

.about-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.about-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin: 0.5rem auto 2.5rem;
}

.team-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  justify-items: center;
  align-items: start;
}

.team-card {
  background: var(--bg);
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  max-width: 280px;
  text-align: right;
  display: flex;
  flex-direction: column;
}

.team-photo {
  width: 100%;
  height: 320px;
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease;
}

.team-card:hover .team-photo img { transform: scale(1.04); }

.team-info {
  padding: 1.2rem 1.2rem 1rem;
}

.team-info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.2rem;
}

.team-role {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 500;
  display: block;
  margin-bottom: 0.7rem;
}

.team-info p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

.signature {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem !important;
  color: var(--gold) !important;
  margin-top: 0.6rem;
}

.team-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: none;
  margin-top: 0.5rem;
  transition: color 0.2s;
}

.team-instagram:hover { color: var(--gold); }

/* ===== REVIEWS ===== */
.reviews {
  padding: 4rem 2rem;
  background: var(--bg);
  text-align: center;
}

.reviews.reviews-white {
  background: var(--white);
}

.reviews-grid {
  max-width: 1100px;
  margin: 0 auto 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: var(--white);
  border-radius: 10px;
  padding: 1.8rem 1.5rem;
  text-align: right;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.reviews.reviews-white .review-card {
  background: var(--bg);
  box-shadow: none;
}

.review-card.review-hidden {
  display: none;
}

.reviews-load-more {
  display: block;
  margin: 0 auto 1rem;
  cursor: pointer;
  background: none;
  font-family: inherit;
}

.reviews-placeholder {
  max-width: 600px;
  margin: 0 auto 2.5rem;
  padding: 2.5rem 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.review-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 0.8rem;
  justify-content: flex-end;
}

.review-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
}

.review-text {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.review-author {
  font-weight: 700;
  color: var(--dark);
  font-size: 0.9rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg);
  padding: 4rem 2rem 0;
  border-top: 1px solid var(--border);
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
  padding-bottom: 3rem;
}

.footer-icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 0.8rem;
  color: var(--gold);
}

.footer-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.4rem;
}

.footer-item p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: auto;
  padding-bottom: 1rem;
  line-height: 1.5;
  flex-grow: 1;
}

.btn-outline-sm {
  display: inline-block;
  border: 1.5px solid var(--dark);
  color: var(--dark);
  padding: 0.5rem 1.3rem;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}

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

.btn-gold-sm {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gold);
  color: var(--white);
  padding: 0.5rem 1.3rem;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: background 0.2s;
}

.btn-gold-sm:hover { background: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.2rem 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ===== PLACEHOLDER (כשאין תמונות) ===== */
.ba-img img[src=""],
.ba-img img:not([src]),
img[src=""] { background: #e0d8cc; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .header { padding: 0 1.2rem; }

  .nav-toggle { display: flex; }

  .nav {
    display: none;
    position: fixed;
    top: 106px;
    right: 0;
    left: 0;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    z-index: 99;
  }

  .nav.nav-open { display: flex; }

  .nav a {
    padding: 0.9rem 1.5rem;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }

  .nav a.active::after { display: none; }

  .topbar-inner {
    padding: 0 1rem;
    gap: 1rem;
    overflow-x: auto;
    justify-content: flex-start;
    scrollbar-width: none;
  }

  .topbar-inner::-webkit-scrollbar { display: none; }

  .topbar-item { font-size: 0.78rem; white-space: nowrap; }

  .hero { height: calc(100vh - 106px); }

  .hero-content {
    left: 50%;
    top: auto;
    bottom: 1.5rem;
    transform: translateX(-50%);
    width: 92%;
    padding: 1.5rem;
    max-width: none;
    text-align: center;
  }

  .hero-content h1 { font-size: 2.2rem; }

  .about {
    grid-template-columns: 1fr;
  }

  .about-text { padding: 3rem 1.5rem; }
  .about-photo { height: 350px; }

  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }

  .hero-content h1 { font-size: 1.9rem; }
}
