@import url("https://fonts.googleapis.com/css2?family=Fira+Sans:wght@300,400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kanit:wght@100;200&display=swap");

.teaser_all {
  width: 100vw;
  height: 500px;
  display: flex;
  margin:50px 0;
;
  justify-content: space-around;
  gap: 0px;
  flex-wrap: wrap;
}
.teaser {
  width: 33%;
  height: 450px;
  position: relative;
  cursor: pointer;
}
.teaser:hover .teaser__title::before {
  transform: translateX(20px);
}
.teaser:hover .teaser__title::after {
  transform: translateX(-20px);
}
.teaser:hover .teaser__subtitle {
  transform: translateY(0px);
  opacity: 1;
}
.teaser:hover .teaser__text {
  background-size: 100% 100%;
  z-index: 2;
}
.teaser:hover .teaser__image img {
  transform: scale(1.05);
}
.teaser__border {
  width: 95%;
  height: 94%;
  border: 2px #fff solid;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.teaser__image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.teaser__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s ease-in-out;
}
.teaser__text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(0deg, black 0%, rgba(0, 0, 0, 0) 100%);
  background-size: 100% 200%;
  transition: 0.2s ease-in-out;
  padding: 30px 0;
}
.teaser__title {
  text-transform: uppercase;
  font-family: "Kanit", sans-serif;
  font-weight: 200;
  font-size: 28px;
  letter-spacing: 1.3px;
  width: 100%;
  text-align: center;
  color: #f3f3f3;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
  position: relative;
  margin: 0;
}
.teaser__title::before, .teaser__title::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.4s ease-in-out;
}
.teaser__title::before {
  left: 10%;
}
.teaser__title::after {
  right: 10%;
}
.teaser__subtitle {
  width: 30%;
  height: auto;
  text-align: center;
  margin: 0 auto;
  color: #333;
  font-family: "Kanit";
  font-weight: 700;
  font-size: 16px;
  margin-top: 5px;
  transition: 0.4s cubic-bezier(0.39, 0.03, 0.59, 0.87);
  transition-delay: 0.2s;
  background: #fff;
  padding: 3px 5px;
  transform: translateY(25%);
  opacity: 0;
}

@media screen and (max-width: 992px) {
  body {
    flex-direction: column;
  }

  .teaser {
    width: 100%;
  }
}


/* CSS Variables */
:root {
  --primary-color: #4680a7;
  --secondary-color: #003366;
  --accent-color: #007bff;
  --background-light: #fff3e0;
  --background-dark: #003366;
  --text-light: #ffffff;
  --text-dark: #2d2d2d;
  --text-muted: #6b7280;
  --highlight-color: #274e81;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: #f9fafb;
  max-width: 1920px;
  margin: 0 auto !important;
  background-color: #d5d5d5;
}



/* Header */
.top-bar {
  background-color: #00336682;
  color: var(--text-light);
  text-align: center;
  padding: 12px;
  font-size: 0.9rem;
}

header {
  background-color: var(--primary-color);
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #2c3e50;
  padding: 0px;
}

@media (min-width: 768px) {
  /* Allgemeine Navigation */
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #5181a5;
    padding: 10px 220px;
  }
}

nav img {
  height: 100px !important;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
}

nav ul li {
  margin-right: 20px;
  position: relative;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  padding: 10px;
  display: block;
}

/* Dropdown styling */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #34495e;
  min-width: 160px;
  z-index: 1;
}

.dropdown-content li {
  padding: 12px 16px;
  margin: 0;
}

.dropdown-content li a {
  color: white;
}

.dropdown-content li a:hover {
  background-color: #1abc9c;
}

/* Display dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Burger menu for mobile */
.burger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.burger-menu span {
  height: 3px;
  width: 25px;
  background-color: white;
  margin: 4px 0;
}

@media (max-width: 768px) {
  .burger-menu {
    display: flex;
  }

  nav ul {
    flex-direction: column;
    display: none;
  }

  nav ul.show {
    display: flex;
  }
}

.burger-menu {
  display: none;
  cursor: pointer;
  padding: 10px;
}

.burger-menu span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--text-light);
  margin: 6px 0;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgb(0 0 0 / 40%), rgba(26, 26, 26, 0.8)), url(../img/header.jpg) no-repeat center / cover;
  color: var(--text-light);
  padding: 140px 20px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 20px;
}

.hero .btn-cta {
  background-color: #225986;
  color: var(--text-light);
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  margin: 10px;
}

.hero .btn-cta:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

/* Welcome Section */
.welcome {
  padding: 60px 20px;
  text-align: center;
  background-color: var(--background-light);
}

.welcome h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
}

.grid-container {
  display: flex;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
  flex-direction: column;
}

@media (min-width: 768px) {
  .grid-container {
    display: flex;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
    flex-direction: row;
  }
}

.welcome {
  padding: 40px 20px;
  background-color: #fff;
}

.card {
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
}

/* Features Section */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 60px 20px;
  background-color: var(--highlight-color);
  max-width: 1200px;
  margin: 0 auto;
}

.feature {
  text-align: center;
}

.feature h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

/* Slider Section */
.slider-container {
  max-width: 1200px;
  margin: 0 auto 60px;
  position: relative;
  overflow: hidden;
}

.slider {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
}

.slider-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.nav-button {
  background-color: rgba(0, 0, 0, 0.6);
  color: var(--text-light);
  border: none;
  padding: 15px;
  cursor: pointer;
  font-size: 1.2rem;
  transition: var(--transition);
}

.nav-button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* About Section */
.about {
  padding: 60px 20px;
  text-align: center;
}

.about h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
}

.about p {
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Services Section */
.services {
  padding: 60px 20px;
  background-color: var(--highlight-color);
  text-align: center;
  display: flex;
  flex-direction: column;
}

@media (min-width: 600px) {
  .services {
    padding: 60px 20px;
    background-color: var(--highlight-color);
    text-align: center;
    display: flex;
    flex-direction: row;
  }
}

.services h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
}

.service-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  margin: 20px auto;
  max-width: 350px;
  transition: var(--transition);
}

.service-card:hover {
  transform: scale(1.03);
}

/* Contact Section */
.contact {
  padding: 60px 20px;
  background-color: #2c3e50;
  text-align: center;
}

.contact h2 {
  margin-bottom: 20px;
  color: white;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  max-width: 54%;
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 400px;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 10px;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form button {
  padding: 10px;
  font-size: 16px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #0056b3;
}

iframe {
  width: 100%;
  max-width: 690px;
  height: 100%;
  border: none;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
  }

  iframe {
    max-width: 100%;
  }
}

/* Footer */
footer {
  background-color: var(--background-dark);
  color: var(--text-light);
  padding: 40px 20px;
  text-align: center;
}

footer ul {
  display: flex;
  justify-content: center;
  list-style: none;
  margin-bottom: 20px;
}

footer ul li {
  margin: 0 15px;
}

footer ul li a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 1rem;
  transition: var(--transition);
}

footer ul li a:hover {
  color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    padding: 20px;
  }

  nav ul.show {
    display: flex;
  }

  .burger-menu {
    display: block;
  }

  .hero {
    padding: 100px 20px;
  }

  .hero h1 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .top-bar {
    font-size: 0.8rem;
  }

  .welcome h2,
  .about h2,
  .services h2,
  .contact h2 {
    font-size: 1.8rem;
  }

  .card {
    padding: 20px;
    background-color: var(--secondary-color);
  }
}

.teaser-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1520px;
  margin: 100px auto;
}

.teaser {
  background-color: #57a9156b;
  padding: 10px -5px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s;
  background-color: #225986;
  height: 560px;
}

.teaser:hover {
  transform: translateY(-5px);
}

.teaser-icon {
  font-size: 40px;
  color: #007bff;
  margin-bottom: 15px;
}

.teaser-title {
  font-size: 1.3em;
  margin-bottom: 10px;
  color: #ffffff;
}
.teaser-desc {
  font-size: 1em;
  color: #fff;
  margin-bottom: 20px;
}

.teaser-btn {
  text-decoration: none;
  color: white;
  background-color: #007bff;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.teaser-btn:hover {
  background-color: #0056b3;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .teaser-title {
    font-size: 1.2em;
  }

  .teaser-desc {
    font-size: 0.9em;
  }
}

.welcome {
  text-align: center;
}

h3,
p {
  margin: 10px 0;
}

.maps-container {
  border: solid;
  height: 270px !important;
  width: 300px;
  background-color: #cbc7c7;
}

@media (min-width: 768px) {
  .maps-container {
    border: solid;
    height: 270px !important;
    width: 500px;
    background-color: #cbc7c7;
  }
}

.maps-container button {
  background-color: blue;
  padding: 20px;
  color: white;
}

.hero-section1 {
  height: 50vh;
  background: url("../img/wohnzimmer.jpg") center / cover no-repeat;
  display: flex
;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  margin: 100px 0;
  max-height: 560px;
}

.hero-content1 h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: rgb(255, 255, 255);
}

.hero-content1 p {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: black;
  color: rgb(255, 255, 255);
}

.cta-btn {
  display: inline-block;
  background-color: #f4cb03;
  color: rgb(0, 0, 0);
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1rem;
  transition: background-color 0.3s ease;
  font-weight: 700;
}

.cta-btn:hover {
  background-color: #16a085;
}

@media (max-width: 768px) {
  .hero-content1 h1 {
    font-size: 2rem;
  }

  .hero-content1 p {
    font-size: 1.2rem;
  }
}

.feature-section {
  display: flex;
  justify-content: space-around;
  padding: 50px;
  background-color: #ecf0f1;
  text-align: center;
}

.feature {
  flex-basis: 30%;
  padding: 20px;
}

.feature img {
  max-width: 100px;
  margin-bottom: 20px;
}

.feature h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.feature p {
  font-size: 1rem;
  color: #7f8c8d;
}

@media (max-width: 768px) {
  .feature-section {
    flex-direction: column;
    align-items: center;
  }

  .feature {
    margin-bottom: 30px;
  }
}

.about-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px;
  background-color: #f9f9f9;
}

.about-text {
  flex-basis: 50%;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1.2rem;
  color: #7f8c8d;
}

.about-video {
  flex-basis: 50%;
}

@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
    text-align: center;
  }

  .about-video iframe {
    width: 100%;
    height: auto;
  }
}

.pricing-section {
  padding: 50px;
  text-align: center;
  background-color: #ecf0f1;
}

.pricing-section h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.pricing-cards {
  display: flex;
  justify-content: space-around;
}

.pricing-card {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 30%;
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-card h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.price {
  font-size: 2rem;
  margin: 20px 0;
}

.price span {
  font-size: 1rem;
  color: #7f8c8d;
}

.pricing-card ul {
  list-style-type: none;
  padding: 0;
  margin: 20px 0;
}

.pricing-card ul li {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.cta-btn:hover {
  background-color: #16a085;
}

@media (max-width: 768px) {
  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }

  .pricing-card {
    width: 80%;
    margin-bottom: 30px;
  }
}

.blog-section {
  padding: 50px;
  background-color: #f9f9f9;
  text-align: center;
}

.blog-section h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.blog-cards {
  display: flex;
  justify-content: space-around;
}

.blog-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 30%;
  padding: 20px;
  text-align: left;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
}

.blog-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
}

.blog-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.blog-card p {
  font-size: 1rem;
  color: #7f8c8d;
  margin-bottom: 20px;
}

.read-more {
  color: #1abc9c;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #16a085;
}

@media (max-width: 768px) {
  .blog-cards {
    flex-direction: column;
    align-items: center;
  }

  .blog-card {
    width: 80%;
    margin-bottom: 30px;
  }
}

.faq-section {
  padding: 50px;
  background-color: #ecf0f1;
  text-align: center;
}

.faq-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  padding: 20px;
  cursor: pointer;
}

.faq-item h3 {
  font-size: 1.5rem;
  margin: 0;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-content {
  max-height: 100px;
  padding-top: 10px;
}

.faq-item.active h3 {
  color: #1abc9c;
}

@media (max-width: 768px) {
  .faq-item h3 {
    font-size: 1.2rem;
  }
}

/* Media Queries für responsive Design */
@media (max-width: 768px) {
  .content-block {
    flex-direction: column;
    text-align: center;
  }

  .block-image,
  .block-text {
    padding: 0;
  }
}


.bg-\[\#94e3bd\] {
  --tw-bg-opacity: 1;
  background-color: rgb(148 227 189 / var(--tw-bg-opacity, 1)) !important;
}


.textee{
  color: black;
  margin:50px 10px;
}



@media (max-width: 768px) {
  .textee{
    color: black;
    margin:150px;
  }
}































.hero {
  position: relative;
  width: 100%;
  height: 59% !important;
  overflow: hidden;
}