@font-face {
  font-family: "Nunito";
  src: url("fonts/Nunito.ttf") 
    format("opentype");
  font-weight: 125 950;
  font-stretch: 75% 125%;
}

@font-face {
  font-family: "Playfair Display";
  src: url("fonts/PlayfairDisplay.ttf") 
    format("opentype");
  font-weight: 125 950;
  font-stretch: 75% 125%;
}


*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

:root {
  --petrol-900: #1C343A;
  --petrol-800: #24434B;
  --petrol-700: #2C525B;
  --petrol-600: #2F5761;
  --petrol-500: #3D6E79;
  --petrol-400: #558A95;
  --petrol-300: #7AABB4;
  --petrol-200: #A8CCD3;
  --petrol-100: #D1E5E9;
  --petrol-50: #EAF2F4;

  --blue-800: #2A6A96;
  --blue-700: #347FAF;
  --blue-600: #4192C4;
  --blue-500: #5BA4CF;
  --blue-400: #7BB8DA;
  --blue-300: #9ECCE5;
  --blue-200: #C2DFF0;
  --blue-100: #E0EFF7;
  --blue-50: #EFF7FB;

  --sand-800: #8A7560;
  --sand-700: #A08B73;
  --sand-600: #B8A48C;
  --sand-500: #CCBAA5;
  --sand-400: #DCCEBB;
  --sand-300: #E8DDD0;
  --sand-200: #F2E6D5;
  --sand-100: #F7F0E6;
  --sand-50: #FBF8F4;

  --ice-600: #8BB0B8;
  --ice-500: #A1C2C9;
  --ice-400: #B5D0D6;
  --ice-300: #C3D8DD;
  --ice-200: #D6E5E9;
  --ice-100: #E8F0F2;
  --ice-50: #F3F8F9;

  --warm-50: #FBF8F4;
  --warm-100: #F7F0E6;
  --warm-200: #EDE3D5;
  --warm-300: #DFD3C3;

  --white: #ffffff;
  --gray-50: #FAFAF9;
  --gray-100: #F5F4F2;
  --gray-200: #E8E6E2;
  --gray-300: #D5D2CD;
  --gray-500: #6E6D68;
  --gray-600: #555350;
  --gray-700: #3D3C38;
  --gray-800: #2F2F2C;

  --shadow-sm: 0 1px 3px rgba(44, 82, 91, .06);
  --shadow: 0 2px 12px rgba(44, 82, 91, .08);
  --shadow-md: 0 4px 20px rgba(44, 82, 91, .11);
  --shadow-lg: 0 8px 36px rgba(44, 82, 91, .14);
  --shadow-glow: 0 4px 24px rgba(65, 146, 196, .18);

  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --transition: all .35s cubic-bezier(.4, 0, .2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px
}

body {
  font-family: 'Nunito', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--gray-800);
  background: var(--sand-50);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block
}

a {
  color: var(--petrol-600);
  text-decoration: none;
  transition: var(--transition)
}

a:hover {
  color: var(--blue-600)
}

ul {
  list-style: none
}

h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', 'Georgia', serif;
  line-height: 1.3;
  color: var(--petrol-700);
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px
}

.section {
  padding: 72px 0
}

.section-title {
  text-align: center;
  margin-bottom: 48px;
  padding: 0 0.75rem;
}

.section-title h2 {
  font-size: 2.1rem;
  margin-bottom: 12px;
  position: relative;
  display: inline-block
}

.section-title h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-600), var(--blue-400));
  border-radius: 2px;
  margin: 12px auto 0;
}

.section-title p {
  color: var(--gray-600);
  font-size: 1.1rem;
  max-width: 720px;
  margin: 0 auto
}

.section-title ul {
  color: var(--gray-600);
  font-size: 1.1rem;
  max-width: 360px;
  text-align: left;
  margin: 8px auto
}

.section-subtitle {
  margin-bottom: 32px
}

.section-subtitle h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.section-subtitle p {
  color: var(--gray-600);
  font-size: 1.1rem;
  max-width: 720px;
  margin: 0 auto
}

.map-container iframe {
  width: 100%;
  height: 420px;
}


.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
  letter-spacing: .3px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--petrol-700), var(--petrol-600));
  color: var(--white);
  box-shadow: 0 4px 14px rgba(44, 82, 91, .3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-600));
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(65, 146, 196, .3);
}

.btn-outline {
  border: 2px solid var(--petrol-600);
  color: var(--petrol-700);
  background: transparent;
}

.btn-outline:hover {
  background: var(--petrol-600);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 4px 14px rgba(44, 82, 91, .25);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(251, 248, 244, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(44, 82, 91, .08);
  padding: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none
}

.logo img {
  height: 55px;
  width: auto;
  border-radius: 12px;
  object-fit: contain
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2
}

.logo-text .brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--petrol-700);
}

.logo-text .tagline {
  font-size: .78rem;
  color: var(--blue-600);
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 4px;
  align-items: center
}

.nav-links a {
  padding: 9px 18px;
  border-radius: 10px;
  font-weight: 600;
  font-size: .93rem;
  color: var(--gray-700);
  transition: var(--transition);
  font-family: 'Nunito', sans-serif;
}

.nav-links a:hover {
  background: var(--ice-100);
  color: var(--petrol-700)
}

.nav-links a.active {
  background: linear-gradient(135deg, var(--petrol-700), var(--petrol-600));
  color: var(--white);
  box-shadow: 0 2px 8px rgba(44, 82, 91, .2);
}


.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--petrol-700);
  border-radius: 2px;
  transition: var(--transition)
}

/* Mobile nav */
@media(max-width:900px) {
  .hamburger {
    display: flex
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(251, 248, 244, .97);
    backdrop-filter: blur(16px);
    border-bottom: 3px solid var(--blue-400);
    padding: 16px 20px;
    gap: 4px;
    box-shadow: var(--shadow-md);
  }

  .nav-links.open {
    display: flex
  }

  .nav-links a {
    width: 100%;
    padding: 12px 16px
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    linear-gradient(170deg,
      rgba(28, 52, 58, .70) 0%,
      rgba(44, 82, 91, .52) 40%,
      rgba(242, 230, 213, .22) 100%),
      url("images/banner.jpg") center/cover no-repeat;
  padding: 110px 0 90px;
  overflow: hidden;
  text-align: center;
  min-height: 480px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(65, 146, 196, .08) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(transparent, var(--sand-50));
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 18px;
  position: relative;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(28, 52, 58, .4);
}

.hero h1 span {
  color: var(--sand-200);
  position: relative;
}

.important{
  position: relative
}

.hero h1 span::after, .important::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--blue-500);
  border-radius: 2px;
}

.hero p {
  font-size: 1.18rem;
  color: rgba(255, 255, 255, .92);
  max-width: 640px;
  margin: 0 auto 34px;
  position: relative;
  text-shadow: 0 1px 8px rgba(28, 52, 58, .35);
}

.hero .btn-outline {
  border-color: rgba(255, 255, 255, .7);
  color: var(--white)
}

.hero .btn-outline:hover {
  background: var(--white);
  color: var(--petrol-700);
  border-color: var(--white)
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative
}

.card-grid {
  display: grid;
  justify-content:center;
  grid-template-columns: repeat(auto-fill, min(90%,420px));
  gap: 24px;
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 0;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(44, 82, 91, .06);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--petrol-600), var(--blue-500));
  opacity: 0;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(65, 146, 196, .12);
}

.card:hover::before {
  opacity: 1
}

.card-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ice-100), var(--sand-100));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 2rem;
  box-shadow: 0 4px 12px rgba(44, 82, 91, .06);
}

/* Card with image */
.card-img {
  width: calc(100% + 56px);
  height: 240px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  object-fit: cover;
  margin: -32px -28px 12px -28px;
  display: block;
}

.card-img+.card-icon {
  display: none
}

.card h3 {
  font-size: 1.18rem;
  margin: 0 12px 16px;
  color: var(--petrol-700)
}

.card p {
  color: var(--gray-600);
  font-size: .93rem;
  flex: 1;
  margin: 0 12px;
  line-height: 1.7
}

.card .btn {
  margin-top: auto;
  padding: 10px 24px;
  font-size: .88rem
}


a.card {
  text-decoration: none;
  color: inherit
}

a.card:hover {
  color: inherit
}


.price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.price-table thead {
  background: linear-gradient(135deg, var(--petrol-800), var(--petrol-700));
  color: var(--white);
}

.price-table th {
  padding: 18px 22px;
  text-align: left;
  font-weight: 700;
  font-size: .95rem;
  font-family: 'Nunito', sans-serif
}

.price-table td {
  padding: 16px 22px;
  border-bottom: 1px solid var(--warm-200);
  font-size: .93rem
}

.price-table tbody tr {
  background: var(--white);
  transition: var(--transition)
}

.price-table tbody tr:hover {
  background: var(--ice-50)
}

.price-table tbody tr:last-child td {
  border-bottom: none
}

.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 38px 28px 80px;
  box-shadow: var(--shadow);
  border: 2px solid var(--warm-200);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.price-card .btn {
  bottom: 0;
  position: absolute;
  width: 200px;
  transform: translateY(-50%)translateX(-50%);
}

.price-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-600), var(--blue-400));
}

.price-card:hover {
  border-color: var(--blue-300);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.price-card .price {
  font-size: 2.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--petrol-700), var(--blue-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 16px 0 8px;
  font-family: 'Nunito', sans-serif;
}

.price-card .price small {
  font-size: .9rem;
  font-weight: 400;
  -webkit-text-fill-color: var(--gray-500);
  background: none;
}

.price-card h3 {
  color: var(--petrol-700)
}

.price-card ul {
  text-align: left;
  margin: 22px 0;
  padding-left: 0
}

.price-card ul li {
  padding: 7px 0;
  border-bottom: 1px solid var(--warm-200);
  font-size: .93rem
}

.price-card ul li::before {
  content: '✓ ';
  color: var(--blue-600);
  font-weight: 700
}

.price-card ul li:last-child {
  border: none
}

.price-card .badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
  color: var(--white);
  padding: 16px 16px  16px 24px;
  border-radius: 0 0 0 50px;
  font-size: .8rem;
  font-weight: 700;
  margin-bottom: 10px;
  box-shadow: var(--shadow-glow);
  font-family: 'Nunito', sans-serif;
  position: absolute;
  top: 0px;
  right: 0px;
}

/* ---------- FAQ ---------- */
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(44, 82, 91, .06);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow)
}

.faq-question {
  padding: 22px 26px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  font-family: 'Nunito', sans-serif;
}

.faq-question:hover {
  background: var(--ice-50);
  color: var(--petrol-700)
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--blue-600);
  transition: var(--transition);
  font-weight: 600;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blue-100);
  flex-shrink: 0;
}

.faq-item.open .faq-question::after {
  content: '−';
  background: var(--petrol-100);
  color: var(--petrol-700)
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4, 0, .2, 1);
}

.faq-answer-inner {
  padding: 0 26px 22px;
  color: var(--gray-600);
  font-size: .95rem;
  line-height: 1.85;
  border-top: 1px solid var(--warm-200);
  padding-top: 16px;
  margin: 0 26px;
  padding-left: 0;
  padding-right: 0;
}

.tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px
}

.tab-btn {
  padding: 12px 28px;
  border-radius: 50px;
  border: 2px solid var(--ice-300);
  background: transparent;
  color: var(--petrol-700);
  font-weight: 700;
  font-size: .92rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Nunito', sans-serif;
}

.tab-btn:hover {
  background: var(--ice-50);
  border-color: var(--blue-400);
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--petrol-700), var(--petrol-600));
  color: var(--white);
  border-color: var(--petrol-700);
  box-shadow: 0 4px 14px rgba(44, 82, 91, .25);
}

.tab-content {
  display: none
}

.tab-content.active {
  display: block;
  animation: fadeIn .5s ease
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, max(320px));
  justify-content:center;
  gap: 24px;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--ice-100), var(--sand-100));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
}

.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item:hover {
  transform: scale(1.04);
  box-shadow: var(--shadow-lg)
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(28, 52, 58, .65));
  color: var(--white);
  padding: 12px 20px;
  font-size: 1.4rem;
  line-height: 1.6rem;
  font-weight: 600;
  font-family: 'Nunito', sans-serif;
}

.gallery-caption.small {
    font-size: 0.9rem;
    line-height: 1rem;
    padding: 8px 12px;
}

/* ---------- Über mich ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, var(--ice-100), var(--sand-100));
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
}

.about-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px solid rgba(65, 146, 196, .1);
  border-radius: var(--radius-xl);
  pointer-events: none;
}

.about-text h2 {
  margin-bottom: 18px;
  font-size: 1.9rem;
  color: var(--petrol-700)
}

.about-text p {
  margin-bottom: 16px;
  color: var(--gray-600)
}

.about-text .highlight {
  background: linear-gradient(135deg, var(--blue-100), var(--sand-100));
  border-left: 4px solid var(--blue-600);
  padding: 12px 16px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
  font-style: italic;
  color: var(--petrol-700);
  font-size: 1.05rem;
  box-shadow: var(--shadow-sm);
}

.about-text .highlight ul li::before {
  content: '✓ ';
  color: var(--blue-600);
  font-weight: 700
}

@media(max-width:768px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center
  }

  .about-image {
    max-width: 320px;
    min-width: 280px;
    margin: 0 auto
  }
}

.contact-banner {
  background:
    linear-gradient(135deg,
      var(--petrol-900) 0%,
      var(--petrol-800) 40%,
      var(--petrol-700) 100%);
  color: var(--white);
  padding: 54px 0;
  position: relative;
  overflow: hidden;
}

.contact-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(65, 146, 196, .08) 0%, transparent 60%);
  pointer-events: none;
}

.contact-banner-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  align-items: start;
  position: relative;
}

.contact-col h3 {
  font-size: 1.1rem;
  color: var(--blue-300);
  margin-bottom: 14px;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
}

.contact-col p,
.contact-col a {
  color: rgba(255, 255, 255, .85);
  font-size: .93rem
}

.contact-col a:hover {
  color: var(--blue-200)
}

.contact-col .contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px
}

.contact-col .contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(65, 146, 196, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  border: 1px solid rgba(65, 146, 196, .2);
}

.site-footer {
  background: var(--petrol-900);
  color: rgba(255, 255, 255, .6);
  padding: 36px 0 22px;
  font-size: .88rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 20px
}

.footer-links a {
  color: rgba(255, 255, 255, .5);
  transition: var(--transition)
}

.footer-links a:hover {
  color: var(--blue-300)
}

.page-header {
  background:
    linear-gradient(135deg,
      rgba(28, 52, 58, .72) 0%,
      rgba(44, 82, 91, .55) 50%,
      rgba(242, 230, 213, .3) 100%),
    url('images/banner2.jpg') center/cover no-repeat;
  text-align: center;
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}

.page-header h1 {
  font-size: 2.3rem;
  margin-bottom: 10px;
  color: var(--white);
  position: relative;
  text-shadow: 0 2px 12px rgba(28, 52, 58, .4);
}

.page-header p {
  color: rgba(255, 255, 255, .88);
  font-size: 1.08rem;
  position: relative;
  text-shadow: 0 1px 6px rgba(28, 52, 58, .3)
}

@media(max-width:600px) {
  .hero {
    padding: 70px 0 60px;
    min-height: 380px
  }

  .hero h1 {
    font-size: 1.9rem
  }

  .section {
    padding: 50px 0
  }

  .card-img {
    height: 200px
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center
  }

  .header-inner {
    padding: 8px 14px
  }

  .logo img {
    height: 42px
  }

  .section-title h2 {
    font-size: 1.7rem
  }

  .map-container {
    width: 100%;
  }

  .page-header {
    padding: 46px 0 38px
  }

  .page-header h1 {
    font-size: 1.8rem
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px
  }
}

@media(prefers-reduced-motion:no-preference) {

  .card,
  .price-card,
  .faq-item,
  .gallery-item {
    animation: slideUp .6s ease both;
  }

  @keyframes slideUp {
    from {
      opacity: 0;
      transform: translateY(20px)
    }

    to {
      opacity: 1;
      transform: translateY(0)
    }
  }
}

.card-grid.gruppenspaziergang {
  grid-template-columns:repeat(4, min(360px, 90%));
}

.card-grid.besondereangebote {
  grid-template-columns: repeat(3, min(360px, 90%));
}

@media(max-width:1400px) { 
  .card-grid.gruppenspaziergang {
    grid-template-columns:repeat(2, min(360px, 90%));
  }
}

@media(max-width:1000px) { 
  .card-grid.besondereangebote {
    grid-template-columns:repeat(2, min(360px, 90%));
  }
}


@media(max-width: 720px) { 
  .card-grid.gruppenspaziergang {
    grid-template-columns:repeat(1, min(360px, 90%));
  }

  .card-grid.besondereangebote {
    grid-template-columns: repeat(1, min(360px, 90%));
  }
}