/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;600;700&family=Montserrat:wght@300;400;600;700&display=swap');

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #545454;
  background-color: #f9f9f2;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 3rem;
  font-weight: 600;
}

h2 {
  font-size: 2.5rem;
  font-weight: 600;
}

h3 {
  font-size: 2.7rem;
  font-weight: 600;
}

h4 {
  font-size: 2.5rem;
  font-weight: 600;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style-type: none;
}

section {
  padding: 6rem 0;
}

.circle {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: #f67e55;
  margin: 0 auto 2rem;
}

.small-circle {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: #f67e55;
  margin-bottom: 2rem;
}

/* Header & Navigation */
header {
  background-color: #e7e7cb;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#menu {
  position: relative;
  height: 6rem;
  padding: 0 2rem;
  border-radius: 0;
}

#menu ul {
  display: flex;
  height: 100%;
  align-items: center;
}

#menu li {
  position: relative;
}

#menu a {
  display: block;
  padding: 0 1.5rem;
  line-height: 6rem;
  font-size: 1.6rem;
  text-transform: capitalize;
  transition: all 0.3s ease;
}

#menu a:hover {
  color: #0099CC;
  background: #f9f9f2;
}

#menu .lisa-name a {
  font-size: 3rem;
  font-weight: 500;
  padding-right: 3rem;
}

.dropdown {
  display: none;
}

.dropdown-menu {
  position: absolute;
  background: #444444;
  width: 17rem;
  display: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu a {
  color: white;
  padding: 1rem 1.5rem;
  line-height: normal;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-toggle:after {
  content: "⮟";
  margin-left: 0.5rem;
  font-size: 1rem;
}

#menu input, #menu label {
  display: none;
}

/* Hero Section */
#hero {
  padding: 6rem 0;
  background-color: #f9f9f2;
}

#hero .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4rem;
}

.hero-image-container {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.hero-image {
  width: 70%;
  max-width: 35rem;
  border-radius: 50%;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.hero-image:hover {
  transform: scale(1.02);
}

.hero-text {
  flex: 1;
  min-width: 300px;
}

.hero-text h1, .hero-text h2 {
  margin-bottom: 1.5rem;
}

.hero-text p {
  font-size: 2rem;
  margin-bottom: 3rem;
  font-weight: 400;
}

.quote {
  border-left: 4px solid #f67e55;
  padding-left: 2rem;
  margin: 3rem 0;
}

.quote h3 {
  font-size: 2rem;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 1rem;
}

.quote span {
  font-size: 1.8rem;
  font-weight: 600;
  display: block;
}

/* About Me Section */
#ueber-mich {
  background-color: #FAE7A5;
  padding: 6rem 0;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  margin-bottom: 5rem;
}

.about-text-grid {
  flex: 2;
  min-width: 300px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.about-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-item p {
  font-size: 1.7rem;
  text-align: center;
}

.about-image {
  flex: 1;
  min-width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
  max-width: 100%;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.02);
}

.personal-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 5rem;
}

.personal-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 600px;
  margin-bottom: 4rem;
}

.personal-item h4 {
  margin-bottom: 2rem;
}

.education {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
}

.education h3 {
  margin-bottom: 2rem;
  font-size: 2.2rem;
}

.education ul {
  width: 100%;
}

.education li {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  padding-left: 3rem;
  position: relative;
}

.education li::before {
  content: "→";
  color: #d9ad0d;
  font-size: 1.5rem;
  position: absolute;
  left: 0;
}

/* Beratung Section */
#beratung {
  padding: 6rem 0;
  background-color: #f9f9f2;
}

.beratung-content {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  align-items: flex-start;
}

.therapy-image {
  flex: 1;
  min-width: 300px;
}

.therapy-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
}

.therapy-boxes {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.therapy-box {
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.therapy-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.therapy-box h3, .therapy-box h4 {
  margin-bottom: 2rem;
}

.paar {
  background-color: #f8f1d3;
}

.einzel {
  background-color: #fcf3cd;
}

.therapy-text p {
  margin-bottom: 1.5rem;
  font-size: 1.7rem;
}

/* Footer */
footer {
  background-color: #e7e7cb;
  padding: 5rem 0;
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
}

.social-links i {
  font-size: 4rem;
  color: #545454;
  transition: color 0.3s ease;
}

.social-links i:hover {
  color: #0099CC;
}

.copy {
  font-size: 1.5rem;
  color: #545454;
}

/* Scroll to Top Button */
#scrollToTopButton {
  display: none;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background-color: #d9ad0d;
  color: white;
  font-size: 2.5rem;
  border: 2px solid #d9ad0d;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 999;
}

#scrollToTopButton:hover {
  background-color: #f9f9f2;
  color: #545454;
  border: 2px solid #545454;
}

/* Cookie Banner Styles */
.cc-nb-main-container {
  font-family: 'Montserrat', sans-serif !important;
  color: #545454 !important;
  background-color: #f9f9f2 !important;
}

.cc-nb-text {
  max-width: 70% !important;
}

.termsfeed-com---palette-light .cc-nb-okagree,
.termsfeed-com---palette-light .cc-nb-reject,
.termsfeed-com---palette-light .cc-nb-changep {
  background-color: #545454 !important;
  color: white !important;
  transition: all 0.3s ease !important;
}

.termsfeed-com---palette-light .cc-nb-okagree:hover,
.termsfeed-com---palette-light .cc-nb-reject:hover,
.termsfeed-com---palette-light .cc-nb-changep:hover {
  color: #0099CC !important;
  background: #f9f9f2 !important;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  html {
    font-size: 60%;
  }
  
  .container {
    width: 95%;
  }
  
  #hero .container, 
  .about-content, 
  .beratung-content {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-image-container, 
  .hero-text,
  .about-text-grid,
  .about-image,
  .therapy-image,
  .therapy-boxes {
    width: 100%;
  }
  
  .hero-image {
    width: 60%;
  }
  
  .hero-text {
    text-align: center;
  }

  .about-text-grid {
    grid-template-columns: 1fr;
  }
  
  .about-item, .personal-item, .education {
    align-items: center;
    text-align: center;
  }
  
  .education li {
    text-align: left;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 55%;
  }
  
  #menu {
    padding: 0;
  }
  
  #menu ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 6rem;
    left: 0;
    width: 100%;
    background: #e7e7cb;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 5px;
    border-radius: 0 0 10px 10px;
  }
  
  #menu li {
    width: 100%;
    background-color: #f8f1d3;
    opacity: 0.9;
    margin-bottom: 2px;
    border-left: 3px solid #f67e55;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }

  #menu li:hover {
    background-color: #fcf3cd;
    transform: translateX(5px);
  }

  #menu li.lisa-name {
    background-color: #fae7a5;
    border-left: 3px solid #d9ad0d;
  }
  
  #menu a {
    color: #545454;
    padding: 1.5rem;
    line-height: normal;
  }
  
  .dropdown-menu {
    position: static;
    width: 100%;
    background: #e7e7cb;
    box-shadow: none;
  }

  .dropdown-menu li {
    background-color: #fae7a5 !important;
    border-left: 3px solid #d9ad0d !important;
    padding-left: 10px;
  }
  
  .dropdown-menu a {
    padding-left: 3rem;
    font-size: 1.5rem;
  }

  #menu a {
    color: #545454;
    padding: 1.5rem;
    line-height: normal;
  }
  
  #menu input {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 6rem;
    height: 6rem;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
  }
  
  #menu label {
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    width: 6rem;
    height: 6rem;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    cursor: pointer;
  }
  
  #menu label:before {
    content: "≡";
  }
  
  #menu input:checked + label:before {
    content: "×";
  }
  
  #menu input:checked ~ ul {
    display: flex;
  }
  
  .hero-image {
    width: 70%;
  }
  
  section {
    padding: 4rem 0;
  }
  @keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

#menu input:checked ~ ul {
  display: flex;
  animation: slideDown 0.3s ease;
}
}

@media (max-width: 480px) {
  html {
    font-size: 50%;
  }
  
  .hero-image {
    width: 85%;
  }
  
  .therapy-box {
    padding: 2rem;
  }
  
  .social-links {
    gap: 2rem;
  }
  
  .social-links i {
    font-size: 3.5rem;
  }
}

/* Contact Page Styles */

#contact {
  padding: 6rem 0;
  background-color: #f9f9f2;
}

.contact-header {
  text-align: center;
  margin-bottom: 5rem;
}

.contact-header h2 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.contact-content {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  margin-bottom: 3rem;
}

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

.address {
  font-size: 2rem;
  margin-bottom: 3rem;
}

.address li {
  margin-bottom: 0.8rem;
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  font-weight: 600;
  max-width: 80%;
}

.contact-details {
  margin-top: 3rem;
  border-top: 1px solid #d9ad0d;
  padding-top: 2rem;
}

.contact-details li {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.contact-details span {
  font-weight: 600;
  margin-right: 1rem;
  min-width: 6rem;
}

.phone, .email {
  color: #0099CC;
  transition: color 0.3s ease;
}

.phone:hover, .email:hover {
  color: #d9ad0d;
  text-decoration: underline;
}

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

.contact-map {
  width: 100%;
  height: 450px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
}

.contact-form-container {
  background-color: #f8f1d3;
  border-radius: 10px;
  padding: 4rem;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
  max-width: 800px;
  margin: 0 auto;
}

.form-header {
  text-align: center;
  margin-bottom: 3rem;
}

.form-header h3 {
  font-size: 2.7rem;
  margin-bottom: 1rem;
}

.form-header p {
  font-size: 1.8rem;
  color: #545454;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

.form-group {
  flex: 1;
  min-width: 250px;
}

.message-group {
  margin-bottom: 3rem;
}

form label {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  color: #545454;
}

form input, form textarea {
  width: 100%;
  padding: 1.2rem;
  border: 1px solid #d9ad0d;
  border-radius: 5px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  background-color: #fcf3cd;
  color: #545454;
  transition: all 0.3s ease;
}

form input:focus, form textarea:focus {
  outline: none;
  border-color: #f67e55;
  box-shadow: 0 0 0 2px rgba(246, 126, 85, 0.2);
}

form textarea {
  min-height: 15rem;
  resize: vertical;
}

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

form button {
  background-color: #d9ad0d;
  color: white;
  border: 2px solid #d9ad0d;
  padding: 1.2rem 3rem;
  font-size: 1.8rem;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

form button:hover {
  background-color: #f9f9f2;
  color: #545454;
  border-color: #545454;
}

#result {
  text-align: center;
  font-size: 1.6rem;
  margin-top: 2rem;
  min-height: 2.4rem;
}

/* Responsive Styles for Contact Page */
@media (max-width: 768px) {
  .contact-info {
    flex-direction: column;
    align-items: center;
  }
  
  .address-container {
    width: 100%;
    text-align: center;
  }
  
  .contact-info h3 {
    max-width: 100%;
    text-align: center;
  }
  
  .contact-details {
    margin-left: auto;
    margin-right: auto;
  }
  
  .contact-details li {
    justify-content: center;
  }
  
  .map-container {
    width: 100%;
  }
  
  .contact-form-container {
    padding: 3rem 2rem;
  }
}

@media (max-width: 480px) {
  .form-row {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .form-group {
    width: 100%;
  }
  
  form button {
    width: 100%;
  }
}

/* Demo Modal Styles */
.demo-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  overflow: auto;
  animation: fadeIn 0.3s ease;
}

.demo-modal.show {
  display: block;
}

.demo-modal-content {
  background-color: #f9f9f2;
  margin: 10% auto;
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  width: 90%;
  max-width: 600px;
  position: relative;
  animation: slideDown 0.4s ease;
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  color: #545454;
  font-size: 3rem;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-modal:hover {
  color: #d9ad0d;
}

.demo-modal h3 {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #545454;
  border-bottom: 2px solid #f67e55;
  padding-bottom: 1rem;
}

.language-section {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: #f8f1d3;
  border-radius: 8px;
  border-left: 3px solid #d9ad0d;
}

.language-section:last-of-type {
  margin-bottom: 3rem;
}

.language-section h4 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #545454;
}

.language-section p {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  color: #545454;
}

.language-section p:last-child {
  margin-bottom: 0;
}

.modal-buttons {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.modal-buttons button {
  padding: 1rem 2rem;
  font-size: 1.6rem;
  cursor: pointer;
  border-radius: 5px;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 200px;
}

#dont-show-again {
  background-color: #f9f9f2;
  color: #545454;
  border: 2px solid #545454;
}

#dont-show-again:hover {
  background-color: #f8f1d3;
}

#close-modal-btn {
  background-color: #d9ad0d;
  color: white;
  border: 2px solid #d9ad0d;
}

#close-modal-btn:hover {
  background-color: #f9f9f2;
  color: #545454;
  border: 2px solid #545454;
}

/* Modal Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideDown {
  from { transform: translateY(-50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .demo-modal-content {
    margin: 15% auto;
    padding: 2rem;
  }
  
  .modal-buttons {
    flex-direction: column;
  }
  
  .modal-buttons button {
    width: 100%;
  }
  
  .language-section {
    padding: 1rem;
  }
}
