

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  z-index: 9999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.nav-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

/* LOGO */
.logo img {
  height: 90px;
  width: auto;
}

/* NAV LINKS */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
	color: #964B00;
	text-decoration: none;
	font-weight: bold;
	font-size: 16px;
}

/* Abstand wegen fixer Navbar */
body {
  padding-top: 70px;
}


body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1000px;
  margin: auto;
  padding: 60px 0;
}

/* HERO */
.hero {
  position: relative;
  height: 90vh;
  background: url('berge.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  /*margin-top: -70px;*/
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(30, 79, 161, 0.4);
  top: 0;
  left: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* BUTTON */
.btn {
  display: inline-block;
  padding: 14px 24px;
  background: #895129;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  margin-top: 20px;
  font-weight: bold;
}

/* SECTIONS */
section {
  background: white;
}

.light {
  background: #f5f5f5;
}

/* REGION BACKGROUND */
.region {
  position: relative;
  background: url('chiemsee.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
}

.region .overlay {
  background: rgba(30, 79, 161, 0.75);
}

/* GRID */
.grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 250px;
  padding: 20px;
  background: white;
  border-left: 5px solid #895129;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  color: #0098D4;
}

/* CTA */
.cta {
  text-align: center;
  background: #0098D4;
  color: white;
}

/* FOOTER */
footer {
  background: #0098D4;
  color: white;
  text-align: center;
  padding: 20px;
}

footer a {
  color: #895129;
}

/* FORMULAR */
.form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.form input,
.form textarea {
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
}

.form textarea {
  min-height: 120px;
}

.whatsapp-nav {
  background: #25D366;
  color: white !important;
  padding: 10px 16px;
  border-radius: 6px;
  transition: 0.3s ease;
}

.whatsapp-nav:hover {
  opacity: 0.9;
}



/* Honeypot verstecken */
.honeypot {
  display: none;
}

/*Titel*/
h1
{
	font-size: 56px;
	color: white;
}


/*Text Farben*/
.bayernblau
{
	color: #0098D4;	
}

.bayernbraun
{
	color: #964B00;
}

