:root {
	--dark-blue-color: #0B2A55;
	--form-color: #e2cdb2;
	--form-accent-color: #cd9a62;
	--red-color: #D9534F;
	--green-color: #5CB85C;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #300122;
}

@font-face {
  font-family: 'Brevia';
  src: url('../images/Brevia-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Brevia';
  src: url('../images/Brevia-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
	font-family: 'Brevia';
	src: url('../images/Brevia-Bold.woff2') format('woff2');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

body, input, textarea, button {
  font-family: 'Brevia', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1.25rem;
	font-weight: 300;
  line-height: 1.5;
	overflow-wrap: break-word;
	@media (max-width: 768px) {
		font-size: 1.2rem;
	}
}

a {
  text-decoration: underline;
}

a:visited {
	color: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Baloo Da 2', sans-serif;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

p {
	margin-bottom: 1.5rem;
}

strong {
	font-weight: 700;
}

.text-center {
	text-align: center;
}

.container {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 24px;
	position: relative;
	z-index: 1;
	.push-right {
		@media (min-width: 768px) {
			margin-left: auto;
			margin-right: 0;
			width: 60%;
		}
	}
}

.hero {
  background: radial-gradient(rgb(236,239,204) 0%, rgb(224,240,239) 100%);
  padding: 120px 0;
  min-height: 720px;
	@media (max-width: 768px) {
		min-height: 850px;
	}
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 0px;
  width: 800px;
  height: 800px;
  background: url('../images/bg-woman.svg') no-repeat center;
  background-size: contain;
  transform: translateY(calc(-50% + 50px));
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 55%;
  width: 680px;
  height: 440px;
  background: url('../images/bg-esalen.png') no-repeat center;
  background-size: contain;
  transform: translateX(-50%);
  z-index: 0;
}

.hero .container {
  max-width: 80%;
	@media (max-width: 768px) {
		max-width: 90%;
	}
}

.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 10px;
  text-decoration: none;
  margin-right: 1rem;
  margin-bottom: 1rem;
}

.btn-primary {
  background-color: var(--dark-blue-color);
  color: #FCEFE2;
}

.btn-secondary {
  background-color: #FCEFE2;
}

.contact-info {
  margin-top: 60px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-item img {
  width: 41px;
  height: 41px;
}

section {
  padding: 130px 24px 40px;
	position: relative;
	overflow: hidden;
	scroll-margin-top: 100px;
	&.no-padding {
		padding: 20px 24px 20px;
	}
	@media (max-width: 768px) {
		padding: 130px 16px 40px;
	}
}

.bg-cream {
  background: radial-gradient(rgb(255,251,240) 0%, rgb(252,241,207) 100%);
}

.bg-pink {
	background-color: #FCEFE2;
}

.bg-green {
	background: radial-gradient(rgb(236, 239, 204) 0%, rgb(224, 240, 239) 100%);
}

#infos::before {
  content: '';
  position: absolute;
  top: 240px;
  right: 15%;
  width: 150px;
  height: 150px;
  background: url('../images/bg-heart.svg') no-repeat center;
  background-size: contain;
  z-index: 0;
}

#infos::after {
  content: '';
  position: absolute;
  top: -700px;
  left: -250px;
  width: 700px;
  height: 3000px;
  background: url('../images/bg-abstract.svg') no-repeat center;
  background-size: contain;
  z-index: 0;
}

#preise::after {
  content: '';
  position: absolute;
  top: 0;
  right: -150px;
  width: 700px;
  height: 3000px;
  background: url('../images/bg-abstract.svg') no-repeat center;
  background-size: contain;
  transform: rotate(180deg);
  z-index: 0;
}

#ueber-mich::before {
  content: '';
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 300px;
  height: 300px;
  background: url('../images/bg-dandelion.png') no-repeat center;
  background-size: contain;
  z-index: 0;
	@media (max-width: 1000px) {
		opacity: 0.1;
	}
}

#ueber-mich-2::after {
  content: '';
  position: absolute;
  top: 150px;
  left: -20px;
  width: 600px;
  height: 600px;
  background: url('../images/bg-moon.png') no-repeat center;
  background-size: contain;
  z-index: 0;
	@media (max-width: 1300px) {
		opacity: 0.1;
	}
}

#kontakt::before {
  content: '';
  position: absolute;
  top: 50px;
  right: 120px;
  width: 240px;
  height: 240px;
  background: url('../images/bg-email.svg') no-repeat center;
  background-size: contain;
  z-index: 0;
	@media (max-width: 1024px) {
		opacity: 0.1;
	}
}

.columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

ul.bullet-list {
  list-style: none;
  padding: 0;
}

ul.bullet-list li {
  display: flex;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

ul.bullet-list li:before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  min-width: 16px;
  background-color: #cda67b;
  border-radius: 50%;
  margin-top: 0.5rem;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
  text-align: center;
}

.accordion {
  margin: 2rem 0;
}

.accordion details {
  margin-bottom: 1rem;
}

.accordion summary {
  cursor: pointer;
  font-weight: 400;
  background-color: #FCEFE2;
  border-radius: 10px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::before {
  content: '+';
  font-size: 2.5rem;
  line-height: 1;
  flex-shrink: 0;
  color: #300122;
}

.accordion details[open] summary::before {
  content: '−';
}

.accordion details[open] summary {
  border-radius: 10px 10px 0 0;
}

.accordion .accordion-content {
  background-color: #fcf7f0;
  border-radius: 0 0 10px 10px;
  padding: 1.5rem;
}

.profile-image {
  max-width: 100%;
  border-radius: 20px;
  margin: 2rem 0;
}

.slider {
  max-width: 700px;
  margin: 2rem auto;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.slides {
  position: relative;
  width: 100%;
  height: 400px;
}

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

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.7);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  color: var(--dark-blue-color);
  z-index: 10;
  transition: background 0.3s;
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.9);
}

.slider-arrow.prev {
  left: 16px;
}

.slider-arrow.next {
  right: 16px;
}

.slider-nav {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slider-nav button {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s;
}

.slider-nav button.active {
  background: var(--dark-blue-color);
}


footer {
	padding: 24px;
	.content {
		font-size: small;
		display: flex;
		justify-content: space-between;
		width: 100%;
		align-items: center;
	}
}

@media (max-width: 768px) {
  .columns, .price-grid, .footer-content {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }
}
