:root {
  --primary: #1e3d2f;
  --primary-mid: #2d5a42;
  --accent: #d4b896;
  --accent-dark: #c0a07e;
  --green-mid: #4a7c5e;
  --text-light: #f8f9fa;
  --text-dark: #1a2e22;
  --bg: #f5f2ee;
  --card-bg: #fff;
  --shadow: rgba(30, 61, 47, .10);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; font-size: 16px; line-height: 1.6; background: var(--bg); color: var(--text-dark); overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

header.navbar { background: linear-gradient(90deg, #1e3d2f 0%, #2d5a42 50%, #4a7c5e 100%); color: white; display: flex; justify-content: space-between; align-items: center; padding: 12px 26px; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 16px rgba(0,0,0,.25); transition: .3s ease; }
.navbar.scrolled { padding: 8px 24px; background: linear-gradient(90deg, #162d22 0%, #254d38 50%, #3d6b4f 100%); }
.logo { display: flex; align-items: center; gap: .75rem; }
.logo-img { width: 72px; height: 72px; object-fit: contain; border-radius: 18px; box-shadow: 0 4px 14px rgba(0,0,0,.35); }
.logo-text { font-weight: 700; font-size: 1.4rem; color: #fff; letter-spacing: .04em; }
nav { position: absolute; top: 100%; left: 0; right: 0; background: rgba(30,61,47,.97); display: flex; justify-content: center; max-height: 0; overflow: hidden; opacity: 0; transition: max-height .35s ease, opacity .25s ease; }
nav.open { max-height: 420px; opacity: 1; }
.nav-links { list-style: none; display: flex; flex-direction: column; gap: .6rem; padding: 10px 16px 18px; align-items: center; }
.nav-links li { width: 100%; max-width: 260px; }
.nav-links a { display: block; width: 100%; color: white; font-weight: 500; font-size: .98rem; padding: 10px 20px; border-radius: 999px; text-align: center; transition: .25s ease; }
.nav-links a:hover { color: var(--accent); background: rgba(0,0,0,.14); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.lang-switcher { display: flex; align-items: center; gap: 6px; margin-left: 16px; padding: 4px 10px; border-radius: 999px; background: rgba(0,0,0,.18); }
.lang-option { cursor: pointer; font-size: .78rem; border-radius: 999px; color: #e8f5e9; padding: 6px 12px; user-select: none; }
.lang-option.active { background: var(--accent); color: var(--primary); font-weight: 700; }
.menu-toggle { cursor: pointer; width: 40px; height: 40px; border-radius: 999px; border: 1px solid rgba(255,255,255,.4); display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,.12); }
.menu-toggle i { font-size: 1.3rem; color: white; transition: .3s ease; }
.menu-toggle.open i { transform: rotate(90deg); color: var(--accent); }

.hero { background: linear-gradient(110deg, #1e3d2f 0%, #2d5a42 45%, #4a7c5e 100%); color: var(--text-light); text-align: center; padding: 130px 20px 90px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: -40% -35%; background: radial-gradient(circle at 10% 0%, rgba(212,184,150,.12), transparent 60%), radial-gradient(circle at 90% 100%, rgba(212,184,150,.10), transparent 60%); animation: floatGlow 24s linear infinite alternate; pointer-events: none; }
@keyframes floatGlow { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(-40px,25px,0) scale(1.05); } }
.hero-content { position: relative; z-index: 1; max-width: 850px; margin: 0 auto; animation: heroFloat 7s ease-in-out infinite alternate; }
@keyframes heroFloat { from { transform: translateY(0); } to { transform: translateY(-8px); } }
.hero h1 { font-family: 'Ubuntu', sans-serif; font-weight: 700; font-size: 3rem; line-height: 1.15; margin-bottom: 18px; letter-spacing: .03em; }
.hero p { font-size: 1.2rem; margin-bottom: 30px; opacity: .96; font-style: italic; }
.btn { background: var(--accent); color: var(--primary); padding: 14px 32px; border-radius: 999px; font-weight: 700; font-size: 1.02rem; display: inline-block; transition: .25s ease; box-shadow: 0 6px 22px rgba(0,0,0,.35); margin: 5px; }
.btn:hover { transform: translateY(-3px) scale(1.03); background: var(--accent-dark); }

.section { padding: 80px 20px; max-width: 1200px; margin: 0 auto; }
.section.alt { background: linear-gradient(135deg, #fff 0%, #f5f2ee 100%); max-width: 100%; }
.section h2 { color: var(--primary); margin: 0 auto 15px; font-size: 2.4rem; font-weight: 700; text-align: center; position: relative; width: fit-content; max-width: 100%; letter-spacing: .02em; }
.section h2::after { content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 80px; height: 3px; background: var(--accent); border-radius: 20px; }
.section-intro { text-align: center; font-size: 1.05rem; line-height: 1.7; color: #555; margin: 30px auto 50px; max-width: 750px; }
.activities-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; margin-top: 40px; }
.activity-card { width: 400px; background: var(--card-bg); border-radius: 22px; overflow: hidden; box-shadow: 0 6px 24px var(--shadow); transition: .3s ease; color: inherit; display: block; }
.activity-card:hover { transform: translateY(-8px) scale(1.015); box-shadow: 0 18px 46px rgba(0,0,0,.18); }
.activity-icon { background: linear-gradient(135deg, #1e3d2f 0%, #2d5a42 50%, #4a7c5e 100%); padding: 36px; text-align: center; min-height: 190px; display: flex; align-items: center; justify-content: center; }
.activity-icon i { font-size: 3.4rem; color: white; }
.image-placeholder { flex-direction: column; gap: 14px; color: white; }
.image-placeholder span { font-weight: 700; opacity: .9; }
.activity-content { padding: 28px 26px 30px; }
.activity-content h3 { color: var(--primary); font-size: 1.35rem; font-weight: 700; margin-bottom: 8px; }
.activity-content p { color: #666; font-size: .98rem; }
.event-badge { display: inline-block; background: var(--accent); color: var(--primary); padding: 6px 14px; border-radius: 999px; font-size: .82rem; font-weight: 700; margin-bottom: 12px; }
.empty-event-box { background: var(--card-bg); padding: 35px 25px; border-radius: 22px; text-align: center; box-shadow: 0 6px 24px var(--shadow); max-width: 700px; margin: 40px auto 0; color: #666; }
.cta-section { background: linear-gradient(135deg, #1e3d2f 0%, #2d5a42 45%, #4a7c5e 100%); color: white; padding: 80px 20px; text-align: center; margin-top: 60px; }
.cta-section h2 { color: white; font-size: 2.4rem; font-weight: 700; margin-bottom: 18px; }
.cta-section p { font-size: 1.1rem; margin-bottom: 30px; opacity: .9; }

footer { background: var(--primary); color: white; padding: 40px 20px 20px; text-align: center; }
.footer-content { max-width: 1200px; display: grid; grid-template-columns: repeat(auto-fit,minmax(250px,1fr)); gap: 40px; margin: 0 auto 30px; }
.footer-section h3 { color: var(--accent); margin-bottom: 15px; font-size: 1.25rem; font-weight: 700; }
.footer-section p, .footer-section a { color: rgba(255,255,255,.82); line-height: 2; font-size: .95rem; }
.footer-section a:hover, .footer-links a:hover { color: var(--accent); }
.social-links { display: flex; gap: 15px; justify-content: center; margin-top: 15px; }
.social-links a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; transition: .25s ease; }
.social-links a:hover { background: var(--accent); transform: translateY(-3px); color: var(--primary); }
.social-links img { width: 22px; height: 22px; filter: brightness(0) invert(1); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.15); padding-top: 18px; margin-top: 30px; }
.footer-links { margin: 15px 0; }
.footer-links a { color: rgba(255,255,255,.82); margin: 0 10px; font-size: .9rem; }
.to-top { display: inline-block; margin-top: 15px; padding: 9px 20px; background: var(--accent); color: var(--primary); border-radius: 999px; font-size: .9rem; font-weight: 700; }
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--primary); color: white; padding: 18px 20px; z-index: 9999; display: none; align-items: center; justify-content: space-between; gap: 20px; }
.cookie-banner.show { display: flex; }
.cookie-banner p { flex: 1; font-size: .9rem; }
.cookie-banner a { color: var(--accent); text-decoration: underline; }
.cookie-banner button { background: var(--accent); color: var(--primary); border: none; padding: 9px 26px; border-radius: 999px; font-weight: 700; cursor: pointer; }
.reveal, .reveal-left, .reveal-right { opacity: 0; }
.reveal { transform: translateY(30px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translateX(0) translateY(0); transition: opacity .7s ease-out, transform .7s ease-out; }
html[dir="rtl"] .hero, html[dir="rtl"] .section h2, html[dir="rtl"] .section-intro, html[dir="rtl"] .activity-card, html[dir="rtl"] .empty-event-box, html[dir="rtl"] .cta-section, html[dir="rtl"] footer { text-align: center; }

@media (min-width: 1100px) {
  nav { position: static; max-height: none; opacity: 1; background: transparent; overflow: visible; }
  .nav-links { flex-direction: row; padding: 0; gap: .3rem; }
  .nav-links li { width: auto; max-width: none; }
  .nav-links a { padding: 9px 12px; font-size: .92rem; }
  .menu-toggle { display: none; }
}

@media (max-width: 768px) {
  header.navbar { padding: 10px 16px; }
  .logo-text { display: none; }
  .logo-img { width: 46px; height: 46px; }
  .lang-switcher { margin-left: 0; gap: 3px; padding: 4px 7px; }
  .lang-option { font-size: .7rem; padding: 5px 8px; }
  .hero { padding: 105px 18px 70px; }
  .hero h1 { font-size: 2.2rem; }
  .hero p { font-size: 1.05rem; }
  .section { padding: 65px 18px; }
  .section h2, .cta-section h2 { font-size: 2rem; }
  .activity-card { width: 100%; }
  .cookie-banner { flex-direction: column; text-align: center; }
  .cookie-banner button { width: 100%; }
  .footer-links { display: flex; flex-direction: column; gap: 6px; }
}
