/* ============================================================
   Theatergroep HAAS.T! — Stylesheet
   ============================================================ */

:root {
  --green:        #3d8b37;
  --green-dark:   #2a6124;
  --green-light:  #eef6ed;
  --red:          #c0392b;
  --red-dark:     #96281b;
  --white:        #ffffff;
  --bg:           #f7faf6;
  --text:         #1c1c1c;
  --muted:        #4e6349;
  --border:       #cde3c9;
  --shadow:       rgba(42,97,36,.13);
  --font-head:    'Montserrat', sans-serif;
  --font-body:    'Open Sans', sans-serif;
  --radius:       10px;
  --radius-lg:    16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.7; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; transition: color .2s; }
a:hover { color: var(--red); }

/* ── SKIP LINK ── */
.skip-link {
  position: absolute; top: -48px; left: 0;
  background: var(--green-dark); color: var(--white);
  padding: 8px 16px; z-index: 10000; transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ── TOP BAR ── */
.top-bar {
  background: var(--red);
  color: var(--white);
  font-size: .82rem;
  padding: 7px 0;
}
.top-bar .inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.top-bar a { color: var(--white); }
.top-bar a:hover { color: rgba(255,255,255,.75); }
.top-bar-left { display: flex; gap: 20px; align-items: center; }
.top-bar-right { display: flex; gap: 10px; align-items: center; }
.top-bar-right a {
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  background: rgba(255,255,255,.18); border-radius: 6px;
  transition: background .2s;
}
.top-bar-right a:hover { background: rgba(255,255,255,.35); color: var(--white); }
.top-bar-right svg { width: 15px; height: 15px; fill: currentColor; }

/* ── HEADER ── */
header {
  background: var(--white);
  box-shadow: 0 2px 10px var(--shadow);
  position: sticky; top: 0; z-index: 900;
}
.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.logo-link img { height: 62px; width: auto; display: block; }
.logo-link:hover { opacity: .88; }

/* ── NAV ── */
nav ul { list-style: none; display: flex; gap: 2px; align-items: center; }
nav ul li { position: relative; }
nav ul li > a {
  display: flex; align-items: center; gap: 5px;
  padding: 9px 15px;
  font-family: var(--font-head); font-weight: 700;
  font-size: .82rem; text-transform: uppercase; letter-spacing: .06em;
  color: var(--text); border-radius: 7px;
  transition: background .18s, color .18s;
  white-space: nowrap;
}
nav ul li > a:hover,
nav ul li > a.active { background: var(--green); color: var(--white); }
nav ul li > a.nav-tickets { background: var(--red); color: var(--white); }
nav ul li > a.nav-tickets:hover { background: var(--red-dark); color: var(--white); }
nav ul li > a svg { width: 14px; height: 14px; fill: currentColor; flex-shrink: 0; }
nav ul li > a.active svg, nav ul li > a:hover svg { fill: var(--white); }
nav ul li > a.nav-tickets svg { fill: var(--white); }

/* Dropdown */
.dropdown {
  display: none; position: absolute; top: calc(100% + 6px); left: 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: 0 8px 24px var(--shadow);
  min-width: 200px; padding: 6px 0; z-index: 200;
}
nav ul li:hover .dropdown { display: block; }
.dropdown li a {
  padding: 9px 18px; font-size: .83rem; border-radius: 0; color: var(--text);
  display: block;
}
.dropdown li a:hover { background: var(--green-light); color: var(--green-dark); }

/* Hamburger */
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 6px;
}
.hamburger span {
  display: block; width: 25px; height: 3px;
  background: var(--green-dark); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── HERO SLIDER ── */
.hero { position: relative; height: 540px; overflow: hidden; background: var(--green-dark); }
.slide { display: none; position: absolute; inset: 0; }
.slide.active { display: block; }
.slide img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.48); }
.slide-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; color: var(--white); padding: 24px;
}
.slide-content h1 {
  font-family: var(--font-head); font-size: clamp(1.9rem,5vw,3.2rem);
  font-weight: 900; line-height: 1.1; margin-bottom: 14px;
  text-shadow: 0 2px 14px rgba(0,0,0,.55);
}
.slide-content p {
  font-size: clamp(.95rem,2.5vw,1.2rem); max-width: 580px;
  margin-bottom: 28px; text-shadow: 0 1px 6px rgba(0,0,0,.5);
}
.slide-btn-group { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.slide-prev, .slide-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.18); border: 2px solid rgba(255,255,255,.55);
  color: var(--white); width: 46px; height: 46px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s; z-index: 10; backdrop-filter: blur(4px);
}
.slide-prev:hover, .slide-next:hover { background: rgba(255,255,255,.35); }
.slide-prev { left: 18px; }
.slide-next { right: 18px; }
.slide-prev svg, .slide-next svg { width: 20px; height: 20px; fill: var(--white); }
.slide-dots {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.slide-dots button {
  width: 10px; height: 10px; border-radius: 50%; border: none;
  background: rgba(255,255,255,.45); cursor: pointer;
  transition: background .2s, transform .2s; padding: 0;
}
.slide-dots button.active { background: var(--white); transform: scale(1.3); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 50px;
  font-family: var(--font-head); font-weight: 700; font-size: .88rem;
  text-transform: uppercase; letter-spacing: .06em;
  border: 2px solid transparent;
  transition: transform .18s, box-shadow .18s, background .18s, color .18s;
  cursor: pointer; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,.2); }
.btn svg { width: 16px; height: 16px; fill: currentColor; }
.btn-primary { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); color: var(--white); }
.btn-green { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-green:hover { background: var(--green-dark); border-color: var(--green-dark); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.7); }
.btn-outline:hover { background: rgba(255,255,255,.15); color: var(--white); }
.btn-outline-green { background: transparent; color: var(--green); border-color: var(--green); }
.btn-outline-green:hover { background: var(--green); color: var(--white); }
.btn-sm { padding: 8px 18px; font-size: .8rem; }

/* ── SECTION ── */
section { padding: 76px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-tag {
  display: inline-block; background: var(--green-light); color: var(--green-dark);
  font-family: var(--font-head); font-weight: 700; font-size: .75rem;
  text-transform: uppercase; letter-spacing: .12em;
  padding: 5px 14px; border-radius: 50px; margin-bottom: 12px;
}
.section-head { text-align: center; margin-bottom: 52px; }
.section-head h2 {
  font-family: var(--font-head); font-size: clamp(1.7rem,4vw,2.6rem);
  font-weight: 900; color: var(--green-dark); line-height: 1.15; margin-bottom: 14px;
}
.section-head p { color: var(--muted); font-size: 1.05rem; max-width: 580px; margin: 0 auto; }
.divider { width: 52px; height: 4px; background: var(--red); border-radius: 2px; margin: 14px auto 0; }

/* ── WELCOME SECTION ── */
.welcome { background: var(--bg); }
.welcome-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.welcome-text h2 {
  font-family: var(--font-head); font-size: clamp(1.6rem,3.5vw,2.1rem);
  font-weight: 900; color: var(--green-dark); line-height: 1.2; margin-bottom: 18px;
}
.welcome-text p { color: var(--muted); margin-bottom: 14px; font-size: 1rem; }
.welcome-text .btn { margin-top: 8px; }
.welcome-images { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.welcome-images img { border-radius: var(--radius); object-fit: cover; width: 100%; height: 200px; transition: transform .35s; }
.welcome-images img:first-child { grid-column: 1/-1; height: 240px; }
.welcome-images img:hover { transform: scale(1.03); }

/* ── SHOWS / CARDS ── */
.cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 3px 16px var(--shadow);
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 10px 32px var(--shadow); }
.card-img { position: relative; overflow: hidden; height: 210px; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.card:hover .card-img img { transform: scale(1.05); }
.card-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--red); color: var(--white);
  font-family: var(--font-head); font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em;
  padding: 4px 11px; border-radius: 50px;
}
.card-badge.green { background: var(--green); }
.card-body { padding: 22px; }
.card-body h3 { font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; color: var(--green-dark); margin-bottom: 8px; }
.card-body p { color: var(--muted); font-size: .92rem; margin-bottom: 14px; }
.card-meta { display: flex; flex-wrap: wrap; gap: 14px; font-size: .84rem; color: var(--muted); margin-bottom: 16px; }
.card-meta span { display: flex; align-items: center; gap: 5px; }
.card-meta svg { width: 14px; height: 14px; fill: var(--green); flex-shrink: 0; }

/* ── GALLERY ── */
.gallery { background: var(--green-light); }
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.gallery-item { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; cursor: pointer; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(42,97,36,.45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s;
}
.gallery-overlay svg { width: 36px; height: 36px; fill: var(--white); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ── GREEN STRIP ── */
.green-strip { background: var(--green); padding: 68px 0; }
.green-strip-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.green-strip h2 { font-family: var(--font-head); font-size: clamp(1.6rem,3vw,2.1rem); font-weight: 900; color: var(--white); margin-bottom: 16px; }
.green-strip p { color: rgba(255,255,255,.85); font-size: 1rem; margin-bottom: 12px; }
.green-strip .btn { margin-top: 8px; }
.strip-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 8px 28px rgba(0,0,0,.28); }
.strip-img img { width: 100%; height: 340px; object-fit: cover; }

/* ── CTA ── */
.cta { background: var(--red); padding: 68px 0; text-align: center; }
.cta h2 { font-family: var(--font-head); font-size: clamp(1.7rem,4vw,2.4rem); font-weight: 900; color: var(--white); margin-bottom: 14px; }
.cta p { color: rgba(255,255,255,.85); font-size: 1.05rem; max-width: 560px; margin: 0 auto 30px; }
.btn-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── PAGE HERO ── */
.page-hero { background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%); padding: 70px 0 56px; text-align: center; color: var(--white); }
.page-hero h1 { font-family: var(--font-head); font-size: clamp(1.9rem,5vw,2.8rem); font-weight: 900; margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,.85); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }

/* ── BREADCRUMB ── */
.breadcrumb { background: var(--green-light); padding: 11px 0; font-size: .84rem; color: var(--muted); }
.breadcrumb a { color: var(--green); }
.breadcrumb span { margin: 0 7px; }

/* ── PAGE CONTENT ── */
.page-content { padding: 68px 0; }
.page-content h2 { font-family: var(--font-head); font-size: 1.65rem; font-weight: 800; color: var(--green-dark); margin-bottom: 14px; }
.page-content h3 { font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; color: var(--green-dark); margin: 26px 0 10px; }
.page-content p { color: var(--muted); margin-bottom: 14px; }
.page-content ul { color: var(--muted); padding-left: 20px; margin-bottom: 14px; }
.page-content ul li { margin-bottom: 7px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }

/* ── INFO BOX ── */
.info-box { background: var(--green-light); border-left: 4px solid var(--green); border-radius: 0 var(--radius) var(--radius) 0; padding: 18px 22px; margin-bottom: 22px; }
.info-box h4 { font-family: var(--font-head); font-weight: 700; color: var(--green-dark); margin-bottom: 5px; font-size: .95rem; display: flex; align-items: center; gap: 7px; }
.info-box h4 svg { width: 16px; height: 16px; fill: var(--green); }
.info-box p { color: var(--muted); font-size: .92rem; margin: 0; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-detail { display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start; }
.contact-detail .icon { width: 40px; height: 40px; border-radius: 10px; background: var(--green-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail .icon svg { width: 18px; height: 18px; fill: var(--green); }
.contact-detail h4 { font-family: var(--font-head); font-weight: 700; color: var(--green-dark); font-size: .9rem; margin-bottom: 3px; }
.contact-detail p, .contact-detail a { color: var(--muted); font-size: .92rem; }

/* ── FORMS ── */
.form-wrap { background: var(--bg); border-radius: var(--radius-lg); padding: 36px; border: 1px solid var(--border); }
.form-wrap h2 { font-family: var(--font-head); font-size: 1.45rem; font-weight: 800; color: var(--green-dark); margin-bottom: 22px; display: flex; align-items: center; gap: 9px; }
.form-wrap h2 svg { width: 20px; height: 20px; fill: var(--green); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: .88rem; color: var(--text); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 11px 15px;
  border: 2px solid var(--border); border-radius: var(--radius);
  font-family: var(--font-body); font-size: .93rem; color: var(--text);
  background: var(--white); outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(61,139,55,.14);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-check { display: flex; align-items: flex-start; gap: 9px; }
.form-check input[type="checkbox"] { width: auto; margin-top: 3px; }
.form-check label { font-size: .88rem; color: var(--muted); cursor: pointer; }
.form-success { background: var(--green-light); border: 1px solid var(--green); border-radius: var(--radius); padding: 16px 20px; color: var(--green-dark); font-weight: 600; display: none; align-items: center; gap: 9px; margin-bottom: 16px; }
.form-success.visible { display: flex; }
.form-success svg { width: 18px; height: 18px; fill: var(--green); flex-shrink: 0; }

/* ── FAQ ── */
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; }
.faq-q { padding: 17px 22px; font-family: var(--font-head); font-weight: 700; font-size: .95rem; color: var(--green-dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; background: var(--white); transition: background .18s; }
.faq-q:hover { background: var(--green-light); }
.faq-q.open { background: var(--green-light); }
.faq-icon { width: 18px; height: 18px; fill: var(--green); transition: transform .28s; flex-shrink: 0; }
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 22px 17px; color: var(--muted); font-size: .93rem; border-top: 1px solid var(--border); }
.faq-a.open { display: block; padding-top: 15px; }

/* ── TEAM ── */
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.team-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px 16px; text-align: center; transition: transform .25s; }
.team-card:hover { transform: translateY(-3px); }
.team-avatar { width: 72px; height: 72px; border-radius: 50%; background: var(--green-light); margin: 0 auto 12px; display: flex; align-items: center; justify-content: center; border: 2px solid var(--green); }
.team-avatar svg { width: 32px; height: 32px; fill: var(--green); }
.team-card h3 { font-family: var(--font-head); font-weight: 800; color: var(--green-dark); font-size: .9rem; margin-bottom: 4px; }
.team-card p { color: var(--muted); font-size: .82rem; }

/* ── TIMELINE ── */
.timeline { padding-left: 36px; position: relative; }
.timeline::before { content:''; position: absolute; left: 12px; top: 0; bottom: 0; width: 2px; background: var(--border); }
.timeline-item { position: relative; margin-bottom: 36px; }
.timeline-item::before { content:''; position: absolute; left: -30px; top: 5px; width: 14px; height: 14px; border-radius: 50%; background: var(--green); border: 3px solid var(--white); box-shadow: 0 0 0 2px var(--green); }
.timeline-year { font-family: var(--font-head); font-weight: 800; color: var(--green); font-size: .8rem; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 3px; }
.timeline-item h3 { font-family: var(--font-head); font-weight: 700; color: var(--green-dark); margin-bottom: 5px; }
.timeline-item p { color: var(--muted); font-size: .92rem; }

/* ── KAARTVERKOOP ── */
.ticket-card { background: var(--white); border: 2px solid var(--border); border-radius: var(--radius-lg); padding: 32px; margin-bottom: 26px; transition: border-color .2s, box-shadow .2s; }
.ticket-card:hover { border-color: var(--green); box-shadow: 0 6px 28px var(--shadow); }
.ticket-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; flex-wrap: wrap; margin-bottom: 18px; }
.ticket-header h2 { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; color: var(--green-dark); }
.price-badge { background: var(--red); color: var(--white); font-family: var(--font-head); font-weight: 900; font-size: 1.3rem; padding: 7px 18px; border-radius: 50px; white-space: nowrap; }
.ticket-meta { display: flex; flex-wrap: wrap; gap: 18px; margin-bottom: 16px; }
.ticket-meta span { display: flex; align-items: center; gap: 6px; color: var(--muted); font-size: .9rem; }
.ticket-meta svg { width: 14px; height: 14px; fill: var(--green); }
.price-table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
.price-table th { background: var(--green-dark); color: var(--white); padding: 10px 15px; text-align: left; font-family: var(--font-head); font-size: .8rem; text-transform: uppercase; }
.price-table td { padding: 10px 15px; border-bottom: 1px solid var(--border); font-size: .92rem; color: var(--muted); }
.price-table tr:last-child td { border: none; }

/* ── EMPTY STATE ── */
.empty-state { text-align: center; padding: 60px 24px; color: var(--muted); }
.empty-state svg { width: 56px; height: 56px; fill: var(--border); margin: 0 auto 16px; }
.empty-state h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; color: var(--green-dark); margin-bottom: 8px; }
.empty-state p { font-size: .95rem; max-width: 360px; margin: 0 auto; }

/* ── NOTICE BANNER ── */
.notice { background: var(--green); color: var(--white); text-align: center; padding: 11px 24px; font-size: .92rem; font-weight: 600; }
.notice a { color: var(--white); text-decoration: underline; }

/* ── FOOTER ── */
footer { background: var(--green-dark); color: #a8d5a2; padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 40px; }
.footer-brand img { height: 60px; filter: brightness(0) invert(1); margin-bottom: 14px; }
.footer-brand p { font-size: .88rem; color: #8ec48a; line-height: 1.7; margin-bottom: 16px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.footer-social a:hover { background: var(--red); color: var(--white); }
.footer-social svg { width: 16px; height: 16px; fill: var(--white); }
.footer-col h4 { font-family: var(--font-head); font-weight: 800; color: var(--white); font-size: .9rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: #8ec48a; font-size: .88rem; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 18px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: .82rem; color: #6a9e65; }
.footer-bottom a { color: #8ec48a; }
.footer-bottom a:hover { color: var(--white); }

/* ── LIGHTBOX ── */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.92); z-index: 9999; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 86vh; border-radius: 8px; }
.lightbox-close { position: absolute; top: 18px; right: 22px; background: none; border: none; color: var(--white); cursor: pointer; }
.lightbox-close svg { width: 32px; height: 32px; fill: var(--white); }

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

/* ── UTILS ── */
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.bg-light { background: var(--bg); }

/* ──────────────────────────────────────────
   ADMIN STYLES
────────────────────────────────────────── */
.admin-body { background: #f0f4ef; min-height: 100vh; display: flex; flex-direction: column; }

/* Admin header */
.admin-header { background: var(--green-dark); color: var(--white); padding: 0 24px; height: 60px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 8px rgba(0,0,0,.25); }
.admin-header .a-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 800; font-size: 1rem; color: var(--white); }
.admin-header .a-logo img { height: 36px; filter: brightness(0) invert(1); }
.admin-header .a-actions { display: flex; align-items: center; gap: 12px; }
.admin-header .a-actions a, .admin-header .a-actions button { color: rgba(255,255,255,.75); font-size: .85rem; background: none; border: none; cursor: pointer; display: flex; align-items: center; gap: 5px; transition: color .2s; font-family: var(--font-body); }
.admin-header .a-actions a:hover, .admin-header .a-actions button:hover { color: var(--white); }
.admin-header .a-actions svg { width: 15px; height: 15px; fill: currentColor; }

/* Admin layout */
.admin-layout { display: flex; flex: 1; }
.admin-sidebar { width: 220px; background: var(--white); border-right: 1px solid var(--border); flex-shrink: 0; padding: 24px 0; }
.admin-sidebar nav a {
  display: flex; align-items: center; gap: 10px; padding: 11px 20px;
  font-family: var(--font-head); font-weight: 700; font-size: .82rem;
  text-transform: uppercase; letter-spacing: .05em; color: var(--muted);
  transition: background .15s, color .15s; border-left: 3px solid transparent;
}
.admin-sidebar nav a svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }
.admin-sidebar nav a:hover { background: var(--green-light); color: var(--green-dark); border-left-color: var(--green); }
.admin-sidebar nav a.active { background: var(--green-light); color: var(--green-dark); border-left-color: var(--green); }
.admin-sidebar .nav-section { padding: 18px 20px 6px; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--border); font-family: var(--font-head); font-weight: 700; }

/* Admin content */
.admin-main { flex: 1; padding: 32px; overflow-x: auto; }
.admin-page-title { font-family: var(--font-head); font-size: 1.5rem; font-weight: 900; color: var(--green-dark); margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
.admin-page-title svg { width: 22px; height: 22px; fill: var(--green); }
.admin-subtitle { color: var(--muted); font-size: .9rem; margin-bottom: 28px; }

/* Admin stat cards */
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-bottom: 32px; }
.stat-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px 24px; }
.stat-card .s-label { font-size: .8rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.stat-card .s-label svg { width: 14px; height: 14px; fill: var(--green); }
.stat-card .s-value { font-family: var(--font-head); font-size: 2rem; font-weight: 900; color: var(--green-dark); }

/* Admin table */
.table-wrap { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.table-toolbar { padding: 16px 20px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.table-toolbar h3 { font-family: var(--font-head); font-weight: 800; font-size: 1rem; color: var(--green-dark); display: flex; align-items: center; gap: 7px; }
.table-toolbar h3 svg { width: 16px; height: 16px; fill: var(--green); }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { background: var(--bg); font-family: var(--font-head); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); padding: 11px 16px; text-align: left; border-bottom: 1px solid var(--border); white-space: nowrap; }
.admin-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); font-size: .88rem; color: var(--text); vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--bg); }
.admin-table .actions { display: flex; gap: 6px; }
.admin-table .actions button { background: none; border: none; cursor: pointer; padding: 5px; border-radius: 6px; transition: background .15s; display: flex; }
.admin-table .actions button svg { width: 15px; height: 15px; }
.admin-table .actions .btn-edit svg { fill: var(--green); }
.admin-table .actions .btn-edit:hover { background: var(--green-light); }
.admin-table .actions .btn-del svg { fill: var(--red); }
.admin-table .actions .btn-del:hover { background: #fde8e6; }
.badge { display: inline-block; padding: 3px 10px; border-radius: 50px; font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.badge-green { background: #dff0dc; color: var(--green-dark); }
.badge-red { background: #fde8e6; color: var(--red-dark); }
.badge-orange { background: #fef3e2; color: #b45309; }

/* Admin modal */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 500; align-items: center; justify-content: center; }
.modal-overlay.open { display: flex; }
.modal { background: var(--white); border-radius: var(--radius-lg); padding: 32px; width: 100%; max-width: 580px; max-height: 90vh; overflow-y: auto; box-shadow: 0 16px 48px rgba(0,0,0,.3); }
.modal h2 { font-family: var(--font-head); font-size: 1.2rem; font-weight: 800; color: var(--green-dark); margin-bottom: 22px; display: flex; justify-content: space-between; align-items: center; }
.modal-close { background: none; border: none; cursor: pointer; color: var(--muted); }
.modal-close svg { width: 20px; height: 20px; fill: currentColor; }
.modal .btn { width: 100%; justify-content: center; margin-top: 8px; }

/* Admin login */
.login-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--bg); }
.login-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 44px 40px; width: 100%; max-width: 400px; box-shadow: 0 8px 32px var(--shadow); }
.login-card .login-logo { text-align: center; margin-bottom: 28px; }
.login-card .login-logo img { height: 68px; margin: 0 auto 12px; }
.login-card .login-logo h1 { font-family: var(--font-head); font-size: 1rem; font-weight: 800; color: var(--green-dark); }
.login-card .login-logo p { color: var(--muted); font-size: .85rem; }
.login-error { background: #fde8e6; border: 1px solid var(--red); color: var(--red-dark); border-radius: var(--radius); padding: 11px 15px; font-size: .88rem; display: none; margin-bottom: 16px; }
.login-error.visible { display: block; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .cards-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); border-top: 1px solid var(--border); box-shadow: 0 8px 18px var(--shadow); padding: 10px 0; z-index: 200; }
  nav.open { display: block; }
  nav ul { flex-direction: column; gap: 0; }
  nav ul li > a { border-radius: 0; padding: 12px 22px; }
  .dropdown { display: none !important; }
  .header-inner { position: relative; }

  .welcome-grid { grid-template-columns: 1fr; gap: 32px; }
  .green-strip-inner { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .cards-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .hero { height: 400px; }
  .form-row { grid-template-columns: 1fr; }
  .top-bar-left { display: none; }
  .admin-sidebar { display: none; }
  .admin-layout { flex-direction: column; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .stats-row { grid-template-columns: 1fr 1fr; }
  section { padding: 52px 0; }
}
