/* 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);
  max-width: 1590px;
  margin: 0 auto !important;
  /* background-color: black; */
}


/* 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;
  padding: 0px;
}

@media (min-width: 768px) {

  /* Allgemeine Navigation */
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    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: 320px 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: 70px 0px 0px;
}

@media (min-width: 680px) {


  .teaser-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1520px;
    margin: 70px 202px 110px;
  }
}



.teaser {
  background-color: #57a9156b;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s;
  background-color: #225986;
}

.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;
  }
}


section {
  z-index: -1;
  padding: clamp(3em, 6vw, 5em);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column-reverse;
  gap: 2em;
  background: radial-gradient(var(--body-bg), #000);
  overflow-x: hidden;
}

#img-container {
  margin-left: 8em;
  height: 280px;
  width: 280px;
  perspective: 500px;
  transform-style: preserve-3d;
}

.box {
  height: 280px;
  width: 280px;
  position: absolute;
  top: 50%;
  border: 1px solid #bbb;
  border-radius: 1.5em;
  box-shadow: 0 0 8px hsla(0deg, 0%, 0%, 75%);
  transition: 800ms ease-in-out;
  overflow: hidden;
}

.box img {
  width: 100%;
  height: 100%;
}

.box:first-of-type {
  left: 15%;
  opacity: 0;
  z-index: 5;
  transform: translate(-50%, -50%) rotateY(-10deg);
}

.box:nth-of-type(2) {
  left: 20%;
  opacity: 1;
  z-index: 5;
  transform: translate(-50%, -50%) rotateY(-10deg);
}

.box:nth-of-type(3) {
  left: 25%;
  opacity: 0.75;
  z-index: 10;
  transform: translate(-50%, -50%) rotateY(-10deg) translateZ(-40px);
}

.box:nth-of-type(4) {
  left: 30%;
  opacity: 0.5;
  z-index: 5;
  transform: translate(-50%, -50%) rotateY(-10deg) translateZ(-100px);
  color: #eee;
}

.card {
  --br: 1em;
  position: relative;
  padding: 1vmin 1em;
  width: min(400px, 95%);
  background: linear-gradient(30deg, #2F3238, hsl(210, 56%, 24%));
  color: #dce3f9;
  border-radius: var(--br);
}

.card::after {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  border-radius: var(--br);
  --color1: hsla(0deg, 0%, 96%, 30%);
  --color2: hsla(0deg, 0%, 90%, 75%);
  background: linear-gradient(35deg, var(--color1), var(--color2));
  background: conic-gradient(var(--color1), var(--color2) 15%, var(--color1) 25%), hsl(210, 95%, 8%);
  background-blend-mode: screen;
}

@media (width>768px) {
  section {
      flex-direction: row;
  }

  .card::after {
      inset: -1px;
  }
}

.shadow {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(315deg, hsl(210, 50%, 30%), hsl(210, 40%, 10%));
  filter: blur(25px);
  transform: translateY(20px) scale(0.9);
  z-index: -1;
}




/* Header Neu */

/* Grundstyles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  height: 100%;
  scroll-behavior: smooth;
  font-family: 'Arial', sans-serif;
}

/* Top-Bar */
.top-bar {
  background: #333;
  color: white;
  text-align: center;
  padding: 5px 0;
  font-size: 14px;
}

#navbar {
  display: flex
;
  align-items: center;
  justify-content: space-between;
  padding: 15px 10%;
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s, box-shadow 0.3s;
  max-width: 1590px;
}


#nav-links {
  display: flex;
  list-style: none;
}

#nav-links li {
  margin-left: 30px;
  position: relative;
}

#nav-links a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  padding: 8px 12px;
  transition: color 0.3s;
}

#nav-links a:hover {
  color: #007BFF;
}

/* Dropdown Menü */
.dropdown-content {
  display: none;
  position: absolute;
  min-width: 200px;
  top: 40px;
  left: 0;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content li {
  padding: 10px;
}

.dropdown-content li a {
  color: #000;
}

/* Burger Menü (mobile später) */
.burger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.burger-menu span {
  height: 3px;
  width: 25px;
  background: black;
  margin-bottom: 4px;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-text h1 {
  font-size: 48px;
}

.hero-text p {
  font-size: 24px;
}

/* Responsive */
@media(max-width: 768px) {
  #nav-links {
      display: none;
      flex-direction: column;
      background: #000000;
      position: absolute;
      top: 70px;
      right: 10%;
      width: 200px;
      border-radius: 8px;
      color: black;
  }

  #nav-links.open {
      display: flex;
  }

  .burger-menu {
      display: flex;
  }
}

/* Top-Bar */
.top-bar {
  position: fixed;
  width: 100%;
  top: 0;
  background: transparent;
  color: white;
  text-align: center;
  padding: 5px 0;
  font-size: 14px;
  z-index: 1001;
  /* über Navbar */
  transition: background-color 0.3s, color 0.3s;
}

/* Top-Bar beim Scroll */
.top-bar.scrolled {
  background: #000;
  color: #fff;
}

/* Navigation */
#navbar {
  display: flex
;
  align-items: center;
  justify-content: space-between;
  padding: 15px 10%;
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s, box-shadow 0.3s;
}

#navbar.scrolled {
  background: #000000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: black;
}

/* Rest bleibt gleich wie im vorherigen CSS */




.section-header {
  text-align: center;
  padding: 4rem 2rem 2rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 2rem;
  max-width: 1600px;
  margin: 0 auto;
}

.service {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.service:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.service img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-content {
  padding: 1.5rem;
}

.service-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #34495e;
}

.service-content p {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .section-header h2 {
      font-size: 2rem;
  }

  .service-content h3 {
      font-size: 1.3rem;
  }
}


.phone-button-container {
  position: fixed;
  top: 50%;
  right: -145px;
  transform: translateY(-50%);
  background: #3498db;
  color: white;
  padding: 1rem;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: right 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  z-index: 9999;
}


@media (min-width: 600px) {
  .phone-button-container {
      position: fixed;
      top: 50%;
      right: -170px;
      transform: translateY(-50%);
      background: #3498db;
      color: white;
      padding: 1rem;
      border-top-left-radius: 12px;
      border-bottom-left-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
      transition: right 0.3s ease;
      cursor: pointer;
      display: flex;
      align-items: center;
      z-index: 9999;
  }
}



.phone-button-container.open {
  right: 0px;
  /* Abstand, den die Box aufklappt */
}

/* Symbol (z.B. Telefonhörer Icon) */
.phone-icon {
  font-size: 1.8rem;
  margin-right: 0.5rem;
}

/* Versteckter Text */
.phone-text {
  opacity: 0;
  white-space: nowrap;
  transition: opacity 0.3s ease;
  font-size: 1.2rem;
}

.phone-button-container.open .phone-text {
  opacity: 1;
}

@media (max-width: 600px) {
  .phone-text {
      font-size: 1rem;
  }
}