
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body { margin: 0; font-family: Arial, sans-serif; }

.top-nav {
  background: linear-gradient(180deg, #003b49 0%, #3399cc 100%);
  text-align: center;
  padding: 0.5rem 0;
}

.top-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.top-nav ul li {
  display: inline-block;
  margin: 0 1rem;
}

.top-nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.top-nav ul li a:hover {
  text-decoration: underline;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #3399cc 0%, #003b49 100%);
  padding: 1.5rem 2rem;
  text-align: left;
}

.logo-slogan {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.logo-slogan img {
  height: 180px;
}

.logo-slogan .slogan {
  color: #ffffff;
  font-size: 1.8rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  line-height: 1.4;
}

.site-footer {
  background: linear-gradient(180deg, #3399cc 0%, #003b49 100%);
  color: white;
  text-align: center;
  padding: 1rem;
}

.site-footer a {
  color: #ffffff;
  text-decoration: underline;
}

.site-footer a:hover {
  text-decoration: none;
}

main { max-width: 1000px; margin: 2rem auto; padding: 0 1rem; }

@media (max-width: 768px) {
  .logo-slogan {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .logo-slogan img {
    height: 140px;
  }
  .logo-slogan .slogan {
    font-size: 1.5rem;
  }
}
.angebote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.angebot {
  background: #fff;
  border: 1px solid #ddd; /* Dünner, heller Rahmen */
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
}

.angebot:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.angebot .icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #004b59;
}

.angebot h2 {
  margin-top: 0;
}

.angebot strong {
  display: block;
  margin-top: 1rem;
  font-size: 1.4rem;
  color: #004b59;
}
.webdesign-hattingen {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}

	{
  text-align: center;
  margin-bottom: 3rem;
}

.hero h1 {
  font-size: 2.2rem;
}

.hero p {
  margin: 1rem 0;
}

.cta-button {
  display: inline-block;
  background: #004b59;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #00758c;
}

.leistungen-hattingen .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.leistung {
  background: #fff;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.leistung .icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #004b59;
}

.vorteile-hattingen ul {
  list-style: none;
  padding: 0;
}

.vorteile-hattingen li {
  margin: 0.5rem 0;
  font-size: 1.1rem;
}
.erstgespraech {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
  text-align: center;
}

.hero-erst h1 {
  font-size: 2rem;
}

.hero-erst p {
  margin: 1rem 0 2rem;
}

.vorteile-erst ul {
  list-style: none;
  padding: 0;
  text-align: left;
  display: inline-block;
  margin: 2rem 0;
}

.vorteile-erst li {
  margin: 0.5rem 0;
}

.termin-erst {
  margin-top: 2rem;
}

.termin-erst p {
  margin-bottom: 1rem;
}

.cta-button {
  display: inline-block;
  background: #004b59;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #00758c;
}

html {
  overflow-y: scroll;
}
.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.leistung-box {
  background: #fff;
  border: 1px solid #ddd; /* Dünner Rahmen */
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.leistung-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.leistung-box .icon {
  font-size: 2.5rem;
  color: #004b59;
  margin-bottom: 1rem;
}

.leistung-box h3 {
  margin-top: 0;
}
.ueber-mich {
  max-width: 800px;
  margin: 4rem auto;
  padding: 0 1rem;
}

.ueber-mich h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.ueber-mich p {
  line-height: 1.6;
  margin: 1rem 0;
}
/* === Buchungsseite: Angebots-Grid === */

.angebot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem auto;
  max-width: 1200px;
  padding: 0 1rem;
}

.angebot-box {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 1.5rem;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}

.angebot-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.angebot-box h2 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: #004b59;
}

.angebot-box p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.angebot-box label {
  display: inline-block;
  font-weight: bold;
  color: #007c99;
  cursor: pointer;
}

.angebot-box input[type="checkbox"] {
  margin-right: 0.5rem;
}

.buchung-formular {
  max-width: 600px;
  margin: 4rem auto;
  padding: 2rem;
  background: #f9f9f9;
  border-radius: 8px;
}

.buchung-formular h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #004b59;
}

.buchung-formular input,
.buchung-formular textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.buchung-formular button {
  background: #004b59;
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.buchung-formular button:hover {
  background: #007c99;
}
.cta-buchung {
  text-align: center;
  padding: 4rem 1rem;
  background: #eef7f9;
  margin-top: 4rem;
}

.cta-buchung h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.cta-buchung p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.cta-button {
  display: inline-block;
  background: #004b59;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.cta-button:hover {
  background: #007c99;
}
.angebot-buchen {
  display: inline-block;
  margin-top: 1rem;
  background: #004b59;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.angebot-buchen:hover {
  background: #007c99;
}

