/* ============================================
   קסם ישראל — עיצוב ראשי
   קובץ: css/style.css
   ============================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --sand: #C8A96E;
  --sand-light: #E8D5B0;
  --sand-pale: #F5EDD8;
  --earth: #7A5C3A;
  --earth-dark: #4A3420;
  --olive: #6B7C47;
  --olive-light: #A8B87A;
  --cream: #FAF6EE;
  --warm-white: #FDFAF4;
  --text-dark: #2C1F0E;
  --text-mid: #5A4230;
  --text-light: #8C7057;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Heebo', sans-serif;
  direction: rtl;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  max-width: 100vw;
}

/* ===== NAV ===== */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,246,238,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--sand-light);
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}

.logo {
  font-family: 'Noto Serif Hebrew', serif;
  font-size: 1.3rem; font-weight: 700;
  color: var(--earth-dark);
  display: flex; align-items: center; gap: 8px;
  text-decoration: none;
}

.logo-img {
  width: 40px; height: 40px; object-fit: contain;
}

.nav-links { display: flex; gap: 1.5rem; list-style: none; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text-mid); font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--earth); }
.nav-cta { background: var(--earth); color: var(--cream) !important; padding: 8px 20px; border-radius: 24px; font-weight: 600 !important; }

.nav-social { display: flex; gap: 10px; align-items: center; }
.nav-social a { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 8px; transition: opacity 0.2s; }
.nav-social a:hover { opacity: 0.75; }

/* ===== HERO ===== */
.hero {
  min-height: 92vh;
  background:
    linear-gradient(to bottom, rgba(20,10,2,0.72) 0%, rgba(20,10,2,0.55) 50%, rgba(20,10,2,0.75) 85%, var(--cream) 100%),
    url('../images/hero.jpg') center/cover no-repeat;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 2rem; position: relative;
}

.hero-badge {
  background: rgba(200,169,110,0.2); border: 1.5px solid rgba(200,169,110,0.7);
  color: #F0D89A; padding: 7px 22px; border-radius: 24px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; margin-bottom: 1.5rem;
  animation: fadeDown 0.8s ease both;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

.hero h1 {
  font-family: 'Noto Serif Hebrew', serif;
  font-size: clamp(2.8rem, 7vw, 5rem); font-weight: 700;
  color: #FAF6EE; line-height: 1.15; margin-bottom: 1rem;
  animation: fadeDown 0.9s ease 0.1s both;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-actions {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: 'Noto Serif Hebrew', serif;
  font-size: clamp(1.1rem, 2.8vw, 1.5rem); font-weight: 400;
  color: #F0D89A; letter-spacing: 0.08em;
  margin-bottom: 1rem; animation: fadeDown 0.8s ease 0.15s both;
}

.hero-dot {
  color: rgba(200,169,110,0.55); font-size: 1.3em; line-height: 1;
}

.hero-sub {
  font-size: 1.15rem; color: #F5EDD8;
  max-width: 520px; line-height: 1.7; margin-bottom: 2.5rem;
  animation: fadeDown 0.9s ease 0.2s both;
  text-shadow: 0 1px 12px rgba(0,0,0,0.5);
  font-weight: 500;
}

.hero-buttons { display: flex; gap: 1rem; animation: fadeDown 0.9s ease 0.3s both; flex-wrap: wrap; justify-content: center; }

.hero-social { display: flex; gap: 12px; margin-top: 2rem; animation: fadeDown 0.9s ease 0.4s both; flex-wrap: wrap; justify-content: center; }
.hero-social-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 24px; font-size: 0.85rem; font-weight: 600;
  border: 1.5px solid rgba(255,255,255,0.25); cursor: pointer; transition: all 0.2s;
  font-family: 'Heebo', sans-serif; text-decoration: none;
  backdrop-filter: blur(4px);
}
.hero-social-btn.instagram { background: rgba(225,48,108,0.3); border-color: rgba(225,48,108,0.6); color: #ffd6e5; }
.hero-social-btn.instagram:hover { background: rgba(225,48,108,0.45); transform: translateY(-1px); }
.hero-social-btn.tiktok { background: rgba(0,0,0,0.4); border-color: rgba(255,255,255,0.35); color: rgba(255,255,255,0.95); }
.hero-social-btn.tiktok:hover { background: rgba(0,0,0,0.55); transform: translateY(-1px); }

.btn-primary {
  background: var(--sand); color: var(--earth-dark);
  padding: 14px 32px; border-radius: 32px; font-weight: 600; font-size: 1rem;
  border: none; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s;
  font-family: 'Heebo', sans-serif; text-decoration: none; display: inline-block;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(122,92,58,0.35); }

.btn-outline {
  background: transparent; color: var(--sand-light);
  padding: 14px 32px; border-radius: 32px; font-weight: 500; font-size: 1rem;
  border: 1.5px solid rgba(200,169,110,0.5); cursor: pointer; transition: background 0.2s;
  font-family: 'Heebo', sans-serif; text-decoration: none; display: inline-block;
}
.btn-outline:hover { background: rgba(200,169,110,0.1); }

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(245,237,216,0.6); font-size: 0.75rem;
  animation: bounce 2s infinite;
}
.scroll-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sand); }

/* ===== STATS ===== */
.stats-bar {
  background: var(--earth-dark); padding: 2.5rem 2rem;
  display: flex; justify-content: center; gap: 4rem; flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num { font-family: 'Noto Serif Hebrew', serif; font-size: 2.2rem; font-weight: 700; color: var(--sand); display: block; line-height: 1; margin-bottom: 4px; }
.stat-label { font-size: 0.85rem; color: var(--sand-light); opacity: 0.8; }

/* ===== SECTIONS ===== */
section { padding: 3.5rem 2rem; border-top: 2px solid var(--sand-light); }
section.hero { border-top: none; }

.section-tag { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; color: var(--sand); text-transform: uppercase; margin-bottom: 0.75rem; }
.section-title { font-family: 'Noto Serif Hebrew', serif; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; color: var(--earth-dark); line-height: 1.2; margin-bottom: 1rem; }
.section-subtitle { font-size: 1rem; color: var(--text-light); line-height: 1.75; max-width: 560px; }
.center { text-align: center; }
.max-w { max-width: 1100px; margin: 0 auto; }

/* ===== ABOUT ===== */
.about-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 5fr 7fr; gap: 4rem; align-items: start; }
.about-img-wrap { position: relative; }
.about-img {
  width: 100%; aspect-ratio: 3/4; max-height: 440px; border-radius: 16px;
  background-image: url('../images/profile/20260222_085404.jpg');
  background-size: cover; background-position: center 10%;
  box-shadow: 6px 8px 0 var(--sand-light);
}
.about-badge { position: absolute; bottom: -20px; left: -20px; background: var(--sand); color: var(--earth-dark); border-radius: 12px; padding: 1rem 1.5rem; font-weight: 600; font-size: 0.9rem; box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.about-badge span { display: block; font-size: 1.8rem; font-weight: 700; font-family: 'Noto Serif Hebrew', serif; line-height: 1; margin-bottom: 2px; }
.about-features { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.about-feat { display: flex; align-items: flex-start; gap: 12px; }
.feat-icon { width: 40px; height: 40px; min-width: 40px; background: var(--sand-pale); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.feat-text strong { display: block; font-size: 0.95rem; font-weight: 600; color: var(--earth-dark); margin-bottom: 2px; }
.feat-text p { font-size: 0.85rem; color: var(--text-light); line-height: 1.5; }

/* ===== TOURS ===== */
#about    { background: var(--cream); }
#gallery  { background: var(--warm-white); }
#calendar { background: var(--cream); }
.tours-section { background: var(--sand-pale); }
.tours-grid { max-width: 1100px; margin: 3rem auto 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.tour-card { background: white; border-radius: 16px; overflow: hidden; border: 1px solid var(--sand-light); transition: transform 0.25s, box-shadow 0.25s; }
.tour-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(122,92,58,0.15); }
.tour-img { height: 220px; background-size: cover; background-position: center; position: relative; }
.tour-img-lantern {
  background-image: url('../images/tours/lantern1.jpg'), url('https://images.unsplash.com/photo-1508739773434-c26b3d09e071?w=600&q=80');
}
.tour-img-nature {
  background-image: url('../images/tours/nature1.jpg'), url('https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=600&q=80');
}
.tour-img-custom {
  background-image: url('../images/gallery/20260128_143049.jpg'), url('../images/gallery/20260114_165359.jpg');
}
.tour-tag { position: absolute; top: 12px; right: 12px; background: var(--earth-dark); color: var(--sand-light); font-size: 0.72rem; font-weight: 600; padding: 4px 12px; border-radius: 20px; }
.tour-body { padding: 1.5rem; }
.tour-title { font-family: 'Noto Serif Hebrew', serif; font-size: 1.2rem; font-weight: 700; color: var(--earth-dark); margin-bottom: 0.5rem; }
.tour-desc { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; margin-bottom: 1.2rem; }
.tour-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 1rem; border-top: 1px solid var(--sand-pale); }
.tour-price { font-family: 'Noto Serif Hebrew', serif; font-size: 1.4rem; font-weight: 700; color: var(--earth); }
.tour-price span { font-size: 0.8rem; font-weight: 400; color: var(--text-light); font-family: 'Heebo', sans-serif; }
.tour-details { display: flex; gap: 12px; font-size: 0.78rem; color: var(--text-light); }
.tour-register-btn {
  display: block; text-align: center; margin-top: 1rem;
  background: var(--earth); color: var(--sand-light);
  padding: 10px 20px; border-radius: 24px; font-weight: 600; font-size: 0.88rem;
  text-decoration: none; transition: background 0.2s, transform 0.2s;
}
.tour-register-btn:hover { background: var(--earth-dark); transform: translateY(-1px); }

/* ===== GALLERY ===== */
.gallery-grid { max-width: 1100px; margin: 2rem auto 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery-item { border-radius: 10px; overflow: hidden; background-size: cover; background-position: center; cursor: pointer; transition: opacity 0.2s; }
.gallery-item:hover { opacity: 0.85; }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; height: 360px; }
.gallery-item:nth-child(2), .gallery-item:nth-child(3), .gallery-item:nth-child(4), .gallery-item:nth-child(5) { height: 174px; }

/* תמונות גלריה — החלף בתמונות שלך */
.gallery-1 { background-color: #8B7355; background-image: url('../images/gallery/img-20251214-wa0036.jpg'); }
.gallery-2 { background-color: #6B8C6B; background-image: url('../images/gallery/img-20251214-wa0044.jpg'); }
.gallery-3 { background-color: #C8A96E; background-image: url('../images/gallery/20251231_065232.jpg'); }
.gallery-4 { background-color: #7A5C3A; background-image: url('../images/gallery/20260128_143049.jpg'); }
.gallery-5 { background-color: #4A3420; background-image: url('../images/gallery/img-20260226-wa0000.jpeg'); }

.gallery-social { display: flex; gap: 10px; justify-content: center; margin: 1rem 0 0; }
.social-pill {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 24px;
  font-size: 0.82rem; font-weight: 500;
  cursor: pointer; transition: transform 0.2s, opacity 0.2s;
  font-family: 'Heebo', sans-serif; text-decoration: none;
}
.social-pill:hover { transform: translateY(-1px); opacity: 0.9; }
.social-pill.instagram { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: white; }
.social-pill.tiktok { background: #000; color: white; border: 1px solid #333; }

/* ===== GOOGLE REVIEWS BANNER ===== */
.google-reviews-banner {
  max-width: 1100px; margin: 1.5rem auto 0;
  background: white; border: 1px solid var(--sand-light); border-radius: 14px;
  padding: 1.1rem 1.75rem; display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.google-reviews-info { display: flex; align-items: center; gap: 12px; }
.google-reviews-rating { font-weight: 700; color: var(--earth-dark); font-size: 0.95rem; }
.google-reviews-count { color: var(--text-light); font-size: 0.82rem; }
.btn-google-reviews {
  background: var(--earth-dark); color: var(--sand-light);
  padding: 10px 22px; border-radius: 24px; font-weight: 600;
  font-size: 0.88rem; text-decoration: none; transition: background 0.2s;
}
.btn-google-reviews:hover { background: var(--earth); }

/* ===== REVIEWS ===== */
.reviews-section { background: var(--sand-pale); }
.reviews-grid { max-width: 1100px; margin: 3rem auto 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.review-card { background: white; border-radius: 14px; padding: 1.5rem; border: 1px solid var(--sand-light); }
.stars { color: var(--sand); font-size: 1rem; margin-bottom: 0.75rem; letter-spacing: 2px; }
.review-text { font-size: 0.92rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 1rem; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 10px; }
.reviewer-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--earth); display: flex; align-items: center; justify-content: center; color: var(--cream); font-weight: 600; font-size: 0.85rem; }
.reviewer-name { font-size: 0.88rem; font-weight: 600; color: var(--earth-dark); }
.reviewer-date { font-size: 0.75rem; color: var(--text-light); }

/* ===== CALENDAR ===== */
.cal-events-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 1rem; margin-top: 2rem; }
.cal-event-card { background: white; border-radius: 14px; padding: 1.25rem 1.25rem 1rem; border: 2px solid var(--sand-light); cursor: pointer; transition: all 0.2s; text-decoration: none; display: block; color: inherit; }
.cal-event-card:hover { border-color: var(--sand); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(122,92,58,0.13); }
.cal-event-card.is-full { opacity: 0.5; cursor: default; pointer-events: none; }
.cal-event-date { font-family: 'Noto Serif Hebrew', serif; font-size: 1.05rem; font-weight: 700; color: var(--earth); margin-bottom: 6px; }
.cal-event-name { font-weight: 600; font-size: 0.95rem; color: var(--earth-dark); margin-bottom: 8px; }
.cal-event-meta { font-size: 0.8rem; color: var(--text-light); display: flex; flex-direction: column; gap: 4px; }
.cal-event-spots { margin-top: 10px; font-size: 0.78rem; font-weight: 600; padding: 4px 0; border-top: 1px solid var(--sand-pale); }
.cal-event-spots.available { color: var(--olive); }
.cal-event-spots.low { color: #e67e22; }
.cal-event-spots.is-full-badge { color: var(--danger); }
.cal-no-events { text-align: center; padding: 3rem 1rem; color: var(--text-light); }
.cal-no-events a { color: var(--earth); }

/* ===== CALENDAR SECTION ===== */
#calendar { padding-bottom: 3rem; }

/* ===== CONTACT ===== */
.contact-section { background: var(--earth-dark); text-align: center; padding: 5rem 2rem; }
.contact-section .section-tag { color: var(--sand); }
.contact-section .section-title { color: var(--sand-light); }
.contact-section .section-subtitle { color: rgba(245,237,216,0.7); margin: 0 auto 2rem; }

/* כפתור וואטסאפ */
.contact-cta { margin-bottom: 2rem; }
.btn-wa { background: #25D366; color: white; padding: 14px 32px; border-radius: 32px; font-weight: 600; font-size: 1rem; border: none; cursor: pointer; font-family: 'Heebo', sans-serif; transition: transform 0.2s, box-shadow 0.2s; display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.35); }
.btn-wa:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }

/* כפתורי סושיאל — עדינים */
.contact-social-icons { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.csi-btn { display: inline-flex; align-items: center; gap: 7px; padding: 8px 18px; border-radius: 24px; font-size: 0.82rem; font-weight: 500; color: rgba(245,237,216,0.75); border: 1px solid rgba(200,169,110,0.25); background: rgba(255,255,255,0.05); text-decoration: none; transition: all 0.2s; font-family: 'Heebo', sans-serif; }
.csi-btn:hover { background: rgba(200,169,110,0.15); border-color: rgba(200,169,110,0.5); color: var(--sand-light); transform: translateY(-1px); }
.csi-btn:focus-visible { outline: 2px solid var(--sand); outline-offset: 3px; }

/* טופס יצירת קשר */
.contact-form { max-width: 520px; margin: 0 auto 2rem; text-align: right; }
.contact-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 1rem; }
.contact-form-group { display: flex; flex-direction: column; gap: 5px; }
.contact-form-group.full { grid-column: span 2; }
.contact-form-group label { font-size: 0.8rem; font-weight: 600; color: var(--sand); letter-spacing: 0.04em; }
.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
  border: 1.5px solid rgba(200,169,110,0.35); border-radius: 10px;
  padding: 11px 14px; font-family: 'Heebo', sans-serif; font-size: 0.9rem;
  background: rgba(255,255,255,0.07); color: var(--sand-light);
  outline: none; transition: border-color 0.2s; width: 100%;
}
.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder { color: rgba(245,237,216,0.35); }
.contact-form-group select option { background: var(--earth-dark); color: var(--sand-light); }
.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus { border-color: var(--sand); }
.contact-form-group textarea { resize: vertical; min-height: 80px; }
.contact-form-submit {
  background: var(--sand); color: var(--earth-dark);
  padding: 13px 36px; border-radius: 32px;
  font-weight: 700; font-size: 1rem; border: none; cursor: pointer;
  font-family: 'Heebo', sans-serif; transition: transform 0.2s, box-shadow 0.2s;
  display: block; width: 100%;
}
.contact-form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,169,110,0.35); }
.contact-form-submit:focus-visible { outline: 3px solid white; outline-offset: 3px; }
.contact-success-msg {
  margin-top: 1rem; padding: 12px 20px;
  background: rgba(39,174,96,0.15); border: 1px solid rgba(39,174,96,0.3);
  border-radius: 10px; color: #7dcea0; font-size: 0.9rem; text-align: center;
}

/* פרטי קשר */
.contact-info { display: flex; gap: 2.5rem; justify-content: center; flex-wrap: wrap; padding-top: 1.5rem; border-top: 1px solid rgba(200,169,110,0.15); margin-top: 0.5rem; }
.contact-item { color: var(--sand-light); font-size: 0.9rem; display: flex; flex-direction: column; gap: 5px; }
.contact-item strong { color: var(--sand); font-size: 0.75rem; letter-spacing: 0.05em; }

/* ===== ACCESSIBILITY WIDGET — תקן 5568 ===== */
#access-widget { position: fixed; bottom: 20px; left: 16px; z-index: 9999; direction: rtl; }
#access-toggle {
  display: flex; align-items: center; gap: 7px;
  background: var(--earth); color: var(--sand-light);
  border: none; border-radius: 28px; padding: 10px 16px;
  font-family: 'Heebo', sans-serif; font-size: 0.82rem; font-weight: 600;
  cursor: pointer; box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: background 0.2s;
}
#access-toggle:hover { background: var(--earth-dark); }
#access-toggle:focus-visible { outline: 3px solid var(--sand); outline-offset: 2px; }
#access-panel {
  position: absolute; bottom: calc(100% + 10px); left: 0;
  background: white; border-radius: 16px; padding: 1rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2); min-width: 220px;
  border: 1px solid var(--sand-light);
}
.access-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.75rem; font-weight: 600; font-size: 0.88rem; color: var(--earth-dark); }
.access-close { background: none; border: none; font-size: 1rem; cursor: pointer; color: var(--text-light); padding: 2px 6px; border-radius: 6px; }
.access-close:hover { background: var(--sand-pale); }
.access-options { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-bottom: 0.75rem; }
.access-opt {
  padding: 8px 6px; border-radius: 8px; border: 1.5px solid var(--sand-light);
  background: var(--cream); color: var(--earth-dark); font-family: 'Heebo', sans-serif;
  font-size: 0.75rem; font-weight: 500; cursor: pointer; transition: all 0.15s; text-align: center;
}
.access-opt:hover { border-color: var(--sand); background: var(--sand-pale); }
.access-opt.active, .access-opt[aria-pressed="true"] { background: var(--earth); color: white; border-color: var(--earth); }
.access-opt:focus-visible { outline: 2px solid var(--earth); outline-offset: 2px; }
.access-reset { width: 100%; padding: 7px; border-radius: 8px; border: 1px solid #ddd; background: #f5f5f5; color: #666; font-family: 'Heebo', sans-serif; font-size: 0.78rem; cursor: pointer; margin-bottom: 0.5rem; }
.access-reset:hover { background: #eee; }
.access-note { font-size: 0.68rem; color: var(--text-light); text-align: center; line-height: 1.4; }

/* מצבי נגישות */
html.high-contrast { filter: contrast(1.6); }
html.grayscale { filter: grayscale(1); }
html.high-contrast.grayscale { filter: contrast(1.6) grayscale(1); }
html.underline-links a { text-decoration: underline !important; }
html.stop-animations *, html.stop-animations *::before, html.stop-animations *::after { animation: none !important; transition: none !important; }
html.big-cursor, html.big-cursor * { cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath d='M8 4l16 12-7 1-4 8z' fill='black' stroke='white' stroke-width='2'/%3E%3C/svg%3E") 0 0, auto !important; }

/* ===== FOOTER ===== */
footer { background: #1A0F06; padding: 1.5rem 2rem; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; max-width: 1100px; margin: 0 auto; }
.footer-copy { color: rgba(245,237,216,0.5); font-size: 0.8rem; }
.footer-copy a { color: var(--sand); text-decoration: none; }
.footer-social { display: flex; gap: 10px; align-items: center; }
.footer-icon { width: 34px; height: 34px; border-radius: 8px; display: flex; align-items: center; justify-content: center; transition: opacity 0.2s; text-decoration: none; }
.footer-icon:hover { opacity: 0.8; }
.fi-ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.fi-tt { background: #010101; border: 1px solid #333; }
.fi-fb { background: #1877F2; }
.fi-wa { background: #25D366; }

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  display: flex; align-items: center; justify-content: center;
  position: fixed; bottom: 20px; right: 16px; z-index: 9998;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25D366; color: white;
  box-shadow: 0 4px 16px rgba(37,211,102,0.45);
  text-decoration: none; transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.6); }
#access-toggle { cursor: grab; }

/* ===== ANIMATIONS ===== */
@keyframes fadeDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-6px); } }

/* כניסת אלמנטים בגלילה */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.tour-card.fade-in:nth-child(2) { transition-delay: 0.1s; }
.tour-card.fade-in:nth-child(3) { transition-delay: 0.2s; }
.review-card.fade-in:nth-child(2) { transition-delay: 0.1s; }
.review-card.fade-in:nth-child(3) { transition-delay: 0.2s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  nav { padding: 0 1rem; }
  .nav-links { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 2; height: 240px; }
  .stats-bar { gap: 2rem; }
  .contact-info { gap: 1.5rem; }
  .contact-form-grid { grid-template-columns: 1fr; }
  .contact-form-group.full { grid-column: span 1; }
}
