@font-face {
    font-family: 'Montserrat Italic';
    src: url(../fonts/Montserrat-Italic-VariableFont_wght.ttf) format('ttf');
   }
   @font-face {
    font-family: 'Montserrat';
    src: url(../fonts/Montserrat-VariableFont_wght.ttf) format('ttf');
   }

/* Allgemeine Stile */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #C8C1D4 !important; /* Lavendelton */
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #4A4A4A;
    /*height: 100vh;*/
}

/* Header */
header {
    width: 100%;
    max-width: 900px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    color: white !important;
    font-size: 14px;
    /*position: absolute;
    top: 0;
    z-index: 3;*/
}

header a {
    color: white !important;
}

header a:hover {
    cursor: pointer;
}

footer a {
    color: #624F73;
}
.logo {
    font-weight: bold;
    font-size: 18px;
}

.nav-left a{
    color: #fff;
    text-decoration: none;
    transition: all ease .3s;
}

.nav-left a:hover {
    text-decoration: underline;
    cursor:pointer;
}

/* Social Media Icons */
.nav-right img {
    width: 18px;
    margin-left: 10px;
}

/* Hauptinhalt */
.content {
    position: relative;
    text-align: center;
    width: 100vw;
    height: 100vh;
}

.content-2 {
    position: relative;
    text-align: center;
    width: 100vw;
    height: 90vh;
    padding-top: 50px;
}

.content img {
    max-width: 400px;
    border-radius: 10px;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
}

.section {
    margin: 80px 0;
}

.section a, .section .container .row .col p a {
    color: #4A4A4A;;
}

.section.about-this-section {
    background-color: #D6D0E4;
    padding: 20px;
}

.section.about-me-section .container .row .ruth-img {
    max-height: 500px;
    /*background-image: url(../img/picture_ruth.jpg);
    background-size: cover;*/
}
.section.about-me-section .container .row .ruth-img img {
    max-width: 300px;
    margin: 0 auto;
}

.offer-section {
    background-color: #D6D0E4;
    padding: 20px;
}

.offer-image {
    width: 250px;
    height: 250px;
    margin: 0 auto;
}
.offer-row .col-lg-4:nth-child(1) .offer-image {
    background-image: url(../img/healthy_food_2.jpg);
    background-size: cover;
}
.offer-row .col-lg-4:nth-child(2) .offer-image {
    background-image: url(../img/darm.jpg);
    background-size: cover;
}
.offer-row .col-lg-4:nth-child(3) .offer-image {
    background-image: url(../img/logo.jpeg);
    background-size: cover;
}
.offer-row-2 .col-lg-4:nth-child(1) .offer-image {
    background-image: url(../img/logo.jpeg);
    background-size: cover;
}
.offer-row-2 .col-lg-4:nth-child(2) .offer-image {
    background-image: url(../img/joy_2.jpg);
    background-size: cover;
}
.offer-row-2 .col-lg-4:nth-child(3) .offer-image {
    background-image: url(../img/massage_oil.jpg);
    background-size: cover;
}

.row.featurette .col-md-5 {
    text-align: center;
    align-content: center;
}

.overlay-btn {
    position: absolute;
    top: 57%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    font-weight: bold;
    font-size: 24px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

/* Button */
.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #7B5E8A !important;
    border-color: #7B5E8A !important;
    color: #fff !important;
    text-decoration: none;
    border-radius: 20px;
    font-size: 16px;
    font-weight: bold;
    transition: all ease .3s;
}
.btn:hover {
    background-color: #624F73 !important;
}
/* Kontaktformular Stil */
.contact-section {
    background-color: #D6D0E4; /* Sanfter Lavendelton */
    padding: 40px;
    margin: 50px auto;
    width: 90%;
    max-width: 600px;
    text-align: center;
    border-radius: 10px;
}

.contact-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    text-align: left;
    font-weight: bold;
    margin: 10px 0 5px;
    color: #5C5C5C;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #C8C1D4;
    border-radius: 8px;
    font-size: 16px;
    background-color: #F5F4F9;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #A8A0C8;
    box-shadow: 0 0 5px rgba(168, 160, 200, 0.5);
}

/* Button */
.btn {
    display: inline-block;
    background-color: #A8A0C8;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.btn:hover {
    background-color: #9086B2;
}

/*predefined*/
.bd-placeholder-img {
    font-size: 1.125rem;
    text-anchor: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
  }

  @media (min-width: 768px) {
    .bd-placeholder-img-lg {
      font-size: 3.5rem;
    }
  }

  .b-example-divider {
    width: 100%;
    height: 3rem;
    background-color: rgba(0, 0, 0, .1);
    border: solid rgba(0, 0, 0, .15);
    border-width: 1px 0;
    box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
  }

  .b-example-vr {
    flex-shrink: 0;
    width: 1.5rem;
    height: 100vh;
  }

  .bi {
    vertical-align: -.125em;
    fill: currentColor;
  }

  .nav-scroller {
    position: relative;
    z-index: 2;
    height: 2.75rem;
    overflow-y: hidden;
  }

  .nav-scroller .nav {
    display: flex;
    flex-wrap: nowrap;
    padding-bottom: 1rem;
    margin-top: -1px;
    overflow-x: auto;
    text-align: center;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .btn-bd-primary {
    --bd-violet-bg: #712cf9;
    --bd-violet-rgb: 112.520718, 44.062154, 249.437846;

    --bs-btn-font-weight: 600;
    --bs-btn-color: var(--bs-white);
    --bs-btn-bg: var(--bd-violet-bg);
    --bs-btn-border-color: var(--bd-violet-bg);
    --bs-btn-hover-color: var(--bs-white);
    --bs-btn-hover-bg: #6528e0;
    --bs-btn-hover-border-color: #6528e0;
    --bs-btn-focus-shadow-rgb: var(--bd-violet-rgb);
    --bs-btn-active-color: var(--bs-btn-hover-color);
    --bs-btn-active-bg: #5a23c8;
    --bs-btn-active-border-color: #5a23c8;
  }

  .bd-mode-toggle {
    z-index: 1500;
  }

  .bd-mode-toggle .dropdown-menu .active .bi {
    display: block !important;
  }

