/*
 Theme Name:     Divi Child-Theme
 Theme URI:      http://www.elegantthemes.com
 Description:    Divi Child-Theme
 Author:         Divi.world
 Author URI:     https://divi.world
 Template:       Divi
 Version:        4.19.1
*/
 
/* =Ab hier kannst du deine CSS-Anpassungen eintragen
------------------------------------------------------- */


/* Hauptfarbpalette - ähnlich zu physio-deutschland.de */
:root {
  --primary-color: #0074b1; /* Hauptblau */
  --secondary-color: #65b2e1; /* Helleres Blau */
  --accent-color: #f2f7fa; /* Sehr helles Blau für Hintergründe */
  --text-color: #333333; /* Dunkelgrau für Text */
  --light-text: #777777; /* Helleres Grau für weniger wichtigen Text */
  --white: #ffffff;
  --light-bg: #f7f9fc;
}

/* Allgemeine Typografie */
body {
  color: var(--text-color);
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--primary-color);
}

h1 {
  font-size: 36px;
  margin-bottom: 30px;
}

h2 {
  font-size: 30px;
  margin-bottom: 25px;
}

h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

/* Header-Styling */
#main-header {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

#top-header {
  background-color: var(--primary-color);
  color: var(--white);
  font-size: 14px;
  font-weight: 400;
}

.et_header_style_left #et-top-navigation nav > ul > li > a {
  padding-bottom: 30px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
}

/* Hauptnavigation */
#top-menu li a {
  color: var(--text-color);
  transition: all 0.3s ease;
}

#top-menu li a:hover, 
#top-menu li.current-menu-item > a {
  color: var(--primary-color);
}

/* Anpassungen für die Startseite */
.home-hero-section {
  padding: 120px 0;
  background-size: cover;
  background-position: center;
}

.home-hero-section h1 {
  font-size: 48px;
  color: var(--white);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.home-hero-section .et_pb_button {
  background-color: var(--primary-color);
  color: var(--white);
  border: 2px solid var(--primary-color);
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.home-hero-section .et_pb_button:hover {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

/* Service-Karten */
.service-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-card .et_pb_module_header {
  font-size: 22px;
  padding: 20px;
  margin-bottom: 0;
  background-color: var(--primary-color);
  color: var(--white);
}

.service-card .et_pb_blurb_description {
  padding: 20px;
}

/* Team-Mitglieder */
.team-member {
  text-align: center;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.team-member img {
  border-radius: 8px 8px 0 0;
}

.team-member h4 {
  margin-top: 20px;
  margin-bottom: 5px;
  font-size: 20px;
}

.team-member .team-position {
  color: var(--light-text);
  font-size: 16px;
  margin-bottom: 15px;
}

/* CTA-Button für Termine */
.appointment-button {
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 12px 24px;
  display: inline-block;
  transition: all 0.3s ease;
}

.appointment-button:hover {
  background-color: var(--secondary-color);
}

/* Testimonials */
.testimonial-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
}

.testimonial-card:before {
  content: "\201C";
  font-size: 80px;
  position: absolute;
  top: 20px;
  left: 20px;
  color: var(--accent-color);
  font-family: Georgia, serif;
  opacity: 0.7;
}

.testimonial-content {
  font-style: italic;
  color: var(--text-color);
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  margin-top: 20px;
  font-weight: 600;
  color: var(--primary-color);
}

/* Footer */
#main-footer {
  background-color: #2c3e50;
  color: #ecf0f1;
}

#footer-widgets .footer-widget h4 {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

#footer-widgets .footer-widget li:before {
  border-color: var(--secondary-color);
}

#footer-widgets .footer-widget a {
  color: #ecf0f1;
}

#footer-widgets .footer-widget a:hover {
  color: var(--secondary-color);
}

/* Kontaktformular */
.et_pb_contact_form_container .et_pb_contact_field input,
.et_pb_contact_form_container .et_pb_contact_field textarea {
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  padding: 12px;
}

.et_pb_contact_form_container .et_pb_contact_submit {
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 4px;
  font-weight: 600;
}

/* Responsive Anpassungen */
@media (max-width: 980px) {
  h1 {
    font-size: 30px;
  }
  
  h2 {
    font-size: 26px;
  }
  
  h3 {
    font-size: 22px;
  }
  
  .home-hero-section {
    padding: 80px 0;
  }
  
  .home-hero-section h1 {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .service-card, .team-member {
    margin-bottom: 30px;
  }
  
  .home-hero-section {
    padding: 60px 0;
  }
  
  .home-hero-section h1 {
    font-size: 30px;
  }
}
