/* === BASIS === */
:root {
  --green-light: #baf2a3;
  --green-main: #7cd977;
  --green-dark: #407d3e;
  --gray-100: #f9f9f9;
  --gray-700: #444;
  --white: #fff;
  --font-body: 'Open Sans', sans-serif;
  --font-heading: 'Poppins', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  color: var(--gray-700);
  line-height: 1.6;
  background: var(--white);
}

/* === CONTAINER === */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* === HEADER === */
.site-header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  background: transparent;
  z-index: 10;
  transition: background 0.3s, box-shadow 0.3s;
}

.site-header.scrolled {
  background: rgba(255,255,255,0.95);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.logo img { height: 55px; }

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.main-nav a {
  font-weight: 600;
  color: var(--green-dark);
  text-decoration: none;
  transition: color 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--green-main);
}

/* === HERO === */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(90,160,90,0.35);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  animation: fadeInUp 1.5s ease forwards;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  margin-bottom: 0.5em;
}

.hero-content .lead {
  font-size: 1.2rem;
  margin-bottom: 1.5em;
}

.cta-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-note {
  margin-top: 1rem;
  color: var(--green-light);
  font-weight: 700;
}

/* === KNAPPER === */
.btn {
  display: inline-block;
  padding: 0.8em 1.6em;
  border-radius: 6px;
  background: var(--green-main);
  color: white;
  font-weight: 600;
  transition: background 0.3s;
}

.btn:hover {
  background: var(--green-dark);
}

.btn-secondary {
  background: var(--green-light);
  color: var(--green-dark);
}

.btn-secondary:hover {
  background: var(--green-main);
  color: white;
}

.btn-ghost {
  border: 2px solid var(--green-main);
  color: var(--green-main);
  background: transparent;
}

.btn-ghost:hover {
  background: var(--green-main);
  color: white;
}

/* === INTRO OG SEKTIONS === */
.intro {
  margin: 100px auto;
  text-align: center;
}

.intro h2 {
  color: var(--green-dark);
  font-family: var(--font-heading);
}

.callout {
  background: var(--green-main);
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.callout h2 {
  font-family: var(--font-heading);
}

.callout .btn {
  background: white;
  color: var(--green-dark);
}

.callout .btn:hover {
  background: var(--green-dark);
  color: white;
}

/* === OM OS === */
.about-page {
  padding-top: 120px;
  padding-bottom: 60px;
}

.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 80px;
}

.about-intro img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.values {
  text-align: center;
  margin-bottom: 80px;
}

.values h2 {
  color: var(--green-dark);
  margin-bottom: 40px;
  font-family: var(--font-heading);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.values-grid article {
  background: var(--gray-100);
  border-radius: 8px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.values-grid h3 {
  color: var(--green-main);
  margin-top: 0;
}

/* === FOOTER === */
.site-footer {
  background: var(--gray-100);
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #666;
}

/* === ANIMATIONER === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

.scroll-fade {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === RESPONSIVITET === */
@media (max-width: 768px) {
  .hero-content h1 { font-size: 2rem; }
  .about-intro { grid-template-columns: 1fr; }
  .intro { margin: 60px auto; }
  .main-nav ul { gap: 15px; }
}
/* === MOBIL MENU === */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--green-dark);
  cursor: pointer;
  z-index: 15;
}

/* Når skærmen er lille */
@media (max-width: 850px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 70px;
    right: 0;
    background: rgba(255,255,255,0.98);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 0 0 0 8px;
    width: 200px;
    transform: translateX(110%);
    transition: transform 0.3s ease;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .main-nav li {
    border-bottom: 1px solid #eee;
  }

  .main-nav a {
    display: block;
    padding: 15px;
    color: var(--green-dark);
  }

  .main-nav a:hover {
    background: var(--green-light);
  }
}.about-hero {
  position: relative;
  height: 70vh;
  overflow: hidden;
}

.about-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(90, 160, 90, 0.35);
}

.about-hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
}

.about-hero-text h1 {
  font-size: 2.8rem;
  margin-bottom: 0.5em;
  font-family: 'Poppins', sans-serif;
}

.about-hero-text p {
  font-size: 1.2rem;
}
/* ====== YDELSER-SEKTION ====== */
.ydelser-section {
  background: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.ydelser-section h2 {
  color: #2d6a4f;
  font-size: 2rem;
  margin-bottom: 10px;
}

.ydelser-intro {
  color: #4f7f63;
  font-size: 1.1rem;
  margin-bottom: 40px;
  font-style: italic;
}

.ydelser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.ydelse-card {
  background: #fdfdfd;
  border: 1px solid #cde5d0;
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.ydelse-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.ydelse-card h3 {
  color: #3fa15b;
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.ydelse-card ul {
  list-style: none;
  text-align: left;
  margin: 0 0 20px 0;
  padding: 0;
}

.ydelse-card ul li {
  margin-bottom: 8px;
}

.ydelse-card ul li::before {
  content: "🌱 ";
}

.price {
  font-weight: 700;
  color: #64c27a;
  font-size: 1.1rem;
}
/* Førstehjælpspakke fremhævning */
.ydelse-card.highlight {
  border: 2px solid #71C287;
  background: #f6fff8;
  box-shadow: 0 8px 25px rgba(113, 194, 135, 0.2);
  transform: scale(1.02);
}

.ydelse-card.highlight h3 {
  color: #2d6a4f;
}
.contact-banner {
  background: #4BAE4F;
  color: white;
  text-align: center;
  padding: 10px;
  font-weight: 600;
}
.thankyou-section {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(135deg, #f9fff9, #eaf8ea);
  color: #2d6a4f;
  border-radius: 20px;
}
.opening-hours {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  display: inline-block;
  text-align: left;
  border: 1px solid #c8e6c9;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  margin-bottom: 40px;
}
.opening-hours ul {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 1.8;
}
.contact-form, .contact-info {margin-bottom:20px;}

.contact-form{max-width:700px;margin:auto;}
/* HERO */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  animation: fadeInHero 1.5s ease forwards;
}

@keyframes fadeInHero {
  to { opacity: 1; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 64, 0, 0.45);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  padding: 2rem;
}

/* YDELSER GRID */
.ydelser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.ydelse-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  padding: 1.8rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ydelse-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.ydelse-card h3 {
  color: #216b37;
  margin-bottom: 0.8rem;
}

.ydelse-card.highlight {
  background: #f6fff8;
  border: 2px solid #71c287;
  box-shadow: 0 10px 30px rgba(113,194,135,0.25);
}

.price {
  margin-top: 1rem;
  font-weight: 600;
  color: #216b37;
}
/* HERO */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: fadeInHero 1.5s ease forwards;
}

@keyframes fadeInHero {
  to { opacity: 1; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 64, 0, 0.45);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  padding: 2rem;
}

/* YDELSER */
.ydelser-section {
  padding: 80px 20px;
  background: #ffffff;
  color: #2c3e2c;
}

.ydelser-section h2 {
  text-align: center;
  color: #2d6a4f;
  font-size: 2rem;
  margin-bottom: 15px;
}

.ydelser-section .intro {
  text-align: center;
  color: #3f684a;
  margin-bottom: 50px;
  font-style: italic;
}

.ydelser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.ydelse-card {
  background: #fdfdfd;
  border: 1px solid #d6e9d3;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ydelse-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.ydelse-card h3 {
  color: #1b6b2a;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.ydelse-card h4 {
  color: #4b7c4e;
  margin-top: 15px;
  margin-bottom: 5px;
  font-weight: 600;
}

.ydelse-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
}

.ydelse-card ul li::before {
  content: "🌿 ";
}

.ydelse-card.highlight {
  background: #f6fff8;
  border: 2px solid #76c97a;
  box-shadow: 0 8px 25px rgba(118, 201, 122, 0.25);
}

.price {
  color: #216b37;
  font-weight: 600;
}
/* KONTAKT */
.contact-section {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.contact-card {
  max-width: 600px;
  width: 100%;
  background: #f6fff8;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid #cde5d0;
}

.contact-card h2 {
  color: #1b6b2a;
  margin-bottom: 25px;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form label {
  font-weight: 600;
  color: #2d6a4f;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid #bcdcc0;
  border-radius: 8px;
  padding: 12px;
  font-size: 1rem;
  font-family: "Open Sans", sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #71C287;
  box-shadow: 0 0 0 2px rgba(113, 194, 135, 0.25);
}

.contact-info {
  margin-top: 40px;
  font-size: 0.95rem;
  color: #2d3a2d;
}

.contact-info a {
  color: #2d6a4f;
}

.contact-info ul {
  list-style: none;
  padding-left: 0;
}
/* Intro header */
.intro-header {
  text-align: left;
  margin-bottom: 1.25rem;
}
.intro-header h2 {
  margin: 0 0 .25rem 0;
}

/* Grid med målgrupper */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 980px) {
  .audience-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .audience-grid { grid-template-columns: 1fr; }
}

/* Kort */
.audience-card {
  background: #fff;
  border: 1px solid #e5efe6;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
  transition: transform .18s ease, box-shadow .18s ease;
}
.audience-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
}

.audience-media {
  aspect-ratio: 16/9;          /* pæn, ens højde */
  overflow: hidden;
  background: linear-gradient(180deg,#eef6f0, #e6f1ea);
}
.audience-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.audience-body { padding: .9rem 1rem 1.05rem; }
.audience-body h3 {
  margin: 0 0 .35rem 0;
  font-size: 1.05rem;
}
.audience-body p {
  margin: 0;
  line-height: 1.45;
}

/* CTA under grid */
.intro-cta { text-align: left; margin-top: 1rem; 
}

.audience-media {
  aspect-ratio: 4 / 3; /* lavere, mere kvadratisk form */
  max-width: 90%;
  margin: 0 auto; /* centrerer billedet i kortet */
  border-radius: 10px;
  overflow: hidden;
}
/* ===== YDELSER: side-hero ===== */
.page-hero{
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-hero-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}
.page-hero-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.25);
}
.page-hero-content{
  position: relative;
  color: #fff;
  padding: 44px 0;
  max-width: 900px;
}
.page-hero-content h1{ margin: 0 0 10px; }
.page-hero-content .lead{ margin: 0 0 14px; opacity: .95; }
.page-hero-content .hero-note{ margin: 10px 0 0; opacity: .9; }

/* ===== Baggrund + sektioner ===== */
.services-section{
  background: rgba(0,0,0,.02);
  padding: 46px 0;
}
.addons-section{
  background: rgba(0,0,0,.015);
  padding: 40px 0 56px;
}

.section-head{
  max-width: 900px;
  margin: 0 auto 18px;
  text-align: center;
}
.section-head p{ opacity: .9; margin: 0; }

/* ===== Pakker ===== */
.packages-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.package-card{
  position: relative;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 16px;
  padding: 18px 18px 16px;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
}

.package-top h3{ margin: 0 0 8px; font-size: 1.15rem; }
.package-sub{ margin: 0 0 12px; opacity: .9; }

.package-card h4{
  margin: 10px 0 8px;
  font-size: .95rem;
  opacity: .95;
}

.package-list{ margin: 0 0 14px; padding-left: 18px; line-height: 1.45; }
.package-list li{ margin: 6px 0; }

.price-box{
  margin-top: auto;
  background: rgba(0,0,0,.03);
  border: 1px solid rgba(0,0,0,.05);
  border-radius: 14px;
  padding: 12px;
}
.price-label{
  margin: 0 0 8px;
  font-size: .85rem;
  opacity: .8;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.price-list{ margin: 0; padding: 0; list-style: none; }
.price-list li{ margin: 6px 0; }
.price-big{ margin: 0; font-size: 1.05rem; }

.pay-note{ margin: 12px 0 0; font-size: .9rem; opacity: .85; }

.package-cta{
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.package-card.highlight{
  border-color: rgba(0,128,0,.25);
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}
.package-card .badge{
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(0,128,0,.12);
  color: rgba(0,70,0,.95);
  border: 1px solid rgba(0,128,0,.18);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
}

/* ===== Tilkøb ===== */
.addons-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.addon-card{
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 10px 22px rgba(0,0,0,.05);
}
.addon-card h4{ margin: 0 0 6px; font-size: 1rem; }
.addon-price{ margin: 0; font-weight: 700; }
.addon-note{ margin: 8px 0 0; font-size: .9rem; opacity: .85; }

.addons-footnote{
  max-width: 900px;
  margin: 16px auto 0;
  text-align: center;
  font-size: .95rem;
  opacity: .9;
}
.addons-cta{ margin-top: 18px; text-align: center; }

/* ===== Responsive ===== */
@media (max-width: 980px){
  .packages-grid{ grid-template-columns: 1fr; }
  .addons-grid{ grid-template-columns: 1fr; }
  .page-hero{ min-height: 62vh; }
}
/* ===== YDELSER ===== */

.services-section{
  padding: 70px 0;
  background: #f7f8f4;
}

.section-head{
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}

.section-head h2{
  margin-bottom: 12px;
}

.packages-grid{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
}

.package-card{
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,.08);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: .3s ease;
}

.package-card:hover{
  transform: translateY(-6px);
}

.package-image img{
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.package-content{
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.package-content h3{
  margin: 0 0 10px;
  font-size: 1.4rem;
}

.package-sub{
  margin-bottom: 18px;
  color: #555;
  line-height: 1.6;
}

.package-list{
  margin: 0 0 22px;
  padding-left: 18px;
  line-height: 1.7;
}

.price-box{
  background: #f3f5ec;
  border-radius: 16px;
  padding: 16px;
  margin-top: auto;
}

.price-label{
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 12px;
  color: #55704d;
}

.price-row{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.price-row:last-child{
  border-bottom: none;
}

.price-row strong{
  color: #234120;
  font-size: 1.05rem;
}

.pay-note{
  margin-top: 16px;
  font-size: .92rem;
  color: #666;
  line-height: 1.5;
}

.package-cta{
  display: flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.badge{
  position: absolute;
  top: 18px;
  right: 18px;
  background: #2f5d2d;
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
}

.highlight{
  border: 2px solid rgba(47,93,45,.15);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 980px){

  .packages-grid{
    grid-template-columns: 1fr;
  }

  .package-image img{
    height: 240px;
  }
}
.services-section{
  padding: 70px 0;
  background: #f7f8f4;
}

.packages-grid{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
}

.package-card{
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,.08);
  display: flex;
  flex-direction: column;
}

.package-image img{
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.package-content{
  padding: 24px;
}

.price-box{
  background: #f3f5ec;
  border-radius: 16px;
  padding: 16px;
  margin-top: 20px;
}

.price-row{
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.package-cta{
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.badge{
  position: absolute;
  top: 18px;
  right: 18px;
  background: #2f5d2d;
  color: white;
  padding: 8px 14px;
  border-radius: 999px;
}

@media (max-width: 980px){

  .packages-grid{
    grid-template-columns: 1fr;
  }

}
/* ===== YDELSES GALLERI ===== */

.services-gallery{
  padding: 80px 0;
  background: #f7f8f4;
}

.gallery-grid{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
}

.gallery-card{
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  display: block;
  box-shadow: 0 15px 40px rgba(0,0,0,.10);
  transition: .35s ease;
}

.gallery-card:hover{
  transform: translateY(-8px);
}

.gallery-card img{
  width: 100%;
  height: 620px;
  object-fit: cover;
  display: block;
}

.gallery-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(0,0,0,.72),
    rgba(0,0,0,.05));
    
  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  padding: 24px;
  color: #fff;
}

.gallery-overlay h3{
  margin: 0 0 6px;
  font-size: 1.4rem;
}

.gallery-overlay p{
  margin: 0;
  opacity: .9;
}

/* ===== MOBILE ===== */

@media (max-width: 980px){

  .gallery-grid{
    grid-template-columns: 1fr;
  }

  .gallery-card img{
    height: auto;
  }

}