:root {
  --primary-color: #CE9F55;
  --secondary-color: rgba(51, 51, 51, 0.08);
  --main-width: 1000px;
}

.golden{
  color: var(--primary-color);
}

@font-face {
  font-family: 'BreeSerif';
  src: url('../fonts/BreeSerif-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

.quote-container{
  display: flex;
  flex-direction: column;
  max-width: 320px;
}

.logo-image{
  max-width: 320px;
  position: absolute;
}

.quote-image{
  max-width: 200px;
  align-self: flex-end;
  width: 100%;
  height: auto;
  mix-blend-mode: color-burn;
  transform: translateX(-5%) rotate(20deg);
}

.quote-text{
  font-size: 1.25rem;
  color: var(--primary-color);
}

.circle-container {
  width: 200px; /* Adjust the size as needed */
  height: 200px; /* Adjust the size as needed */
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Optional: Adds a slight shadow */
}

.circle-container img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image covers the container without distortion */
}

.image-row{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.about-me{
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
  justify-content: center;

  .right{
    flex: 1;
  }
}

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

h2 {
  font-weight: normal;
  margin-top: 0;
  line-height: 1.25;
}

.intro-container {
  margin: 0 auto;
  display: flex;
  gap: 4rem;
  max-width: var(--main-width);
  flex-direction: row-reverse;
  flex-wrap: wrap;
}

.intro-container .left{
  flex: 1;
  min-width: 300px;
}

.intro-container .right{
  flex: 1;
  min-width: 280px;
}

.logo-container {
  max-width: var(--main-width);
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
}

.intro-text {
  font-size: 1.5rem;
  margin-left: auto;
  z-index: 2;
}

.geige {
  max-width: 500px;
}

.gallery-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  overflow: hidden;
}

.gallery-slide {
  display: none;
  width: 100%;
    position: relative;

    .number{
        position: absolute;
        top: 1rem;
        right: 1rem;
        color: white;
        background-color: var(--secondary-color);
        border-radius: 50%;
        width: 22px;
        height: 22px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

}

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

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.dots-container {
  text-align: center;
  position: absolute;
  bottom: 15px;
  width: 100%;
}

.dot {
  height: 15px;
  width: 15px;
  margin: 0 5px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.active {
  background-color: white;
}

body, html {
  margin: 0;
  padding: 0;
  font-family: 'BreeSerif', sans-serif;
  line-height: 1.6;
  color: #333;
  scroll-behavior: smooth;
}

section {
  padding: 6rem 2rem;
}

.container {
  max-width: var(--main-width);
  margin: 0 auto;
}

header {
  background-color: var(--primary-color);
  color: #fff;
  padding: 1rem;
}

h1, h2 {
  color: #d4af37;
}

.image-placeholder {
  background-color: #eee;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px 0;
}

.quote {
  font-style: italic;
  text-align: center;
  margin: 40px 0;
  color: #d4af37;
}

.offerings {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.offering {
  background-color: #f0e6c0;
  padding: 20px;
  min-width: 250px;
}

.musiktherapy-logo {
  max-width: 400px;
}

footer {
  background-color: var(--primary-color);
  color: #fff;

  .address{
    padding: 2rem 0;
  }

  .dark-strip{
    background-color: var(--secondary-color);
    padding: 1rem;
  }
}


.book-project-images{
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  filter: grayscale(1);
  margin-top: 1.5rem;

  img{
    flex: 1;
    width: calc(33.33% - 2rem);
    height: auto;
    min-width: 130px;
  }
}

#impressum-dialog{
  border: 2px solid var(--primary-color);
  max-height: 600px;
  max-width: 600px;
  height: 100%;
  overflow: visible;
}

.dialog-content
{
  padding: 1rem;
  height: calc(100% - 40px);
  overflow: auto;
}

.close-dialog{
  position: absolute;
  top: 0;
  right: 0;
  left: 1rem;
  padding: 0.5rem;
  background-color: var(--primary-color);
  color: white;
  border: none;
  cursor: pointer;
}


