/* Base Styles */
:root {
  --primary-color: #4a6670;
  --secondary-color: #8ba3ad;
  --accent-color: #c4b7a6;
  --text-color: #333;
  --light-text: #f5f5f5;
  --background-color: #f9f9f9;
  --section-bg: #fff;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Raleway', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
  line-height: 1.3;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
}

h3 {
  font-size: 1.75rem;
  color: var(--primary-color);
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-color);
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 5rem 0;
}

.section-bg {
  background-color: var(--section-bg);
  box-shadow: var(--shadow);
  border-radius: 8px;
  padding: 3rem;
  margin: 2rem 0;
}

/* Header */
header {
  position: fixed;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
  padding: 1rem 0;
  transition: var(--transition);
}

header.scrolled {
  padding: 0.5rem 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  margin-right: 1rem;
}

.logo h1 {
  font-size: 1.5rem;
  margin: 0;
}

/* Navigation */
nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 2rem;
}

nav ul li a {
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
}

nav ul li a.active {
  color: var(--primary-color);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../images/header.jpg');
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed; /* Parallax effect */
  color: var(--light-text);
  text-align: center;
  position: relative;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 8px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: var(--primary-color);
  color: var(--light-text);
  border-radius: 4px;
  font-weight: 500;
  transition: var(--transition);
  cursor: pointer;
}

.btn:hover {
  background-color: var(--secondary-color);
  color: var(--light-text);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  color: var(--light-text);
  font-size: 2rem;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-20px) translateX(-50%);
  }
  60% {
    transform: translateY(-10px) translateX(-50%);
  }
}

/* About Section */
.about {
  position: relative;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 0 0 400px;
  position: relative;
  align-self: center;
}

.about-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.about-signature {
  margin-top: 2rem;
}

.qualification {
  margin-top: 0.5rem;
  font-style: italic;
  color: var(--secondary-color);
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background-color: var(--section-bg);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-img {
  height: 300px; /* Increased height by 15% from 250px */
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-img img {
  transform: scale(1.1);
}

.service-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-title {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.service-title i {
  font-size: 1.5rem;
  margin-right: 1rem;
  color: var(--primary-color);
  width: 1.5rem;
  text-align: center;
  display: inline-block;
}

.icon-svg {
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 1rem;
  color: var(--primary-color);
  display: inline-block;
  vertical-align: middle;
}

.service-title h3 {
  margin: 0;
  line-height: 1.75rem;
}

/* Process Section */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}

.step-card {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  background-color: var(--section-bg);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.step-card:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.step-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.step-content {
  flex: 1;
}

/* FAQ Section */
.faq-container {
  margin-top: 3rem;
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  background-color: var(--section-bg);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  transition: var(--transition);
}

.faq-question:hover {
  background-color: #f5f5f5;
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active .faq-answer {
  padding: 1.5rem;
  max-height: 500px;
  border-top: 1px solid #eee;
}

.faq-item.active .faq-question {
  background-color: var(--primary-color);
  color: var(--light-text);
}

/* Contact Section */
.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.contact-info {
  background-color: var(--section-bg);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.location-cards {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.location-wrapper {
  display: flex;
  gap: 2rem;
  align-items: stretch;
  padding: 2rem;
  background: var(--section-bg);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.location-wrapper:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.location-wrapper .location-card {
  flex: 1;
  margin: 0;
  background: none;
  box-shadow: none;
  padding: 0;
}

.location-wrapper .map {
  flex: 1;
  height: auto;
  min-height: 300px;
  margin: 0;
}

.location-wrapper .map iframe {
  height: 100%;
  min-height: 300px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.location-card {
  background-color: var(--section-bg);
  padding: 1.5rem;
  border-radius: 8px;
  transition: var(--transition);
}

.location-header {
  margin-bottom: 1.5rem;
}

.location-header h3 {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.location-header h3 i {
  margin-right: 0.75rem;
  color: var(--primary-color);
}

.location-day {
  display: flex;
  align-items: center;
  color: var(--secondary-color);
  font-size: 1.1rem;
  margin-left: 2.25rem;
}

.location-day i {
  margin-right: 0.5rem;
}

.location-details {
  margin-left: 2.25rem;
}

.location-details p {
  white-space: pre-line;
  line-height: 1.5;
  margin: 0;
}

.contact-method {
  margin-bottom: 2rem;
}

.contact-method h4 {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.contact-method h4 i {
  margin-right: 1rem;
  color: var(--primary-color);
}

.contact-method a {
  display: block;
  margin-top: 0.5rem;
}

.preferred-contact {
  background-color: rgba(74, 102, 112, 0.1);
  padding: 1rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
  margin-bottom: 2rem;
}

.map {
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Quote Section */
.quote-section {
  position: relative;
  padding: 7rem 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/header.jpg');
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
  color: var(--light-text);
  text-align: center;
}

.quote-content {
  max-width: 800px;
  margin: 0 auto;
}

.quote-content blockquote {
  font-size: 2.5rem;
  font-family: 'Playfair Display', serif;
  line-height: 1.4;
  margin-bottom: 2rem;
  white-space: nowrap; /* Keep in one line for fullscreen */
}

.quote-content cite {
  font-style: normal;
  font-size: 1.2rem;
  opacity: 0.8;
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: var(--light-text);
  padding: 3rem 0 1rem;
}

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

.footer-column h3 {
  color: var(--light-text);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--light-text);
  opacity: 0.8;
  transition: var(--transition);
}

.footer-links a:hover {
  opacity: 1;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--light-text);
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.8;
  font-size: 0.9rem;
}

.footer-column .degrees {
  font-size: 0.9rem;
  color: var(--light-text);
  opacity: 0.8;
  margin-top: 0.25rem;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media screen and (max-width: 992px) {
  h1 {
    font-size: 2.8rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .about-content {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  
  .about-text {
    width: 100%;
  }
  
  .about-image {
    width: 100%;
    max-width: 250px;
  }
  
  .about-signature {
    width: 100%;
    text-align: center;
    order: 2;
  }
  
  .quote-content blockquote {
    white-space: normal;
    font-size: 2rem;
  }
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .header-container {
    position: relative;
  }
  
  nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--section-bg);
    box-shadow: var(--shadow);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  nav.open {
    max-height: 300px;
  }
  
  nav ul {
    flex-direction: column;
    padding: 1rem 2rem;
  }
  
  nav ul li {
    margin: 0.5rem 0;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .section-bg {
    padding: 2rem 1.5rem;
  }
  
  .step-card {
    flex-direction: column;
    gap: 1rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .quote-section {
    background-attachment: scroll;
    background-position: center 20%;
    padding: 5rem 0;
  }
  
  .quote-content blockquote {
    font-size: 1.8rem;
    white-space: normal;
    padding: 0 1rem;
  }
  
  .hero {
    background-attachment: scroll;
    background-position: center 20%;
  }
}

@media screen and (max-width: 576px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .hero-content {
    padding: 1.5rem;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .quote-content blockquote {
    font-size: 1.5rem;
  }
  
  .about-image {
    max-width: 250px;
  }
}

@media screen and (max-width: 768px) {
  .location-wrapper {
    flex-direction: column;
    padding: 1.5rem;
  }
  
  .location-wrapper .map {
    min-height: 250px;
  }
  
  .location-wrapper .map iframe {
    min-height: 250px;
  }
}

.contact-cards {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
}

.contact-card {
  flex: 1;
  background: var(--section-bg);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contact-card h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.contact-card i {
  font-size: 1.5rem;
  margin-right: 0.5rem;
  color: var(--primary-color);
}

.contact-card p {
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.contact-card a {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--primary-color);
}

.contact-card a:hover {
  color: var(--secondary-color);
}

@media screen and (max-width: 768px) {
  .contact-cards {
    flex-direction: column;
  }
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background-color: #f5f5f5;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.static-map {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) opacity(30%);
    position: absolute;
    top: 0;
    left: 0;
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 80%;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.map-overlay p {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.map-overlay .privacy-notice {
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.load-map {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-map:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--section-bg);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1.5rem;
    animation: slideUp 0.3s ease-out;
}

.cookie-banner.hiding {
    animation: slideDown 0.3s ease-out;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content h3 {
    margin-bottom: 1rem;
}

.cookie-settings {
    margin: 1.5rem 0;
}

.cookie-option {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f5f5f5;
    border-radius: 4px;
}

.cookie-option input[type="checkbox"] {
    margin-top: 0.25rem;
    margin-right: 1rem;
}

.cookie-option label {
    flex: 1;
}

.cookie-option strong {
    display: block;
    margin-bottom: 0.25rem;
}

.cookie-option span {
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.btn-secondary {
    background-color: #f5f5f5;
    color: var(--text-color);
}

.btn-secondary:hover {
    background-color: #e5e5e5;
    color: var(--text-color);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(100%);
    }
}

.privacy-section {
    padding-top: 120px;
}

.privacy-section h1 {
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.privacy-section h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.privacy-section h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.privacy-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.privacy-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.privacy-section li {
    margin-bottom: 0.5rem;
}

.privacy-update {
    margin-top: 3rem;
    font-style: italic;
    color: var(--secondary-color);
}

/* Icon Styles */
.fa-spa:before {
    content: "\f5bb";
}

.fa-leaf:before {
    content: "\f06c";
}

.fa-compass:before {
    content: "\f14e";
}

.fa-users:before {
    content: "\f0c0";
}

.fa-air-freshener:before {
    content: "\f5d0";
}

.fa-heartbeat:before {
    content: "\f21e";
}

.fa-envelope:before {
    content: "\f0e0";
}

.fa-phone-alt:before {
    content: "\f879";
}

.fa-calendar-day:before {
    content: "\f783";
}

/* Remove old icon styles */
.icon {
    display: none;
}

.contact-card h3 i,
.location-card h3 i {
    margin-right: 0.5rem;
}

.location-header {
    margin-bottom: 0.5rem;
}

.location-header h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.location-day {
    font-size: 0.9em;
    margin-left: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.location-card p {
    margin: 0;
    white-space: pre-line;
    line-height: 1.5;
}

.contact-card h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Entferne Blog-Styles */
.blog-section,
.blog-grid,
.blog-card,
.blog-img,
.blog-content,
.blog-date,
.blog-title,
.blog-excerpt,
.blog-link,
.blog-modal,
.blog-modal-content,
.blog-post-content,
.close-modal {
    display: none;
}

.trillium-icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    mask: url('../images/trillium-icon.svg') no-repeat center;
    -webkit-mask: url('../images/trillium-icon.svg') no-repeat center;
    mask-size: contain;
    -webkit-mask-size: contain;
    background-color: currentColor;
}