:root {
  --beige: #efe7df;
  --sand: #e4d5c3;
  --cream: #faf7f4;
  --gold: #c7a46d;
  --text: #3a3a3a;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--beige);
  color: var(--text);
  margin-top: 70px;
}

/* NAVBAR */
.navbar {
  background: rgba(250,247,244,0.96);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
}

.navbar-logo {
  height: 70px;
  width: auto;
  max-height: 100%;
  max-width: 100%;
}

/* Responsives Logo */
@media (max-width: 767px) {
  .navbar-logo {
    height: 40px;  /* Bei kleinen Bildschirmen (z.B. Handys) wird das Logo kleiner */
  }
}

@media (max-width: 576px) {
  .navbar-logo {
    height: 35px;  /* Noch kleiner bei sehr kleinen Bildschirmen */
  }
}

/* HERO */
.hero {
  height: 100vh;
  position: relative;
  background:
    linear-gradient(rgba(239,231,223,0.9), rgba(239,231,223,0.9)),
    url("../img/hero.jpg")
    center/cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 8vw, 4rem);
  word-wrap: break-word;
}

/* SECTIONS */
.section-padding {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.bg-light {
  background: var(--cream) !important;
}

/* CONTENT IMMER ÜBER DEM HINTERGRUND */
.section-padding > .container,
.hero-content {
  position: relative;
  z-index: 2;
}

/* ABOUT US */
.about-us-img {
  max-width: 50%;
  height: auto;
  margin-bottom: 5%;
  margin-top: 5%;
}

/* CARDS */
.card-container {
  display: grid; /* Verwenden von Grid für das Layout */
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* Flexible Spalten */
  gap: 20px; /* Abstand zwischen den Karten */
  padding: 20px;
}

.offer-card {
  background: var(--cream);
  padding: 25px;
  border-radius: 28px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;  /* Stellt sicher, dass alle Karten die gleiche Höhe haben */
  min-height: 350px;  /* Mindestens 350px Höhe */
  transition: transform 0.3s ease; /* Optional: für einen Hover-Effekt */
}

.offer-card:hover {
  transform: translateY(-10px); /* Optional: Hover-Effekt */
}

.offer-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 20px;
}

.offer-card .card-content {
  flex-grow: 1;  /* Der Textbereich wächst, um die Karte auszufüllen */
}

/* BUTTON */
.btn-outline-gold {
  border: 2px solid var(--gold);
  color: var(--gold);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: white;
}

/* KONTAKT-BUTTONS */
.contact-icons .contact-link {
  font-size: 2rem; /* Größe der Icons */
  color: var(--gold); /* edles Gold passend zu deinem Flyer */
  transition: transform 0.3s, color 0.3s;
}

.contact-icons .contact-link:hover {
  transform: scale(1.2);
  color: #b89455; /* dunkleres Gold beim Hover */
}

/* FOOTER */
.footer {
  background: linear-gradient(135deg, var(--sand), var(--beige));
  padding: 30px;
}

.footer-link {
  color: var(--gold);  /* edles Gold passend zu Icons / Design */
  text-decoration: none;
  transition: color 0.3s;
}

.footer-link:hover {
  color: #b89455;  /* etwas dunkleres Gold beim Hover */
}

/* UTILS */
.rounded-xl {
  border-radius: 32px;
}

.shadow-soft {
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

