/* ═══════════════════════════════════════════════
   WallNights – Main Stylesheet
   Dark Gold Theme · RTL Hebrew
═══════════════════════════════════════════════ */

/* ── Variables ──────────────────────────────── */
:root {
  --bg:          #0a0a0a;
  --bg2:         #111111;
  --bg3:         #1a1a1a;
  --bg4:         #242424;
  --gold:        #c9a84c;
  --gold-light:  #e8c96e;
  --gold-dark:   #9b7a2e;
  --white:       #f4f4f4;
  --muted:       #888;
  --border:      #2a2a2a;
  --red:         #e55;
  --green:       #4caf50;

  --font:        'Rubik', 'Segoe UI', Arial, sans-serif;
  --radius:      12px;
  --radius-sm:   6px;
  --shadow:      0 4px 24px rgba(0,0,0,.5);
  --shadow-gold: 0 4px 20px rgba(201,168,76,.2);
  --transition:  .2s ease;
}

/* ── Reset ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  direction: rtl;
  text-align: right;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a  { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
ul { list-style: none; }

/* ── Typography ─────────────────────────────── */
h1, h2, h3, h4 {
  line-height: 1.3;
  font-weight: 700;
  color: var(--white);
}
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
p  { color: #ccc; margin-bottom: 1rem; }

.gold-text { color: var(--gold); }
.muted     { color: var(--muted); }

/* ── Layout ─────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section { padding: 60px 0; }
.section-sm { padding: 40px 0; }

/* ── Navbar ─────────────────────────────────── */
.navbar {
  background: rgba(10,10,10,.97);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 68px;
  max-width: 1200px;
  margin: 0 auto;
}
.navbar-logo img { height: 44px; }
.navbar-logo span {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .5px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  color: #ccc;
  font-size: .95rem;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: rgba(201,168,76,.1);
}
.nav-cart {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: #000 !important;
  font-weight: 700;
  padding: 7px 16px !important;
  border-radius: 50px !important;
}
.nav-cart:hover { background: var(--gold-light) !important; color: #000 !important; }
.cart-badge {
  background: #000;
  color: var(--gold);
  font-size: .7rem;
  font-weight: 700;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ── Hero ────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0e00 50%, #0a0a0a 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,.15) 0%, transparent 70%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 60px 20px;
}
.hero-content h1 { color: var(--white); margin-bottom: .5rem; }
.hero-content h1 span { color: var(--gold); }
.hero-subtitle { font-size: 1.15rem; color: #bbb; max-width: 600px; margin: 0 auto 2rem; }
.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Buttons ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  font-family: var(--font);
}
.btn-gold {
  background: var(--gold);
  color: #000;
}
.btn-gold:hover {
  background: var(--gold-light);
  color: #000;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: #000;
}
.btn-whatsapp {
  background: #25d366;
  color: #fff;
}
.btn-whatsapp:hover { background: #1ebe5d; color: #fff; }
.btn-sm { padding: 8px 18px; font-size: .85rem; }
.btn-lg { padding: 15px 36px; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; }

/* ── Cards ───────────────────────────────────── */
.card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: var(--bg4);
}
.card-img-placeholder {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, var(--bg4), var(--bg3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.card-body { padding: 20px; }
.card-category {
  font-size: .75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.card-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; color: var(--white); }
.card-desc { font-size: .88rem; color: var(--muted); margin-bottom: 12px; line-height: 1.5; }
.card-price { color: var(--gold); font-weight: 700; font-size: 1rem; }
.card-footer {
  padding: 14px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ── Grid ────────────────────────────────────── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ── Section Heading ─────────────────────────── */
.section-heading {
  text-align: center;
  margin-bottom: 48px;
}
.section-heading h2 { margin-bottom: 10px; }
.section-heading p { color: var(--muted); max-width: 560px; margin: 0 auto; }
.section-divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 12px auto;
  border-radius: 2px;
}

/* ── Attraction Page ─────────────────────────── */
.attraction-hero {
  background: var(--bg2);
  padding: 48px 0 40px;
  border-bottom: 1px solid var(--border);
}
.attraction-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}
.attraction-gallery { margin-bottom: 32px; }
.gallery-main {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 10px;
  background: var(--bg4);
}
.gallery-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}
.gallery-thumbs img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition);
  flex-shrink: 0;
}
.gallery-thumbs img.active,
.gallery-thumbs img:hover { border-color: var(--gold); }

/* ── Booking Sidebar ─────────────────────────── */
.booking-sidebar {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: sticky;
  top: 88px;
}
.booking-sidebar h3 {
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  color: var(--gold);
}
.price-display {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
}
.price-note { font-size: .8rem; color: var(--muted); margin-bottom: 20px; }
.sidebar-divider { height: 1px; background: var(--border); margin: 20px 0; }

/* ── Packages ────────────────────────────────── */
.packages { display: flex; flex-direction: column; gap: 14px; margin: 24px 0; }
.package-card {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
}
.package-card:hover,
.package-card.selected {
  border-color: var(--gold);
  background: rgba(201,168,76,.05);
}
.package-badge {
  position: absolute;
  top: -10px;
  right: 16px;
  background: var(--gold);
  color: #000;
  font-size: .7rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 50px;
}
.package-name { font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.package-desc { font-size: .83rem; color: var(--muted); margin-bottom: 8px; }
.package-price { font-size: 1.3rem; font-weight: 700; color: var(--gold); }

/* ── FAQ ─────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  padding: 18px 20px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  flex-shrink: 0;
  transition: all var(--transition);
}
.faq-item.open .faq-icon {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  padding: 0 20px 18px;
  color: #bbb;
  font-size: .95rem;
}
.faq-item.open .faq-answer { display: block; }

/* ── Breadcrumb ──────────────────────────────── */
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--muted); }

/* ── Features / Icons ────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
}
.feature-item {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}
.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}
.feature-title { font-weight: 700; margin-bottom: 8px; }
.feature-desc { font-size: .9rem; color: var(--muted); }

/* ── Stats ───────────────────────────────────── */
.stats-bar {
  background: linear-gradient(135deg, #1a0e00, #0d0d0d);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-number { font-size: 2.5rem; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-label  { font-size: .85rem; color: var(--muted); margin-top: 4px; }

/* ── Contact / CTA Strip ─────────────────────── */
.cta-strip {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  padding: 48px 0;
  text-align: center;
}
.cta-strip h2 { color: #000; margin-bottom: 10px; }
.cta-strip p  { color: rgba(0,0,0,.7); margin-bottom: 24px; }
.cta-strip .btn-outline {
  border-color: #000;
  color: #000;
}
.cta-strip .btn-outline:hover { background: #000; color: var(--gold); }

/* ── Contact Form ────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: .88rem; color: #bbb; margin-bottom: 6px; }
.form-control {
  width: 100%;
  background: var(--bg4);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  padding: 11px 14px;
  font-size: .95rem;
  font-family: var(--font);
  transition: border-color var(--transition);
  direction: rtl;
}
.form-control:focus {
  outline: none;
  border-color: var(--gold);
}
.form-control::placeholder { color: var(--muted); }
textarea.form-control { min-height: 110px; resize: vertical; }
select.form-control { cursor: pointer; }

/* ── Cart ────────────────────────────────────── */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th {
  padding: 12px 16px;
  text-align: right;
  font-size: .85rem;
  color: var(--muted);
  border-bottom: 2px solid var(--border);
}
.cart-table td {
  padding: 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.cart-item-img {
  width: 72px;
  height: 54px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}
.qty-input {
  width: 64px;
  text-align: center;
  background: var(--bg4);
  border: 1px solid var(--border);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 6px;
  font-size: .9rem;
}
.cart-summary {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: .95rem;
}
.summary-row:last-child { border-bottom: none; }
.summary-total { font-size: 1.2rem; font-weight: 700; color: var(--gold); }

/* ── Tags ────────────────────────────────────── */
.tag {
  display: inline-block;
  background: rgba(201,168,76,.1);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 50px;
  font-size: .78rem;
  padding: 3px 12px;
  margin: 3px;
}

/* ── Badges ──────────────────────────────────── */
.badge {
  display: inline-block;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 10px;
}
.badge-gold  { background: var(--gold); color: #000; }
.badge-green { background: var(--green); color: #fff; }
.badge-red   { background: var(--red); color: #fff; }

/* ── Footer ──────────────────────────────────── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand h3 { color: var(--gold); font-size: 1.3rem; margin-bottom: 12px; }
.footer-brand p  { font-size: .88rem; color: var(--muted); }
.footer-col h4   { color: var(--white); font-size: .95rem; margin-bottom: 14px; font-weight: 700; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: var(--muted); font-size: .88rem; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .83rem;
  color: var(--muted);
}
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: .95rem;
  transition: all var(--transition);
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }

/* ── Category Filter ─────────────────────────── */
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.filter-tab {
  padding: 7px 18px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: var(--bg3);
  color: #ccc;
  font-size: .88rem;
  cursor: pointer;
  transition: all var(--transition);
}
.filter-tab:hover,
.filter-tab.active {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
  font-weight: 700;
}

/* ── Floating WhatsApp ───────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  z-index: 999;
  transition: all var(--transition);
  font-size: 1.6rem;
  color: #fff;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff;
}

/* ── Alert ───────────────────────────────────── */
.alert {
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-bottom: 16px;
  font-size: .9rem;
}
.alert-success { background: rgba(76,175,80,.15); border: 1px solid rgba(76,175,80,.4); color: #81c784; }
.alert-error   { background: rgba(229,85,85,.15);  border: 1px solid rgba(229,85,85,.4);  color: #ef9a9a; }
.alert-info    { background: rgba(201,168,76,.1);  border: 1px solid rgba(201,168,76,.3); color: var(--gold); }

/* ── Responsive ──────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .attraction-layout { grid-template-columns: 1fr; }
  .booking-sidebar { position: static; }
  .features-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px;
    right: 0;
    left: 0;
    background: var(--bg2);
    padding: 20px;
    border-bottom: 1px solid var(--border);
    z-index: 999;
    gap: 4px;
  }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .filter-tabs { gap: 6px; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Utilities ───────────────────────────────── */
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.w-100 { width: 100%; }
.hidden { display: none !important; }
