
/* Alap tipográfia és színek (elegáns, zöld-arany paletta) */
:root {
  --green-700: #0F6D3B;
  --green-600: #187C47;
  --green-100: #E6F3EC;
  --gold-500: #D4A017;
  --text-900: #0B1A13;
  --text-700: #24362C;
  --bg: #ffffff;
  --muted: #6b7a71;
  --radius: 12px;
  --shadow: 0 8px 24px rgba(0,0,0,0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; color: var(--text-900); background: var(--bg); }

h1, h2, h3 { font-family: 'Playfair Display', Georgia, 'Times New Roman', serif; margin: 0 0 .5rem; color: var(--text-900); }
.section h2 { font-weight: 700; letter-spacing: .3px; }

.container { width: min(1100px, 92%); margin: 0 auto; }

.skip-link { position: absolute; left: -9999px; top: -9999px; }
.skip-link:focus { left: 1rem; top: 1rem; background: var(--gold-500); color: #000; padding: .5rem .75rem; border-radius: 6px; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,0.85); backdrop-filter: saturate(180%) blur(8px); border-bottom: 1px solid #e9eee9; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: .75rem 0; }
.brand { display: flex; align-items: center; gap: .75rem; }
.brand-logo { width: 40px; height: 40px; border-radius: 50%; box-shadow: var(--shadow); }
.brand-name { font-weight: 700; letter-spacing: .5px; }

.nav-toggle { display: none; }
.nav-menu { list-style: none; display: flex; gap: 1rem; padding: 0; margin: 0; }
.nav-menu a { text-decoration: none; color: var(--text-700); padding: .5rem .75rem; border-radius: 8px; }
.nav-menu a:hover { background: var(--green-100); color: var(--green-700); }

/* Buttons */
.btn { display: inline-block; padding: .7rem 1rem; border-radius: 12px; text-decoration: none; font-weight: 600; border: 1px solid transparent; transition: transform .05s ease, box-shadow .2s ease; }
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-primary { background: var(--green-700); color: #fff; border-color: var(--green-700); }
.btn-outline { color: var(--green-700); border-color: var(--green-700); background: transparent; }

/* Hero */
.hero { background: linear-gradient(135deg, var(--green-700), var(--green-600)); color: #fff; padding: 4rem 0; }
.hero-inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: 2rem; align-items: center; }
.hero-title { font-size: clamp(2rem, 3.2vw, 3rem); color: #fff; }
.hero-subtitle { font-size: 1.125rem; opacity: .95; }
.hero-media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }

/* Sections */
.section { padding: 3rem 0; }
.section-alt { background: #FAFBFA; }
.values { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; list-style: none; padding: 0; }
.values .value-title { color: var(--green-700); font-weight: 700; }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.gallery figure { margin: 0; background: #fff; border: 1px solid #e8eee9; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.gallery img { width: 100%; display: block; }
.gallery figcaption { padding: .75rem 1rem; color: var(--muted); }

/* FAQ */
.faq details { border: 1px solid #e8eee9; border-radius: var(--radius); padding: .75rem 1rem; background: #fff; box-shadow: var(--shadow); }
.faq details + details { margin-top: .75rem; }
.faq summary { cursor: pointer; font-weight: 600; color: var(--text-700); }
.faq p { margin: .5rem 0 0; color: var(--text-700); }

/* Contact */
.contact-form { max-width: 720px; background: #fff; border: 1px solid #e8eee9; border-radius: var(--radius); padding: 1rem; box-shadow: var(--shadow); }
.form-row { display: grid; gap: .5rem; margin-bottom: .75rem; }
label { font-weight: 600; color: var(--text-700); }
input[type="text"], input[type="email"], textarea { width: 100%; padding: .7rem .8rem; border: 1px solid #cfd8d3; border-radius: 10px; font-size: 1rem; }
input:focus, textarea:focus { outline: 2px solid var(--green-100); border-color: var(--green-700); }
.form-consent { display: flex; align-items: center; gap: .5rem; }
.form-actions { display: flex; align-items: center; gap: 1rem; }
.form-note { color: var(--muted); font-size: .9rem; }

/* Footer */
.site-footer { border-top: 1px solid #e9eee9; background: #fff; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; }
.footer-logo { width: 28px; height: 28px; border-radius: 50%; }

/* Mobil navigáció */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .nav-toggle { display: inline-block; background: transparent; border: 1px solid #dbe3de; padding: .4rem .6rem; border-radius: 8px; }
  .nav-menu { position: absolute; right: 1rem; top: 64px; background: #fff; border: 1px solid #e8eee9; border-radius: 10px; padding: .5rem; display: none; flex-direction: column; gap: .25rem; box-shadow: var(--shadow); }
  .nav-menu a { display: block; }
  .nav-menu.open { display: flex; }
}
