html { overflow-x: hidden; scroll-behavior: smooth; }
body { overflow-x: hidden; }
/* ===== Ecologische Gemeenschap - Stylesheet ===== */
:root {
    --green-50: #e8f5e9;
    --green-100: #c8e6c9;
    --green-200: #a5d6a7;
    --green-300: #81c784;
    --green-400: #66bb6a;
    --green-500: #4CAF50;
    --green-600: #43a047;
    --green-700: #388e3c;
    --green-800: #2e7d32;
    --green-900: #1b5e20;
    --neutral-50: #fafcfa;
    --neutral-100: #f1f5f1;
    --neutral-200: #e4ebe4;
    --neutral-300: #c9d4c9;
    --neutral-400: #8fa38f;
    --neutral-500: #627062;
    --neutral-600: #4a5a4a;
    --neutral-700: #354035;
    --neutral-800: #232b23;
    --neutral-900: #141a14;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--neutral-800);
    background: var(--neutral-50);
    -webkit-font-smoothing: antialiased;
}
a { color: var(--green-600); }
img { max-width: 100%; height: auto; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ===== TOPBAR ===== */
.topbar { background: var(--green-900); padding: 10px 0; font-size: 0.8rem; color: #c8e6c9; }
.topbar-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; }
.topbar-left { display: flex; gap: 24px; align-items: center; }
.topbar-left span { display: flex; align-items: center; gap: 6px; }
.topbar-right { display: flex; align-items: center; gap: 16px; }
.lang-switcher { display: flex; gap: 4px; }
.lang-btn { background: transparent; border: 1px solid rgba(255,255,255,0.2); color: #a5d6a7; padding: 4px 10px; border-radius: 4px; font-size: 0.72rem; font-weight: 600; cursor: pointer; transition: all 0.15s; font-family: inherit; letter-spacing: 0.05em; text-decoration: none; }
.lang-btn.active, .lang-btn:hover { background: var(--green-500); border-color: var(--green-500); color: #fff; }
.auth-links a { color: #c8e6c9; text-decoration: none; font-size: 0.8rem; font-weight: 500; display: inline-flex; align-items: center; gap: 5px; padding: 5px 12px; border-radius: 6px; transition: all 0.15s; }
.auth-links a:hover { background: rgba(255,255,255,0.1); }
.auth-links .btn-register { background: var(--green-500); color: #fff; }
.auth-links .btn-register:hover { background: var(--green-400); }

/* ===== HEADER ===== */
.header { position: sticky; top: 0; z-index: 100; background: rgba(250,252,250,0.95); backdrop-filter: blur(16px); border-bottom: 1px solid var(--neutral-200); box-shadow: 0 1px 8px rgba(0,0,0,0.04); }
.header-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; gap: 32px; height: 74px; }
.logo { display: flex; align-items: center; gap: 14px; text-decoration: none; color: var(--green-800); }
.logo-img { width: 52px; height: 52px; border-radius: 50%; object-fit: contain; }
.logo-text { font-size: 1.05rem; font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; }
.logo-text small { display: block; font-size: 0.68rem; font-weight: 400; color: var(--neutral-500); letter-spacing: 0.03em; text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: 2px; margin-right: auto; }
.nav a { text-decoration: none; color: var(--neutral-700); font-size: 0.88rem; font-weight: 500; padding: 10px 16px; border-radius: 10px; transition: all 0.2s var(--ease-out-expo); display: flex; align-items: center; gap: 7px; }
.nav a:hover { color: var(--green-600); background: var(--green-50); }
.nav a.active { color: var(--green-700); background: var(--green-100); font-weight: 600; }
.mobile-toggle { display: none; background: none; border: none; padding: 8px; cursor: pointer; color: var(--neutral-700); }

/* ===== HERO ===== */
.hero { position: relative; min-height: 400px; display: flex; align-items: center; overflow: hidden; background: linear-gradient(155deg, #1b5e20 0%, #2e7d32 35%, #388e3c 70%, #1b5e20 100%); padding: 60px 0; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 80% 20%, rgba(76,175,80,0.25), transparent), radial-gradient(ellipse 40% 60% at 10% 90%, rgba(27,94,32,0.5), transparent); }
.hero-pattern { position: absolute; inset: 0; opacity: 0.04; background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 Q40 15 35 30 Q30 45 20 35 Q10 25 20 15 Q25 10 30 5Z' fill='%23fff'/%3E%3C/svg%3E"); background-size: 80px 80px; }
.hero-content { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; padding: 40px 24px; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.hero-text h1 { font-size: clamp(2.6rem, 5vw, 3.8rem); font-weight: 800; color: #fff; line-height: 1.08; letter-spacing: -0.03em; margin-bottom: 20px; text-wrap: balance; }
.hero-text h1 span { color: #a5d6a7; }
.hero-text p { font-size: 1.1rem; color: rgba(200,230,201,0.9); line-height: 1.7; margin-bottom: 32px; max-width: 48ch; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual { display: flex; align-items: center; justify-content: center; }
.hero-logo-big { width: 320px; height: 320px; border-radius: 50%; background: rgba(255,255,255,0.07); border: 2px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; animation: float 6s ease-in-out infinite; backdrop-filter: blur(4px); }
.hero-logo-big img { width: 200px; height: 200px; object-fit: contain; filter: drop-shadow(0 8px 32px rgba(0,0,0,0.3)); }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 26px; border-radius: 12px; font-size: 0.92rem; font-weight: 600; text-decoration: none; cursor: pointer; border: none; font-family: inherit; transition: all 0.2s var(--ease-out-expo); }
.btn-primary { background: var(--green-500); color: #fff; box-shadow: 0 4px 20px rgba(76,175,80,0.3); }
.btn-primary:hover { background: var(--green-400); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(76,175,80,0.4); }
.btn-white { background: #fff; color: var(--green-800); }
.btn-white:hover { background: var(--green-50); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.35); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }

/* ===== STATS ===== */
.hero-stats { position: relative; z-index: 2; max-width: 1280px; margin: -50px auto 0; padding: 0 24px; }
.stats-card { background: #fff; border-radius: 20px; padding: 36px 48px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; box-shadow: 0 20px 60px rgba(0,0,0,0.08); border: 1px solid var(--neutral-200); }
.stat-item { text-align: center; }
.stat-icon { margin-bottom: 8px; color: var(--green-500); }
.stat-number { font-size: 2.2rem; font-weight: 800; color: var(--green-800); line-height: 1.2; font-variant-numeric: tabular-nums; }
.stat-label { font-size: 0.82rem; color: var(--neutral-500); margin-top: 4px; font-weight: 500; }

/* ===== OPENING HOURS ===== */
.opening-banner { background: linear-gradient(135deg, var(--green-50), #fff); border: 1px solid var(--green-100); border-radius: 16px; padding: 32px 40px; margin-top: -20px; margin-bottom: 40px; display: flex; align-items: center; gap: 40px; box-shadow: 0 2px 12px rgba(76,175,80,0.06); }
.opening-icon { width: 56px; height: 56px; border-radius: 14px; background: var(--green-500); display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; }
.opening-info h3 { font-size: 1.1rem; font-weight: 700; color: var(--green-800); margin-bottom: 6px; }
.opening-days { display: flex; gap: 20px; flex-wrap: wrap; font-size: 0.88rem; color: var(--neutral-600); }
.opening-days span { display: flex; align-items: center; gap: 6px; }
.day-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-400); }
.day-dot.closed { background: #ef5350; }

/* ===== SECTIONS ===== */
.section { padding: 60px 24px; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-desc { margin-left: auto; margin-right: auto; }
.section-eyebrow { font-size: 0.76rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--green-500); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.section-header.center .section-eyebrow { justify-content: center; }
.section-title { font-size: clamp(1.9rem, 3.5vw, 2.6rem); font-weight: 800; color: var(--neutral-900); letter-spacing: -0.025em; line-height: 1.15; text-wrap: balance; }
.section-desc { margin-top: 14px; font-size: 1.02rem; color: var(--neutral-500); max-width: 55ch; line-height: 1.7; }

/* ===== PROJECTS ===== */
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.project-item { background: #fff; border: 1px solid var(--neutral-200); border-radius: 18px; overflow: hidden; transition: all 0.3s var(--ease-out-expo); }
.project-item:hover { border-color: var(--green-300); transform: translateY(-6px); box-shadow: 0 16px 48px rgba(76,175,80,0.12); }
.project-img { height: 200px; background: linear-gradient(135deg, var(--green-100), var(--green-200)); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.project-img i { color: var(--green-600); opacity: 0.5; }
.project-badge { position: absolute; top: 14px; left: 14px; background: var(--green-500); color: #fff; font-size: 0.7rem; font-weight: 700; padding: 5px 10px; border-radius: 6px; letter-spacing: 0.04em; text-transform: uppercase; }
.project-body { padding: 24px 28px 28px; }
.project-title { font-size: 1.15rem; font-weight: 700; color: var(--neutral-800); margin-bottom: 8px; }
.project-desc { font-size: 0.88rem; color: var(--neutral-500); line-height: 1.6; margin-bottom: 16px; }
.project-link { font-size: 0.85rem; font-weight: 600; color: var(--green-600); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.project-link:hover { gap: 10px; }

/* ===== PROJECT DETAIL ===== */
.project-detail { background: #fff; border: 1px solid var(--neutral-200); border-radius: 20px; padding: 40px; margin-bottom: 28px; transition: all 0.3s; }
.project-detail:hover { border-color: var(--green-200); box-shadow: 0 8px 32px rgba(76,175,80,0.08); }
.project-detail-header { display: flex; align-items: center; gap: 20px; margin-bottom: 20px; }
.project-detail-icon { width: 72px; height: 72px; border-radius: 16px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.project-detail-title { font-size: 1.4rem; font-weight: 700; color: var(--neutral-800); margin-top: 8px; }
.project-detail-body { margin-bottom: 24px; }
.project-detail-body p { font-size: 0.95rem; color: var(--neutral-600); line-height: 1.8; margin-bottom: 12px; }

/* ===== PARTNERS ===== */
.partners-section { background: #fff; border-top: 1px solid var(--neutral-200); border-bottom: 1px solid var(--neutral-200); }
.partners-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.partner-card { border: 1px solid var(--neutral-200); border-radius: 18px; overflow: hidden; transition: all 0.3s var(--ease-out-expo); background: var(--neutral-50); }
.partner-card:hover { border-color: var(--green-200); box-shadow: 0 12px 36px rgba(0,0,0,0.06); transform: translateY(-4px); }
.partner-img { height: 220px; background: linear-gradient(135deg, var(--neutral-200), var(--neutral-100)); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.partner-placeholder { font-size: 3rem; opacity: 0.3; }
.partner-sponsored { position: absolute; top: 12px; right: 12px; background: rgba(255,193,7,0.9); color: #1b5e20; font-size: 0.68rem; font-weight: 700; padding: 4px 10px; border-radius: 5px; letter-spacing: 0.04em; text-transform: uppercase; }
.partner-body { padding: 24px; }
.partner-name { font-size: 1.1rem; font-weight: 700; color: var(--neutral-800); margin-bottom: 6px; }
.partner-category { font-size: 0.78rem; font-weight: 600; color: var(--green-600); background: var(--green-50); display: inline-block; padding: 3px 10px; border-radius: 5px; margin-bottom: 10px; }
.partner-desc { font-size: 0.86rem; color: var(--neutral-500); line-height: 1.6; }
.partner-contact { margin-top: 14px; display: flex; gap: 10px; }
.partner-contact a { font-size: 0.8rem; font-weight: 500; color: var(--green-700); text-decoration: none; padding: 6px 14px; border: 1px solid var(--green-200); border-radius: 8px; transition: all 0.15s; display: flex; align-items: center; gap: 5px; }
.partner-contact a:hover { background: var(--green-50); border-color: var(--green-400); }

/* ===== CTA ===== */
.cta-section { padding: 48px 24px 96px; }
.cta-box { background: linear-gradient(135deg, var(--green-800), var(--green-900)); border-radius: 24px; padding: 64px; text-align: center; color: #fff; }
.cta-box p { font-size: 1.05rem; color: rgba(255,255,255,0.75); margin-bottom: 28px; max-width: 50ch; margin-left: auto; margin-right: auto; }

/* ===== PAGE HEADER ===== */
.page-header { background: linear-gradient(135deg, var(--green-800), var(--green-900)); padding: 80px 24px 60px; text-align: center; color: #fff; position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; inset: 0; opacity: 0.04; background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 Q40 15 35 30 Q30 45 20 35 Q10 25 20 15 Q25 10 30 5Z' fill='%23fff'/%3E%3C/svg%3E"); background-size: 80px 80px; }
.page-header-sm { padding: 60px 24px 40px; }
.page-header-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.page-header-icon { margin-bottom: 16px; opacity: 0.8; display: inline-flex; background: rgba(255,255,255,0.1); padding: 16px; border-radius: 16px; }
.page-header h1 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 12px; }
.page-header p { font-size: 1.05rem; color: #c8e6c9; max-width: 50ch; margin: 0 auto; }

/* ===== CONTENT PAGE LAYOUT ===== */
.content-page { display: grid; grid-template-columns: 1fr 360px; gap: 48px; align-items: start; }
.content-body .lead { font-size: 1.1rem; color: var(--neutral-700); line-height: 1.8; margin-bottom: 36px; font-weight: 400; }
.content-block { display: flex; gap: 20px; align-items: flex-start; padding: 28px; background: #fff; border: 1px solid var(--neutral-200); border-radius: 16px; margin-bottom: 20px; transition: all 0.2s; }
.content-block:hover { border-color: var(--green-200); box-shadow: 0 4px 16px rgba(76,175,80,0.06); }
.content-icon { flex-shrink: 0; width: 48px; height: 48px; border-radius: 12px; background: var(--green-50); display: flex; align-items: center; justify-content: center; }
.content-block h3 { font-size: 1.1rem; font-weight: 700; color: var(--neutral-800); margin-bottom: 8px; }
.content-block p { font-size: 0.92rem; color: var(--neutral-600); line-height: 1.7; }

/* Sidebar */
.content-sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-card { background: #fff; border: 1px solid var(--neutral-200); border-radius: 16px; padding: 28px; }
.sidebar-card.highlight { background: var(--green-50); border-color: var(--green-200); }
.sidebar-card h3 { font-size: 1rem; font-weight: 700; color: var(--neutral-800); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.sidebar-card p { font-size: 0.88rem; color: var(--neutral-500); line-height: 1.6; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.check-list li { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--neutral-700); font-weight: 500; }
.sidebar-hours { display: flex; flex-direction: column; gap: 8px; }
.sidebar-hours div { display: flex; justify-content: space-between; font-size: 0.86rem; color: var(--neutral-600); padding: 6px 0; border-bottom: 1px solid var(--neutral-200); }
.sidebar-hours div:last-child { border-bottom: none; }

/* ===== MAP ===== */
.map-section { border-bottom: 1px solid var(--neutral-200); }
.map-section iframe { width: 100%; height: 350px; display: block; }

/* ===== CONTACT ===== */
.contact-section { background: var(--neutral-100); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-card { display: flex; gap: 14px; align-items: flex-start; padding: 18px; background: #fff; border-radius: 14px; border: 1px solid var(--neutral-200); transition: all 0.2s; }
.contact-card:hover { border-color: var(--green-200); }
.contact-card-icon { width: 42px; height: 42px; border-radius: 10px; background: var(--green-100); display: flex; align-items: center; justify-content: center; color: var(--green-600); flex-shrink: 0; }
.contact-card h4 { font-size: 0.88rem; font-weight: 700; color: var(--neutral-700); margin-bottom: 2px; }
.contact-card p { font-size: 0.84rem; color: var(--neutral-500); line-height: 1.5; }
.contact-form { background: #fff; border: 1px solid var(--neutral-200); border-radius: 20px; padding: 40px; box-shadow: 0 4px 20px rgba(0,0,0,0.03); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--neutral-600); }
.form-group input, .form-group textarea, .form-group select { padding: 12px 16px; border: 1px solid var(--neutral-200); border-radius: 10px; font-size: 0.9rem; font-family: inherit; background: var(--neutral-50); color: var(--neutral-800); transition: border-color 0.2s; outline: none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--green-400); box-shadow: 0 0 0 3px rgba(76,175,80,0.12); }
.form-group textarea { min-height: 120px; resize: vertical; }

/* ===== AUTH ===== */
.auth-container { max-width: 480px; margin: 0 auto; }
.auth-card { background: #fff; border: 1px solid var(--neutral-200); border-radius: 20px; padding: 48px; box-shadow: 0 8px 32px rgba(0,0,0,0.04); }
.auth-header { text-align: center; margin-bottom: 32px; }
.auth-header h2 { font-size: 1.5rem; font-weight: 700; color: var(--neutral-800); margin-bottom: 6px; }
.auth-header p { font-size: 0.9rem; color: var(--neutral-500); }
.auth-card .form-group { margin-bottom: 16px; }
.auth-footer { text-align: center; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--neutral-200); }
.auth-footer p { font-size: 0.88rem; color: var(--neutral-500); }
.auth-footer a { color: var(--green-600); font-weight: 600; text-decoration: none; }

/* ===== FLASH ===== */
.flash-message { padding: 14px 24px; font-size: 0.9rem; font-weight: 500; }
.flash-inner { max-width: 1280px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.flash-inner button { background: none; border: none; font-size: 1.3rem; cursor: pointer; color: inherit; opacity: 0.7; }
.flash-success { background: #e8f5e9; color: #1b5e20; }
.flash-error { background: #ffebee; color: #c62828; }
.flash-warning { background: #fff3e0; color: #e65100; }

/* ===== FOOTER ===== */
.footer { background: var(--green-900); color: #fff; padding: 72px 24px 32px; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo-text { color: #e8f5e9; }
.footer-brand .logo-text small { color: #81c784; }
.footer-brand p { font-size: 0.88rem; color: #c8e6c9; line-height: 1.7; margin-top: 16px; max-width: 30ch; }
.footer-col h4 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #fff; margin-bottom: 16px; }
.footer-col a { display: flex; align-items: center; gap: 8px; color: #c8e6c9; text-decoration: none; font-size: 0.86rem; padding: 5px 0; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; color: #c8e6c9; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; color: #c8e6c9; text-decoration: none; transition: all 0.2s; border: 1px solid rgba(255,255,255,0.08); }
.footer-social a:hover { background: var(--green-500); color: #fff; border-color: var(--green-500); }

/* ===== MOBILE NAV - MODERN ===== */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    flex-direction: column;
    background: linear-gradient(165deg, #1b5e20 0%, #2e7d32 40%, #388e3c 100%);
    overflow: hidden;
}
.mobile-nav::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 Q40 15 35 30 Q30 45 20 35 Q10 25 20 15 Q25 10 30 5Z' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E");
    background-size: 80px 80px;
    pointer-events: none;
}
.mobile-nav.open {
    display: flex;
    animation: mobileNavIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes mobileNavIn {
    from { opacity: 0; transform: translateX(100%); }
    to { opacity: 1; transform: translateX(0); }
}
.mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 12px;
    cursor: pointer;
    color: #fff;
    z-index: 10;
    transition: all 0.2s;
}
.mobile-close:hover {
    background: rgba(255,255,255,0.2);
    transform: rotate(90deg);
}
.mobile-nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 24px 28px 0;
    position: relative;
    z-index: 2;
}
.mobile-nav-logo img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: contain;
}
.mobile-nav-logo span {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}
.mobile-nav-links {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 28px;
    gap: 4px;
    position: relative;
    z-index: 2;
}
.mobile-nav-links a {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    padding: 14px 20px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    color: #fff;
    background: rgba(255,255,255,0.1);
    transform: translateX(6px);
}
.mobile-nav-footer {
    padding: 20px 28px 32px;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-auth {
    display: flex;
    gap: 10px;
}
.mobile-auth a {
    flex: 1;
    text-align: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}
.mob-login {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
}
.mob-login:hover { background: rgba(255,255,255,0.2); }
.mob-register {
    background: #fff;
    color: #1b5e20;
}
.mob-register:hover { background: #e8f5e9; }
.mobile-lang {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
}
.mobile-lang a {
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.15);
    text-decoration: none;
    transition: all 0.15s;
}
.mobile-lang a.active,
.mobile-lang a:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border-color: rgba(255,255,255,0.3);
}

/* ===== RESPONSIVE - TABLET ===== */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero-text p { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-visual { order: -1; }
    .hero-logo-big { width: 220px; height: 220px; }
    .hero-logo-big img { width: 130px; height: 130px; }
    .stats-card { grid-template-columns: repeat(2, 1fr); padding: 28px; }
    .projects-grid { grid-template-columns: repeat(2, 1fr); }
    .content-page { grid-template-columns: 1fr; }
    .content-sidebar { order: -1; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .opening-banner { flex-wrap: wrap; gap: 20px; }
}

/* ===== RESPONSIVE - PHONE ===== */
@media (max-width: 768px) {
    .nav { display: none; }
    .mobile-toggle { display: block; }
    .topbar-left { display: none; }
    .topbar { padding: 8px 0; }
    .topbar-right { width: 100%; justify-content: center; gap: 10px; }
    .header-inner { height: 60px; padding: 0 16px; }
    .logo-img { width: 42px; height: 42px; }
    .logo-text { font-size: 0.92rem; }

    .hero { min-height: auto; padding: 40px 0; }
    .hero-content { padding: 30px 16px; }
    .hero-text h1 { font-size: 1.8rem; }
    .hero-text p { font-size: 0.95rem; }
    .hero-logo-big { width: 160px; height: 160px; }
    .hero-logo-big img { width: 90px; height: 90px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-buttons .btn { width: 100%; justify-content: center; }

    .hero-stats { padding: 0 16px; }
    .stats-card { padding: 20px 16px; gap: 16px; grid-template-columns: repeat(2, 1fr); }
    .stat-number { font-size: 1.5rem; }
    .stat-label { font-size: 0.72rem; }

    .section { padding: 48px 16px; }
    .section-title { font-size: 1.5rem; }
    .section-header { margin-bottom: 32px; }

    .page-header { padding: 50px 16px 35px; }
    .page-header h1 { font-size: 1.6rem; }
    .page-header p { font-size: 0.9rem; }
    .page-header-icon { padding: 12px; }

    .projects-grid { grid-template-columns: 1fr; gap: 20px; }
    .partners-grid { grid-template-columns: 1fr; }

    .contact-grid { grid-template-columns: 1fr; gap: 28px; }
    .contact-form { padding: 24px; border-radius: 16px; }
    .form-row { grid-template-columns: 1fr; }

    .content-block { flex-direction: column; gap: 12px; padding: 20px; }
    .project-detail { padding: 24px; }
    .project-detail-header { flex-direction: column; align-items: flex-start; gap: 12px; }

    .opening-banner { padding: 20px 16px; flex-direction: column; text-align: center; gap: 16px; }
    .opening-days { flex-direction: column; gap: 8px; justify-content: center; }

    .cta-section { padding: 32px 16px 64px; }
    .cta-box { padding: 36px 20px; border-radius: 18px; }
    .cta-box h2 { font-size: 1.4rem; }
    .cta-box p { font-size: 0.92rem; }

    .footer { padding: 48px 16px 24px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }

    .map-section iframe { height: 250px; }

    .auth-card { padding: 28px 20px; }
    .sidebar-card { padding: 20px; }
}

/* ===== RESPONSIVE - SMALL PHONE ===== */
@media (max-width: 480px) {
    .header-inner { height: 54px; }
    .logo-img { width: 36px; height: 36px; }
    .logo-text { font-size: 0.82rem; }
    .logo-text small { font-size: 0.6rem; }

    .hero-text h1 { font-size: 1.5rem; }
    .hero-logo-big { width: 130px; height: 130px; }
    .hero-logo-big img { width: 70px; height: 70px; }

    .stats-card { grid-template-columns: 1fr 1fr; padding: 16px 12px; gap: 12px; }
    .stat-number { font-size: 1.3rem; }

    .section { padding: 36px 14px; }
    .section-title { font-size: 1.3rem; }

    .page-header { padding: 40px 14px 28px; }
    .page-header h1 { font-size: 1.35rem; }

    .contact-form { padding: 18px; }
    .btn { padding: 12px 20px; font-size: 0.85rem; }

    .partner-body { padding: 18px; }
    .project-body { padding: 18px 20px 22px; }

    .lang-btn { padding: 3px 8px; font-size: 0.68rem; }
    .auth-links a { padding: 4px 8px; font-size: 0.72rem; }
}

/* Hero logo sabit pozisyon */
.hero-content {
    position: relative !important;
}
.hero-logo-fixed {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
}
@media (max-width: 900px) {
    .hero-logo-fixed {
        position: static;
        transform: none;
        margin: 0 auto 12px;
        display: block;
        text-align: center;
    }
    .hero-content {
        flex-direction: column !important;
    }
}
/* Page Title Block */
.page-title-block {
    text-align: center !important;
    padding: 36px 20px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.page-title-block h2 {
    font-size: 1.8rem !important;
    font-weight: 800 !important;
    color: #1b5e20 !important;
    margin: 0 0 16px !important;
    letter-spacing: -0.02em;
}
.page-title-block p {
    font-size: 0.92rem !important;
    color: #3a5a3a !important;
    line-height: 1.8 !important;
    margin: 0 auto !important;
    max-width: 900px;
    padding: 24px 32px;
    text-align: center;
    background: linear-gradient(135deg, #f0f7f0 0%, #e8f5e9 100%);
    border-radius: 16px;
    border-left: 4px solid #43a047;
    box-shadow: 0 4px 16px rgba(46, 125, 50, 0.08);
    position: relative;
}
.page-title-block p::before {
    content: '\201C';
    position: absolute;
    top: 12px;
    left: 20px;
    font-size: 2.5rem;
    color: #a5d6a7;
    font-family: Georgia, serif;
    line-height: 1;
}

@media (max-width: 768px) {
    .page-title-block p {
        padding: 20px 20px 20px 28px !important;
        font-size: 0.85rem !important;
        max-width: 100%;
    }
    .page-title-block h2 {
        font-size: 1.4rem !important;
    }
}