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

html, body {
    height: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    /*box-sizing: border-box;*/
}


body {
    font-family:'Roboto';
    font-weight: 400;
    margin: 0;
    padding: 0;
    height: 100%;
    min-height: 100vh;

}
img {
    max-width: 100%;
    height: auto;
}



/* Navbar Section */
.navbar {
    position: fixed; /* Make the navbar fixed */
    top: 0; /* Position at the top of the viewport */
    left: 0; /* Position at the left of the viewport */
    width: 100%; /* Span the entire width of the viewport */
    display: flex;
    flex-direction: column;  align-items: center;
    padding: 1rem 2rem 1rem 2rem;
    background: url('img/marble-2371776_1920.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    z-index: 10; /* Set a higher z-index to ensure it stays on top */
}

.nav-links {  text-align: center;  /* Center the list items horizontally */
}

/* Logo */
.logo {
    align-items: center;
    width: 100px; /* Adjusted for a smaller logo */
    height: auto;
}

/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
    padding: 0;
    margin: 10;
    font: 'Roboto';
    font-weight: 900;
}

.nav-links a {
    text-decoration: none;
    color: black;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #dcbe98; /* Change to yellow on hover */
    transform: scale(1.05); /* Slight zoom effect */

}



.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    opacity:1;
    background: url('img/massage.png') no-repeat center center;
    
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide img {
    width: 100%;
    height: 100%;
}


.hero-slide.active {
    opacity: 1;
}

.hero-content h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #8B7355;
    text-align: center;
    padding: 20px;
    font-size: 3.2rem;
    font-weight: 1000;
}

.hero-content p {
    position: absolute;
    top: calc(50% + 30px); /* Move p below h1 by the height of h1 + padding */
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 1.5rem;
}



.hero-prev, .hero-next {
    background: transparent;
    border: none;
    font-size: 50px;
    color: lightgrey;
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
}

.hero-prev { left: 20px; }
.hero-next { right: 20px; }

.hero-prev:hover, .hero-next:hover {
    color:gray;

}

.welcome-section {
    text-align: center;
    padding: 50px;
    max-width: 800px;
    margin: 0 auto;
    /* Neue Eigenschaften für Höhe und vertikale Ausrichtung */
    min-height: 600px; /* Passe den Wert nach Bedarf an */
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .welcome-section h2 {
    font-size: 3rem; /* Increase font size */
    font-weight: bold;
  }
  .welcome-section p {
    font-size: 1.5rem; /* Increase font size */
  }
  
  
  .welcome-section .btn {
    transition: transform 0.2s ease;
    text-decoration: none;
    display: inline-block;
    padding: 8px 12px;
    font-size: 1rem;
    background-color: #dcbe98;
    color: #fff;
    border-radius: 3px;
    font-weight: bold;
    transition: background-color 0.3s;
    text-align: center;
    max-width: 150px; /* Begrenzt die maximale Breite des Buttons */
    margin: 0 auto; /* Zentriert den Button innerhalb seines Containers */
  }

  .welcome-section .btn:hover{
    transition: transform 0.2s ease;
    transform: scale(1.05);
  }

/* Parallax Section */
.parallax {
    position: relative;
    height: 700px; /* Adjust the height as needed */
    background-image: url('img/Gemini_Generated_Image_9f5ue49f5ue49f5u.jpg'); /* Replace with your image */
    background-size: cover;
    background-attachment: fixed; /* Enables parallax scrolling */
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Adds a dark overlay for text visibility */
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2; /* Ensures content is above the overlay */
}

.parallax-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: #fff;
}

.parallax-content .btn {
    text-decoration: none;
    background-color: #fff; /* Matches other buttons */
    color: black;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.parallax-content .btn:hover {
    background-color: #dcbe98; /* Darker shade for hover */
    transform: scale(1.05); /* Slight zoom effect */
}
/* Testimonial Section */
.testimonial-section {
    position: relative;
    max-width: 800px;
    margin: 50px auto;
    text-align: center;
    overflow: hidden;
    background: #fff;
    border-radius: none;
    padding: 20px;
    height: 80%;

}

/* Testimonial Slides */
.testimonial-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: transparent; /* Remove background color */
    border:none;

}

.testimonial-slide {
    position: absolute;
    background-color: transparent; /* Remove background color */
    border:none;
    padding: 20px;
    margin-bottom: 15px;
    width: 80%;  /* Set the width of the box */
    min-height: 250px; /* Increased height for longer texts */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: none !important; /* Remove any border or box-shadow */
    font-family: 'Montserrat', sans-serif; /* Apply the new font to only the testimonials */

}


.testimonial-text {
    font-size: 1.2em;  /* Slightly larger text for better readability */
    font-weight: 600; /* Bold font weight */
    line-height: 1.8;
    color: #333;
    margin-top: 400px;
    margin-bottom: 100px; /* Increase bottom margin to make text more breathable */
}

.testimonial-author {
    font-weight: 700;  /* Bold font for the author's name */
    font-size: 1.1em;
    color: #555;
    margin-top: 5px;
}


/* Navigation Dots */
.testimonial-dots {
    text-align: center;
    margin-top: 375px;

}

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

.dot.active {
    background: #9b290b; /* Active dot color */
}
.dot:hover {
    background-color: #333; /* Change color on hover for a cool effect */
}
/* Arrows */
.prev, .next {
    background: transparent;
    border: none;
    font-size: 30px;
    color: lightgrey;
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    top: 25%;
    transform: translateY(-50%);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.prev:hover, .next:hover {
    color:gray;
}

.client-love h2 {
    font-size: 2rem;
    color: #333;  /* Du kannst hier die Farbe anpassen */
    text-align: center;
    margin-top: 100px;
    margin-bottom: 20px;
}

.client-love p {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 30px;
}

/***** Booking Section Styling *****/
.booking-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffff;
    height:auto;
    border-top: 1px solid #efefef;

}

.booking-content {
    flex: 1;
    max-width: 50%;
    padding: 50px;

}

.booking-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.booking-content .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #dcbe98;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.booking-content .btn:hover {
    transition: transform 0.2s ease;
    transform: scale(1.05);
}

.booking-image {
    flex: 1;
    display: flex; /* Make it a flex container */
    justify-content: flex-end; /* Align image to the right */
    height: 80%;
    width: 80%;

}


.booking-image .booking-img {
    width: 120%;
    height: 10%;
}

a {
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease; }
    a, a:hover {
      text-decoration: none !important; }
  
  .content {
    height: 70vh; }
  
  .footer-59391 {
    border-top: 1px solid #efefef;
    background: url('img/marble-2371776_1920.jpg') center center;  
    font-family: "Poppins", sans-serif;
    padding: 1.5rem 0; }
    .footer-59391 .site-logo {
      color: #fff; }
      .footer-59391 .site-logo a {
        font-size: 30px;
        color: #000;
        font-weight: 900; }
    .footer-59391 .social-icons li {
      display: inline-block; }
      .footer-59391 .social-icons li a {
        display: inline-block;
        position: relative;
        width: 40px;
        height: 40px;
        border-radius: 50%; }
        .footer-59391 .social-icons li a.dr {
          background: #ff2e6e; }
        .footer-59391 .social-icons li a.be {
          background: #394cff; }
        .footer-59391 .social-icons li a.tw {
          background: #00a0fb; }
        .footer-59391 .social-icons li a.in {
          background: #c31574; }
        .footer-59391 .social-icons li a.fb {
          background: #3b579b; }
        .footer-59391 .social-icons li a.yt {
          background: #fa2614; }
        .footer-59391 .social-icons li a span {
          position: absolute;
          top: 50%;
          left: 50%;
          -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
          color: #fff; }
    .footer-59391 .nav-links li {
      display: inline-block; }
      .footer-59391 .nav-links li a {
        font-size: 14px;
        color: #777;
        padding: 10px; }
    @media (max-width: 1199.98px) {
      .footer-59391 .nav-links.nav-left li:first-child a {
        padding-left: 0; } }
    .footer-59391 .nav-links.nav-right li:last-child a {
      padding-right: 0; }
    @media (max-width: 1199.98px) {
      .footer-59391 .nav-links.nav-right li:first-child a {
        padding-left: 0; } }
    .footer-59391 .copyright {
      border-top: 1px solid #efefef;
      padding-top: 50px;
      text-align: center;
      color: #777; }

    /* Ueber uns*/
    .intro-ueber {
        width: 100%;
        height: 350px; /* Adjust the height as needed */
        background-image: url('img/sunset-3102754_1280.jpg'); /* Add your image path here */
        background-position: center; /* Centers the image */
        background-size: cover;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 150px;
    }
    
    .intro-text h1 {
        color: white; /* Text color on the image */
        font-size: 36px; /* Adjust text size as needed */
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7); /* Optional: adds a shadow to make the text stand out */
        text-align: center;
    }
    
    .ueberuns {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        max-width: 500px;
        text-align: center;
        margin: 0 auto; /* Ensure it's centered horizontally */
        height: 100vh; /* Set a height to center it vertically */
        overflow: hidden;
        padding-bottom: 100px;
    }
    
    .ueberuns h2 {
        font-size: 30px;
        font-weight: 1000;
        margin-bottom: 30px;
    }
    
    .ueberuns p {
        font-size: 16px;
        line-height: 1.6;
        color: #555;
    }
    
    .ueberuns hr {
        width: 50%;
        height: 1px;
        background-color: #ccc;
        margin: 20px auto 0;
    }
    .ueberschrift-maps {
        align-items: center;
        margin-top: 30px;
    }
    .ueberschrift-maps h1 {
        text-align: center;
        margin-bottom: -80px;
    }
    .ueberschrift {
        align-items: center;
        margin-bottom: 50px;
    }
    .ueberschrift h1 {
        text-align: center;
        font-size: 2rem;
        font-weight: 1000;
    }
    .insta {
        margin-bottom: 200px;
    }
    .insta hr {
        width: 50%;
        height: 1px;
        background-color: #ccc;
        margin: 200px auto 0;
    }
    .containers {
        display: flex;
        gap: 20px;
        flex-wrap: nowrap;
        margin-top: 40px;
        justify-content: center;
    }
    .box {
        width: 300px;
        padding: 20px;
        text-align: center;
        background: white;
        border: 1px solid #ddd;
        border-radius: 5px;
        box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }
    .box h3 {
        font-size: 14px;
        color: #79837a;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    .box hr {
        width: 50px;
        border: none;
        border-top: 2px solid #c4a47c;
        margin: 10px auto;
    }
    .box p {
        color: #444;
        font-size: 16px;
        margin: 5px 0;
    }    

    
    
@media screen and (max-width: 768px) {
    .hero {
        position: relative;
        width: 100%;
        height: 100vh;
        overflow: hidden;
    }
    
    .hero-slider {
        position: relative;
        width: 100%;
        height: 100%;
        background-size: 250%;
    }
    
    .hero-slide {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 2s;
    }
    
    .hero-slide img {
        width: 100%;
        height: 100%;
        transform: scale(2);
    }
    
    
    .hero-slide.active {
        opacity: 1;
        width: 100%;    
    }
    .hero-slide.active h1{
        font-size: 1.8rem;
        
    }
    
    .hero-content h1 {
        position: absolute;
        transform: translate(-50%, -50%);
        color: #7f6c55;
        text-align: center;
        font-weight: 1000;
        font-size: 2rem;  /* Adjust font size */
        max-width: 100%;   /* Prevent breaking into multiple lines */
        white-space: nowrap; /* Prevent text from wrapping */
    }
    
    
    .hero-content p {
        position: absolute;
        top: calc(50% + 30px); /* Move p below h1 by the height of h1 + padding */
        left: 50%;
        transform: translateX(-50%);
        color: white;
        text-align: center;
        padding: 20px;
        font-size: 1.5rem;
    }
    
    
    
    .hero-prev, .hero-next {
        background: transparent;
        border: none;
        font-size: 50px;
        color: lightgrey;
        cursor: pointer;
        transition: all 0.3s ease;
        position: absolute;
        top: 60%;
        transform: translateY(-50%);
    }
    
    .hero-prev { left: 20px; }
    .hero-next { right: 20px; }
    
    .hero-prev:hover, .hero-next:hover {
        color:gray;
    
    }
    .nav-links {
        flex-direction: column;
        gap: 1rem;
        font-size: 0.7rem;
        flex-direction: row;
    }



    .hero-content h1 {
        font-size: 2rem; /* Verkleinern der Schrift für bessere Lesbarkeit */
    }

    .hero-content p {
        font-size: 1rem;
    }

    .welcome-section {
        padding: 20px;
    }
    .welcome-section h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    .welcome-section p{
        font-size: 1rem;
    }

    .booking-section {
        position: relative;
        padding: 0;
    }

    .booking-section img {
        width: 100%;
        height: auto;
        display: block;
    }

    .booking-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: rgba(0, 0, 0, 0.5);
        padding: 1rem;
        border-radius: 80px;
        font-size: 0.2rem;
        font-weight: bold;
        color: white;
        text-align: center;
        width: 80%;
    }
    /* Testimonial Slides */
    .testimonial-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px;
        background-color: transparent; /* Remove background color */
        border:none;

    }

    .testimonial-slide {
        position: absolute;
        background-color: transparent; /* Remove background color */
        border:none;
        padding: 20px;
        margin-bottom: 15px;
        width: 80%;  /* Set the width of the box */
        min-height: 250px; /* Increased height for longer texts */
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        box-shadow: none !important; /* Remove any border or box-shadow */
        font-family: 'Montserrat', sans-serif; /* Apply the new font to only the testimonials */


    }


    .testimonial-text {
        font-size: 1em;  /* Slightly larger text for better readability */
        font-weight: 600; /* Bold font weight */
        line-height: 1.2;
        color: #333;
        margin-top: 250px;
        margin-bottom: 30px; /* Increase bottom margin to make text more breathable */
    }

    .testimonial-author {
        font-weight: 700;  /* Bold font for the author's name */
        font-size: 1.1em;
        color: #555;
        margin-top: 5px;
    }

    /* Navigation Dots */
    .testimonial-section {
        max-width: 100%;
        overflow: hidden;
    }

    .testimonial-dots {
        text-align: center;
        margin-top: 260px;

    }

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

    .dot.active {
        background: #9b290b; /* Active dot color */
    }
    .dot:hover {
        background-color: #333; /* Change color on hover for a cool effect */
    }
    /* Arrows */
    .prev, .next {
        background: transparent;
        border: none;
        font-size: 30px;
        color: lightgrey;
        cursor: pointer;
        transition: all 0.3s ease;
        position: absolute;
        top: 25%;
        transform: translateY(-50%);
    }

    .prev {
        left: 20px;
    }

    .next {
        right: 20px;
    }

    .prev:hover, .next:hover {
        color:gray;
    }

    .client-love h2 {
        font-size: 2rem;
        color: #333;  /* Du kannst hier die Farbe anpassen */
        text-align: center;
        margin-top: 90px;
    }

    .client-love p {
        font-size: 0.5rem;
        color: #666;
        text-align: center;
    }
    .parallax {
        background-attachment: scroll; /* Disables parallax on mobile */
    }
    .hero-prev, .hero-next {
        visibility: hidden;
    }
    /* Ueber uns*/
    .intro-ueber {
        width: 100%;
        height: 200px; /* Adjust the height as needed */
        background-image: url('img/sunset-3102754_1280.jpg'); /* Add your image path here */
        background-position: center; /* Centers the image */
        background-size: cover;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 150px;
    }
    
    .intro-text h1 {
        color: white; /* Text color on the image */
        font-size: 36px; /* Adjust text size as needed */
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7); /* Optional: adds a shadow to make the text stand out */
        text-align: center;
        margin-top: 40px;
    }
    
    .ueberuns {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        max-width: 370px;
        text-align: center;
        margin-top: -270px; /* Ensure it's centered horizontally */
        height: 160vh; /* Set a height to center it vertically */
        overflow: hidden;
        
    }
    
    .ueberuns h2 {
        font-size: 30px;
        font-weight: 1000;
        margin-bottom: 30px;
        margin-top: 300px;
    }
    
    .ueberuns p {
        font-size: 16px;
        line-height: 1.6;
        color: #555;
    }
    
    .ueberuns hr {
        width: 50%;
        height: 1px;
        background-color: #ccc;
        margin: 20px auto 0;
    }
    .ueberschrift h1 {
        margin-top: -20px;
    }
    .insta hr{
        margin-top: 10px;
        margin: 100px;
    }
    .containers {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
        margin-top: 40px;
        justify-content:center;
    }
    .box {
        width: 300px;
        padding: 20px;
        text-align: center;
        background: white;
        border: 1px solid #ddd;
        border-radius: 5px;
        box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }
    .box h3 {
        font-size: 14px;
        color: #79837a;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    .box hr {
        width: 50px;
        border: none;
        border-top: 2px solid #c4a47c;
        margin: 10px auto;
    }
    .box p {
        color: #444;
        font-size: 16px;
        margin: 5px 0;
    }    
    
}
