
:root {
  --orange: #f15a22;
  --gray: #f4f4f4;
  --dark: #333;
  --light: #fff;
}

html, body {
    scroll-behavior: smooth;
}

.two-columns {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.two-columns > div {
  flex: 1 1 45%;
  min-width: 300px;
}

.two-columns p,
.two-columns ul {
  margin-top: 0;
}

body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  color: var(--dark);
  background-color: var(--light);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
  font-weight: normal;
  transition: color 0.3s ease;
}

a:hover {
  color: rgba(0, 0, 0, 0.7); /* Für dunklen Text */
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

.main-header {
  background: var(--light);

}

.main-header .logo img {
  height: 80px;
}
.logo {
  text-align: center;
}

.logo img {
  display: block;
  margin: 0 auto;
  height: 100px;
}

.logo-text {
  display: block;
  margin-top: 5px;
  font-size: 18px;
  font-weight: bold;
  color: var(--dark);
  text-align: center;
}

.main-header nav {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  align-items: center;
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
}

nav .cta-nav {
  background: var(--orange);
  color: white;
  padding: 8px 15px;
  border-radius: 4px;
}

.hero {
  position: relative;
  background: url('images/hero-fotobox.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 120px 20px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* 30% Schwarz-Overlay */
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}
/*
.hero {
  background: url('images/hero-fotobox.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 120px 20px;
  background-color: #00000080;
}*/

.hero h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.cta-button {
  background: var(--orange);
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  display: inline-block;
  margin-top: 20px;
}

.section {
  padding: 20px;
}

.section.light {
  background: var(--gray);
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input, textarea {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  background: var(--orange);
  color: white;
  padding: 12px;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

footer {
  background: #eee;
  padding: 20px;
  text-align: center;
  font-size: 14px;
}


.top-bar {
  background: white;
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
}

.main-nav {
  background: var(--orange);
  padding: 10px 0;
}

.main-nav a {
  color: white;
  text-decoration: none;
  margin-right: 25px;
  font-weight: 500;
}

.main-nav a:last-child {
  margin-right: 0;
}

.top-grey-bar {
  background: #eee;
  padding: 2px 0;
  font-size: 13px;
  color: #333;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.main-header {
  margin-top: 40px; /* je nach endgültiger Höhe ggf. noch feiner abstimmen */
}


.cta-button:hover,
button:hover,
nav .cta-nav:hover {
  background-color: #d94f1c; /* etwas dunkleres Orange */
  transition: background-color 0.3s ease;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.03);
}

html, body {
    scroll-behavior: smooth;
}

.branding-gallery {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.branding-gallery img {
  max-width: 300px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.kontakt-formular {
  max-width: 600px;
  margin: 0 auto;
  padding: 30px;
  background-color: var(--gray);
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.form-gruppe {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.form-gruppe label {
  font-weight: bold;
  margin-bottom: 8px;
  color: #333;
}

.kontakt-formular input,
.kontakt-formular textarea {
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  transition: border-color 0.3s ease;
}

.kontakt-formular input:focus,
.kontakt-formular textarea:focus {
  outline: none;
  border-color: var(--orange);
}

.kontakt-formular button {
  background-color: var(--orange);
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.kontakt-formular button:hover {
  background-color: #d94f1c;
}

.honeypot {
  display: none;
}


.bg-light-orange {
  background-color: #fff;
}

.bg-light-gray {
  background-color: #f9f9f9;
}

.bg-white {
  background-color: #ffffff;
}

.bg-beige {
  background-color: #f9f9f9;
}

.zweispalten {
  background-color: #f9f9f9;
}


.zweispalten-wrapper .container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.zweispalten-wrapper .container > div {
  flex: 1 1 45%;
  min-width: 300px;
}


.cta-mitte {
  background-color: #fff; /* sanftes Orange */
  padding: 10px 10px 40px 10px;
  text-align: center;
}

.cta-mitte h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: var(--dark);
}

.cta-mitte p {
  font-size: 18px;
  margin-bottom: 25px;
  color: #444;
}

.cta-mitte .cta-button {
  background: var(--orange);
  color: white;
  padding: 15px 30px;
  font-size: 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-mitte .cta-button:hover {
  background-color: #d94f1c;
}