/* ===== CSS VARIABLES ===== */
:root {
  --beige: #f5f5dc;
  --green: #4a7c59;
  --green-600: #5a8c69;
  --dark-green: #3a6b49;
  --ink: #1b2b21;
  --muted: #5b6b61;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(0,0,0,.12);
  --dark-beige: #dfdfc2;
}

/* ===== RESET & BASE STYLES ===== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--beige);
  line-height: 1.6;
}

/* ===== LAYOUT SYSTEM ===== */
.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.grid {
  display: grid;
  gap: 24px;
}

.flow > * + * {
  margin-top: 1rem;
}

/* ===== GRID LAYOUTS ===== */
.grid-2col {
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.grid-auto-240 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid-auto-280 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-auto-300 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.grid-auto-350 {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.grid-contact {
  grid-template-columns: 1.1fr .9fr;
  align-items: start;
}

.grid-faq {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245,245,220,.95);
  backdrop-filter: saturate(140%) blur(8px);
  box-shadow: 0 2px 8px rgba(74,124,89,.1);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--green);
}

.brand-logo {
  width: 48px;
  height: auto;
  display: block;
  max-width: 100%;
}

.brand-name {
  font-weight: 900;
  letter-spacing: 1px;
  font-size: 1.1rem;
}

.nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: var(--green);
}

.nav .cta {
  padding: .65rem 1.2rem;
  border-radius: 25px;
  background: var(--green);
  color: var(--white);
  box-shadow: var(--shadow);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: 0;
  cursor: pointer;
}

.burger span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: all 0.3s ease;
}

.header-contact-btn {
  color: var(--white) !important;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 70vh;
  display: grid;
  align-items: center;
  padding: 60px 0;
  background: var(--dark-beige);
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(74,124,89,.15), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(74,124,89,.1), transparent 50%);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(74,124,89,.08), rgba(74,124,89,0)),
    url('https://images.unsplash.com/photo-1585320806297-9794b3e4eeae?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
  opacity: .15;
}

.hero-content {
  z-index: 1;
}

.kicker {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--green);
}

.hero .lead {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--muted);
  max-width: 600px;
}

/* ===== PAGE HEADERS ===== */
.page-header {
  padding: 80px 0 64px 0;
  text-align: center;
}

/* Remove top padding from page headers on all pages except index */
body:not(.homepage) .page-header {
  padding: 20px 0 32px 0;
}

.page-header-container {
  max-width: 800px;
  margin: 0 auto;
}

.page-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.page-title-underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--green), var(--dark-green));
  margin: 0 auto 1.5rem auto;
  border-radius: 2px;
}

.page-lead {
  font-size: 1.25rem;
  color: var(--muted);
  font-weight: 400;
  margin-bottom: 0;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  color: var(--green);
  font-weight: 700;
  line-height: 1.2;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--green);
}

.lead {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--muted);
  text-align: center;
  margin-bottom: 2rem;
}
.footer-lead {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--white);
  text-align: center;
  margin-bottom: 2rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  border: 0;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: var(--dark-green);
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.btn-secondary {
  background: var(--white);
  color: var(--green);
  border: 2px solid var(--green);
}

.btn-secondary:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.btn-ghost {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}

.btn-ghost:hover {
  background: var(--green);
  color: var(--white);
}

.actions {
  display: flex;
  gap: 16px;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* ===== CARDS ===== */
.card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.card-spaced {
  margin-top: 32px;
}

.card-spaced-lg {
  margin-top: 48px;
  text-align: center;
}

.card-section {
  margin-top: 24px;
}

.card-section-first {
  margin-top: 32px;
}

/* ===== LAYOUT SECTIONS ===== */
.content-section {
  padding: 64px 0;
}

.content-section-tight {
  padding: 56px 0;
}

.bg-section {
  background: var(--dark-beige);
  padding: 64px 0;
}

.bg-section-white {
  background: var(--white);
  padding: 64px 0;
}

.split {
  display: grid;
  gap: 3rem;
  align-items: center;
  grid-template-columns: 1fr 1fr;
}

/* ===== IMAGES ===== */
.thumb img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

/* ===== SERVICES ===== */
.service {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  text-align: center;
}

.service h3 {
  color: var(--green);
  margin-bottom: 1rem;
}

.service .price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green);
  margin-top: 1rem;
}

/* ===== FORMS ===== */
.form {
  display: grid;
  gap: 1rem;
}

.form label {
  font-weight: 600;
  color: var(--green);
}

.form input,
.form textarea {
  padding: 12px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form input:focus,
.form textarea:focus {
  outline: 0;
  border-color: var(--green);
}

/* ===== GALLERY SYSTEM ===== */
.before-after-gallery {
  margin: 2rem 0;
}

.gallery-slider {
  position: relative;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 24px;
}

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.gallery-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.gallery-container {
  overflow: hidden;
  border-radius: 16px;
  position: relative;
  margin-bottom: 2rem;
}

.gallery-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.gallery-slide {
  flex: 0 0 100%;
  min-width: 100%;
  padding: 0 8px;
}

.before-after-comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  background: var(--white);
  padding: 24px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.comparison-item {
  text-align: center;
}

.comparison-item h3 {
  margin: 16px 0 8px 0;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.comparison-label {
  margin-top: 16px;
}

.comparison-label p {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
}

.comparison-item img {
  width: 100%;
  height: 320px;
  object-fit: contain;
  object-position: center;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  background: var(--white);
}

.comparison-item:hover img {
  transform: scale(1.02);
}

.comparison-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 320px;
  position: relative;
}

.divider-line {
  width: 2px;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--green), transparent);
  margin-bottom: 8px;
}

.divider-icon {
  display: none; /* Hidden - removing circle icon while keeping line divider */
}

.gallery-btn {
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.gallery-btn:hover {
  background: var(--dark-green);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.gallery-btn:disabled {
  background: var(--muted);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.gallery-counter {
  font-weight: 600;
  color: var(--green);
  font-size: 1.1rem;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1.5rem;
}

.gallery-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-dot.active {
  background: var(--green);
  transform: scale(1.2);
}

.gallery-loading {
  text-align: center;
  padding: 60px 20px;
  color: var(--green);
  font-size: 1.1rem;
}

.gallery-loading p {
  margin: 0;
}

/* ===== CTA SECTION ===== */

.gallery-btn:hover {
  background: var(--green);
  color: var(--white);
  transform: scale(1.1);
}

.gallery-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.gallery-counter {
  font-weight: 600;
  color: var(--green);
  min-width: 60px;
  text-align: center;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.gallery-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 0;
  background: #ddd;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.gallery-dot.active {
  background: var(--green);
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--dark-beige);
}

.cta-curved {
  background: var(--white);
  padding: 3rem 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow);
}

.cta-curved h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--green);
}

.cta-curved p {
  font-size: 1.125rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.contact-icon {
  font-weight: 600;
  color: var(--green);
}

.contact-item span:last-child {
  color: var(--muted);
}

/* ===== TIPS PAGE SPECIFIC ===== */
.tip-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.tip-list {
  margin: 1rem 0;
}

.faq-container {
  background: var(--dark-beige);
  padding: 3rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.faq-title {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--green);
}

.faq-item {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
}

.faq-question {
  color: var(--green);
  margin-bottom: 0.5rem;
}

.faq-answer {
  margin: 0;
  font-size: 0.9rem;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark-green);
  color: var(--white);
  padding: 3rem 0 1rem;
  margin-top: auto;
}

.footer-inner {
  display: grid;
  gap: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-title {
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-grid a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-grid a:hover {
  opacity: 1;
}

.business-info {
  margin-top: 1rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 1rem;
  text-align: center;
}

.footer-legal {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-separator {
  opacity: 0.5;
}

.footer-legal a {
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-legal a:hover {
  opacity: 1;
}

/* ===== SPACING UTILITIES ===== */
.mt-16 { margin-top: 16px; }
.mt-18 { margin-top: 18px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-1rem { margin-bottom: 1rem; }
.mb-4rem { margin-bottom: 4rem; }

/* ===== TEXT UTILITIES ===== */
.text-center { text-align: center; }

/* ===== CONTACT PAGE SPECIFIC ===== */
.contact-map {
  border: 0;
  border-radius: 12px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 860px) {
  .nav {
    position: fixed;
    inset: 64px 0 auto 0;
    background: var(--beige);
    padding: 16px 24px;
    display: none;
    box-shadow: var(--shadow);
  }
  
  .nav.open {
    display: grid;
    gap: 14px;
  }
  
  .burger {
    display: flex;
  }
  
  .split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .grid-contact {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .actions {
    justify-content: center;
  }
  
  .hero .lead {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .diensten-grid {
    grid-template-columns: 1fr !important;
  }
  
  .page-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .gallery-header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .gallery-btn {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }
  
  .comparison-item img {
    height: 250px;
  }
}

@media (max-width: 600px) {
  .before-after-comparison {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }
  
  .contact-map {
    height: 240px;
  }
  
  .form input,
  .form textarea {
    font-size: 16px; /* Prevents zoom on iOS */
  }
  
  .card {
    padding: 1.5rem;
  }
  
  .page-title {
    font-size: 2.5rem;
  }
  
  .hero .lead {
    font-size: 1rem;
    line-height: 1.5;
  }
  
  .comparison-divider {
    height: auto;
    padding: 16px 0;
    flex-direction: row;
    justify-content: center;
  }
  
  .divider-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--green), transparent);
  }
  
  .divider-icon {
    display: none; /* Hidden - removing circle icon while keeping line divider */
  }
  
  .comparison-item img {
    height: 250px;
    object-fit: contain;
    object-position: center;
    background: var(--white);
  }
  
  .gallery-btn {
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
  }
  
  .gallery-header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .faq-container {
    padding: 2rem;
    margin: 2rem 0;
  }
  
  .card {
    padding: 1.5rem;
  }
  
  .contact-info {
    grid-template-columns: 1fr;
  }
  
  .cta-curved {
    padding: 2rem 1rem;
  }
  
  .actions {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  
  .actions .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* ===== GALLERY SHOWCASE PAGE ===== */
.gallery-page .page-header {
  text-align: center;
  padding: 60px 0 40px;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 12px 24px;
  border: 2px solid var(--green);
  background: transparent;
  color: var(--green);
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--green);
  color: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.gallery-image-container {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.gallery-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image-container img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: white;
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-view-btn {
  background: var(--green);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.gallery-view-btn:hover {
  background: var(--dark-green);
}

/* Lightbox styles */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-info {
  background: white;
  padding: 20px;
  margin-top: 16px;
  border-radius: 8px;
  text-align: center;
  max-width: 500px;
}

.lightbox-info h3 {
  margin-bottom: 8px;
  color: var(--dark);
}

.lightbox-info p {
  color: var(--muted);
  margin: 0;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  transition: background 0.3s ease;
}

.lightbox-close:hover {
  background: rgba(0,0,0,0.8);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
}

.lightbox-prev,
.lightbox-next {
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  pointer-events: all;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(0,0,0,0.8);
}

.loading-state,
.no-images {
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
  grid-column: 1 / -1;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
  }
  
  .gallery-filters {
    gap: 8px;
  }
  
  .filter-btn {
    padding: 10px 18px;
    font-size: 13px;
  }
  
  .lightbox-content {
    padding: 20px;
  }
  
  .lightbox-image {
    max-height: 60vh;
  }
  
  .lightbox-nav {
    padding: 0 10px;
  }
  
  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}
