html,
body {
  height: 100%;
  margin: 0;
}
body {
  font-family: "Open Sans", sans-serif;
  background-color: #f9f9f7;
  color: #333;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main {
  flex: 1;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Merriweather", serif;
  color: #5c5136;
  /* warmer, edler Braunton */
  font-weight: 700;
  letter-spacing: 0.05em;
}

.navbar {
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(92, 81, 54, 0.15);
  padding: 1.75rem 0;
  position: sticky;
  top: 0;
  z-index: 1030;
}

.navbar .nav-link {
  color: #7a6a4f;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #a18865;
}

.navbar .nav-link.active::before {
  background-color: #a18865;
  width: 14px;
  height: 5px;
}

.navbar-brand img {
  height: 70px;
}

.hero {
  height: 80vh;
  min-height: 600px;
  background: url("https://images.pexels.com/photos/106399/pexels-photo-106399.jpeg")
    center center/cover no-repeat;
  position: relative;
  color: white;
  display: flex;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  align-items: center; /* Vertikale Zentrierung */
  justify-content: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(
    0,
    0,
    0,
    0.35
  ); /* dunkle, aber leichte Überlagerung für Kontrast */
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-title {
  font-family: "Montserrat", sans-serif; /* moderner, fetter Font */
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
  color: #ffffff; /* reines Weiß für Kontrast */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 1.3rem;
  color: #f0e9d2cc; /* sanftes Beige mit Transparenz */
  margin-bottom: 2rem;
}

.hero-btn {
  background: linear-gradient(135deg, #cbb87d, #a18865);
  border: none;
  padding: 0.75rem 2.5rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.15rem;
  box-shadow: 0 5px 15px rgba(193, 163, 108, 0.6);
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background: linear-gradient(135deg, #a18865, #7f6d4c);
  box-shadow: 0 7px 22px rgba(139, 116, 80, 0.75);
  transform: translateY(-3px);
}

/* Font-Family im Head einbinden */

.btn-light {
  background: linear-gradient(135deg, #cbb87d, #a18865);
  border: none;
  color: white;
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(161, 136, 101, 0.4);
  transition: all 0.3s ease;
}

.btn-light:hover {
  background: linear-gradient(135deg, #a18865, #8b7450);
  box-shadow: 0 8px 20px rgba(139, 116, 80, 0.6);
  transform: scale(1.05);
}

.text-section {
  padding: 5rem 0;
  background-color: white;
  color: #6b6452;
  font-size: 1.1rem;
}

.section-title {
  font-weight: 900;
  font-family: "Merriweather", serif;
  color: #5c5136;
  margin-bottom: 3rem;
  letter-spacing: 0.07em;
}

.text-block {
  letter-spacing: 0.04em;
  line-height: 1.7;
  padding: 0 1.5rem;
}

.property-card {
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.property-card:hover {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
  transform: translateY(-6px);
}

.property-card img {
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.property-card:hover img {
  transform: scale(1.05);
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-family: "Merriweather", serif;
  font-weight: 700;
  color: #5c5136;
  margin-bottom: 0.75rem;
}

.card-text {
  color: #7a6a4f;
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.btn-outline-dark {
  border-radius: 12px;
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border-color: #a18865;
  color: #5c5136;
  transition: all 0.3s ease;
}

.btn-outline-dark:hover {
  background-color: #a18865;
  color: white;
  box-shadow: 0 8px 20px rgba(161, 136, 101, 0.6);
  transform: scale(1.05);
}

footer {
  background-color: #4b4435;
  color: #d7ccb3;
  padding: 3rem 0;
  font-size: 0.95rem;
}

footer p {
  margin: 0;
}

a {
  color: #a18865;
  transition: color 0.3s ease;
}

a:hover {
  color: #7a6a4f;
}

.contact-box {
  border: 1px solid #d7ccb3;
  box-shadow: 0 4px 15px rgba(193, 163, 108, 0.3);
  transition: box-shadow 0.3s ease;
}

.contact-box:hover {
  box-shadow: 0 8px 30px rgba(193, 163, 108, 0.5);
}

.contact-box a:hover {
  color: #7a6a4f;
}
.price-highlight {
  color: #b58534; /* Warmer Goldton */
  font-weight: 700;
}
.card:hover {
    box-shadow: 0 8px 30px rgba(161, 136, 101, 0.5);
    transform: translateY(-4px);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    border-color: #b58534; /* Optional: goldener Rand beim Hover */
  }
  
