
/* Headlines */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
}

/* Fließtext und Buttons */
body, p, a, li, span {
    font-family: 'Inter', sans-serif;
}
body { font-family: 'Inter', sans-serif; }

/* Navigation Schriftart Rosario */
.custom-navbar .nav-link,
.custom-navbar .navbar-brand {
    font-family: 'Rosario', sans-serif;
}

/* Navbar Hintergrund und Schriftfarbe */
.custom-navbar {
    background-color: #F7F5F0; /* sehr helles Beige */
}

.custom-navbar .nav-link {
    color: #3A352F; /* dunkles Walnussbraun */
    transition: color 0.3s ease;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link:focus {
    color: #8EAD88; /* dezentes Grün beim Hover */
}

/* Logo optional: etwas Abstand nach rechts */
.custom-navbar .navbar-brand img {
    margin-right: 15px;
}

/* Optional: Hamburger-Icon Farbe auf mobile */
.navbar-light .navbar-toggler-icon {
    filter: invert(30%) sepia(20%) saturate(500%) hue-rotate(70deg);
}

/* Hero Section */
.hero {
  background: url('img/hero.jpg') center/cover no-repeat;
  padding: 160px 0;
  position: relative;
}
.hero-overlay {
  background: rgba(255,255,255,0.75);
  padding: 60px;
  border-radius: 12px;
}

/* Sections */
.section-light { background:#FAF8F4; padding:80px 0; }
.section-white { background:white; padding:80px 0; }
.section-green { background:#7BAA76; padding:80px 0; color:white; }

/* Placeholders */
.image-placeholder {
  width: 100%;
  height: 300px;
  background: #DDE7D8;
  border-radius: 12px;
}

/* Footer */
footer {
  background:#3A352F;
  color:white;
  padding:40px 0;
}
