:root {
  --green: #2d7a4f;
  --green-light: #4caf50;
  --green-dark: #1a5c38;
  --green-pale: #e8f5e9;
  --cream: #f8faf6;
  --text: #1a2e1a;
  --text-muted: #5a7a5a;
  --white: #ffffff;
  --radius: 12px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: "Inter", sans-serif; color: var(--text); background: var(--white); line-height: 1.7; }
a { text-decoration: none; color: inherit; }
p { margin-bottom: 1rem; }
h1,h2,h3,h4 { line-height: 1.2; margin-bottom: 1rem; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* NAV */
nav { position: fixed; top: 0; width: 100%; z-index: 1000; padding: 18px 0; transition: all 0.3s; }
nav.scrolled { background: var(--white); box-shadow: var(--shadow); padding: 12px 0; }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.8rem; font-weight: 800; display: flex; align-items: center; }
.logo .fiti { color: var(--green-light); }
.logo .fit  { color: var(--green-dark); }
.nav-links { display: flex; list-style: none; align-items: center; gap: 28px; }
.nav-links a { font-weight: 500; transition: color 0.2s; display: flex; align-items: center; gap: 6px; }
.nav-links a:hover, .nav-links a.active { color: var(--green); }
.fb-icon { color: #1877F2 !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; }
.nav-toggle span { display: block; height: 3px; width: 26px; background: var(--text); border-radius: 3px; transition: all 0.3s; }
.nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* HERO */
.hero { min-height: 100vh; background: linear-gradient(135deg, #d4edda 0%, var(--cream) 60%, #fff 100%); display: flex; align-items: center; text-align: center; padding: 100px 0 60px; position: relative; }
.hero-badge { display: inline-block; background: rgba(45,122,79,0.1); color: var(--green); border: 1px solid rgba(45,122,79,0.2); border-radius: 30px; padding: 6px 18px; font-size: 0.85rem; font-weight: 600; margin-bottom: 1.5rem; }
.hero-title { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; color: var(--green-dark); margin-bottom: 1.5rem; }
.hero-subtitle { font-size: 1.15rem; max-width: 680px; margin: 0 auto 2.5rem; color: var(--text-muted); }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-emojis { font-size: 2.4rem; display: flex; gap: 16px; justify-content: center; margin-bottom: 3rem; }
.scroll-indicator { color: var(--green); animation: bounce 2s infinite; }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(10px); } }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: 30px; font-weight: 600; font-size: 0.95rem; transition: all 0.25s; cursor: pointer; }
.btn-primary { background: var(--green); color: var(--white); border: 2px solid var(--green); }
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(45,122,79,0.3); }
.btn-outline { background: transparent; color: var(--green); border: 2px solid var(--green); }
.btn-outline:hover { background: var(--green-pale); transform: translateY(-2px); }
.btn-fb { background: #1877F2; color: var(--white); border: 2px solid #1877F2; justify-content: center; }
.btn-fb:hover { background: #166fe5; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(24,119,242,0.3); }

/* SECTIONS */
.section { padding: 90px 0; }
.section-alt { background: var(--cream); }
.section-label { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--green); margin-bottom: 0.75rem; }
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; color: var(--green-dark); margin-bottom: 1.25rem; }
.section-sub { font-size: 1.05rem; color: var(--text-muted); max-width: 600px; margin-bottom: 3rem; }

/* O NAS */
.o-nas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.about-meta { margin-top: 2rem; display: flex; flex-direction: column; gap: 10px; }
.meta-item { display: flex; gap: 12px; font-size: 0.9rem; }
.meta-label { color: var(--text-muted); min-width: 110px; }
.meta-value { font-weight: 600; color: var(--green-dark); }
.o-nas-cards { display: flex; flex-direction: column; gap: 18px; }
.feature-card { background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); border-left: 4px solid var(--green); }
.fc-emoji { font-size: 1.8rem; margin-bottom: 0.6rem; }
.feature-card h3 { font-size: 1.05rem; margin-bottom: 0.4rem; color: var(--green-dark); }
.feature-card p { font-size: 0.92rem; color: var(--text-muted); margin: 0; }

/* AKTIVITY */
.aktivity-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.activity-card { background: var(--white); border-radius: var(--radius); padding: 30px 24px; box-shadow: var(--shadow); border: 2px solid transparent; transition: all 0.3s; display: flex; flex-direction: column; }
.activity-card:hover { transform: translateY(-8px); box-shadow: 0 12px 35px rgba(0,0,0,0.12); border-color: var(--green); }
.ac-emoji { font-size: 2.8rem; margin-bottom: 1rem; }
.activity-card h3 { font-size: 1.15rem; color: var(--green-dark); margin-bottom: 0.6rem; }
.activity-card p { font-size: 0.92rem; color: var(--text-muted); flex: 1; }
.ac-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 1.2rem; }
.ac-tags span { background: var(--green-pale); color: var(--green-dark); font-size: 0.78rem; font-weight: 600; padding: 4px 12px; border-radius: 20px; }

/* VALUES */
.values-strip { background: var(--green-dark); padding: 44px 0; }
.values-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.value-item { display: flex; align-items: center; gap: 10px; color: var(--white); font-weight: 600; font-size: 1rem; }
.value-item span { font-size: 1.4rem; }
.value-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.2); }

/* KONTAKT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; gap: 18px; align-items: flex-start; }
.ci-icon { font-size: 1.8rem; flex-shrink: 0; }
.contact-item strong { display: block; color: var(--green-dark); margin-bottom: 4px; font-size: 0.95rem; }
.contact-item p, .contact-item a { color: var(--text-muted); font-size: 0.92rem; margin: 0; }
.contact-item a:hover { color: var(--green); }
.fb-card { border: 2px solid #1877F2; border-radius: var(--radius); padding: 40px 32px; text-align: center; background: var(--white); box-shadow: var(--shadow); display: flex; flex-direction: column; align-items: center; gap: 16px; }
.fb-card h3 { color: var(--green-dark); margin: 0; }
.fb-card p { color: var(--text-muted); font-size: 0.92rem; margin: 0; }
.fb-card .btn-fb { width: 100%; max-width: 280px; }

/* FOOTER */
footer { background: var(--green-dark); color: var(--white); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; padding: 56px 24px; flex-wrap: wrap; gap: 32px; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.88rem; margin-top: 8px; margin-bottom: 0; }
.footer-links { list-style: none; display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { background: rgba(0,0,0,0.25); padding: 18px 0; text-align: center; font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.footer-bottom p { margin: 0; }

/* FADE IN */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.75s ease, transform 0.75s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-links { position: absolute; top: 100%; left: 0; width: 100%; background: var(--white); flex-direction: column; padding: 20px 24px; gap: 16px; box-shadow: 0 8px 24px rgba(0,0,0,0.12); display: none; }
    .nav-links.open { display: flex; }
    .o-nas-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .values-row { flex-direction: column; align-items: flex-start; gap: 16px; }
    .value-divider { display: none; }
    .footer-inner { flex-direction: column; align-items: flex-start; padding: 40px 24px; }
    .footer-links { flex-direction: column; gap: 12px; }
    nav { background: rgba(255,255,255,0.95); backdrop-filter: blur(8px); }
}
@media (max-width: 480px) {
    .aktivity-grid { grid-template-columns: 1fr; }
    .hero-emojis { font-size: 1.9rem; gap: 10px; }
}
