header{
    background-color: #1C3660;
}

body{
    background-color: white;
    width: 100%;
    margin: 0;
    font-family: Calibri, sans-serif;
}

main{
        background-color: #F6F6F8;
        text-align: center;
        align-items: center;
}

footer{
    background-color: #1C3660;
    color: white;
    text-align: center;
    padding: 20px 20px;
}

h1{
    margin: 5px;
}

.hero {
    background-image: url("images/background_stockphoto.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 80% center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.heroContent {
    display: flex;
    align-items: center;
    flex: 1;
    padding: 0 80px;
    margin: 35px;
}

.heroText{
    color: white;
     max-width: 500px;
}
.headerBar{
    display: flex;
    justify-content: space-between;
    background-color: rgba(128, 128, 128, 0.3);
    padding: 10px 10px 10px 10px;
    width: 100%;
}

.logo{
    display: inline-flex;
    align-items: center;
    font-size: 18pt;
    color: white;
    cursor:default;
}

.logo img{
    width: 40px;
    height: 30px;
}

.menuItems{
    margin: 0px 60px;
    color: white;
}

.btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    height: 32px;
    padding: 0 15px;

    color: white;
    text-decoration: none;
    cursor: pointer;

    transition: 0.2s;
}

.btn.orange{
    border-radius: 5px;
    border: 1px solid #C37433;
    font-weight: bold;
    background-color: #FD6F00;
}

.btn.orange.freeQuote{
    margin: 15px;
}

.btn.learnMore{
    border-color: white;
    border: 0.1px solid white;
    border-radius: 5px;
}

.btn:hover{
    background-color: rgba(128, 128, 128, 0.5);
}


.headline{
    display: flex;
    justify-content: center;
    text-align: center;
    gap:1px;
    color: #1C3660;
    font-size: 14pt;
    margin: 3px 0px 15px 0px;
}

.headline.subtext{
    font-size: 15pt;
}

.headline h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 0;
    color: #1C3660;
}

.headline h2::before,
.headline h2::after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: #1C3660;
    min-width: 120px; /* sorgt dafür, dass man sie sicher sieht */
}

.content{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.content.text{
    font-size: 23px;
}

.highlights{
    font-size: smaller;
}

.tile{
    background-color: white;
    width: 250px;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    text-align: center;
}

.tile:hover{
    opacity: 0.9;
    transform: scale(1.03);
}

.tile.flat{
    background-color: #F6F6F8;
    width: 250px;
    padding: 20px;
    border-radius: 5px;
    box-shadow: none;
}

.readMore{
    text-decoration: none;
    cursor:pointer;
    color: #FD6F00;
    font-weight: bold;
}

.icon{
    margin: 12px;
    width: 40px;
    height: 40px;
}

.ourServices{
    margin: 40px 0px 0px 0px;
    padding: 15px 0px 0px 0px;
}

.whyChooseUs{
    margin: 40px 0px 0px 0px;
    padding: 15px 0px 30px 0px;
    background-color: white;
}

.testimonials{
    display: block;
    padding: 15px 0px 30px 0px;
}

.slideshow-container {
  position: relative;
  max-width: 800px;
  margin: auto;
}

.mySlides {
  display: none;
}

.mySlides.active {
  display: block;
}

/* Card Layout */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: white;
  padding: 20px;
  border-radius: 12px;
  max-width: 700px;
  margin: auto;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  text-align: left;
}

/* Avatar */
.avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

/* Text */
.testimonial-content {
  flex: 1;
}

.quote {
  font-size: 20px;
  font-weight: 500;
  color: #333;
  margin: 0 0 10px 0;
}

.author {
  font-size: 14px;
  color: #777;
  margin: 0;
}

/* Dots */
.dots-container {
  text-align: center;
  margin-top: 15px;
}

.dot {
  cursor: pointer;
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #ccc;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.dot.active,
.dot:hover {
  background-color: #333;
}

/* Fade Animation */
.fade {
  animation: fade 0.6s ease-in-out;
}

@keyframes fade {
  from { opacity: 0.4; }
  to { opacity: 1; }
}