/* Contact Form */
.contact-section {
    background-color: var(--beige-light);
    padding: 80px 0;
  }
  
  .contact-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }
  
  .wpcf7-form label {
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
  }
  
  .wpcf7-form input[type="text"],
  .wpcf7-form input[type="email"],
  .wpcf7-form input[type="tel"],
  .wpcf7-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
  }
  
  .wpcf7-form textarea {
    height: 150px;
  }
  
  .wpcf7-form input[type="submit"] {
    background-color: var(--beige-dark);
    color: var(--text-color);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  
  .wpcf7-form input[type="submit"]:hover {
    background-color: var(--beige-darker);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }/**
   * Main stylesheet for Symptomfrei Academy
   * Contains all detailed styling for the theme
   */
  
  /* Variables */
  :root {
    --beige-light: #f5f2ea;
    --beige-dark: #d9cdb3;
    --beige-darker: #c2b491;
    --text-color: #9C7468;
    --white: #ffffff;
  }
  
  /* Global Styles */
  html, body {
    overflow-x: hidden;
    max-width: 100%;
  }

  body {
    color: var(--text-color);
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  p {
    margin-bottom: 1.5rem;
  }
  
  a {
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  .btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--beige-dark);
    color: var(--text-color);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .btn:hover {
    background-color: var(--beige-darker);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .btn-shimmer {
    position: relative;
    overflow: hidden;
  }
  
  .btn-shimmer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
      to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.3) 50%,
      rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    transition: all 0.6s ease;
    opacity: 0;
  }
  
  .btn-shimmer:hover::after {
    animation: shimmer 1.5s infinite;
    opacity: 1;
  }
  
  @keyframes shimmer {
    0% {
      transform: translateX(-100%) rotate(30deg);
    }
    100% {
      transform: translateX(100%) rotate(30deg);
    }
  }
  
  section {
    padding: 80px 0;
  }
  
  /* Header Styles */
  .site-header {
    background-color: var(--beige-light);
    padding: 0px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .site-logo {
    max-height: 65px;
  }
  
  .nav-desktop {
    display: none;
  }
  
  .nav-desktop ul {
    display: flex;
    list-style: none;
  }
  
  .nav-desktop ul li {
    margin-left: 25px;
  }
  
  .nav-desktop ul li a {
    font-weight: 600;
    position: relative;
  }
  
  .nav-desktop ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--beige-darker);
    transition: width 0.3s ease;
  }
  
  .nav-desktop ul li a:hover::after {
    width: 100%;
  }
  
  .header-icons {
    display: flex;
    align-items: center;
  }
  
  .instagram-icon {
    margin-right: 20px;
    font-size: 24px;
  }
  
  .burger-menu {
    display: block;
    cursor: pointer;
    font-size: 24px;
  }
  
  /* Mobile Navigation */
  .mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: var(--beige-light);
    z-index: 1001;
    padding: 50px;
    transition: right 0.3s ease;
    overflow-y: auto;
  }
  
  .mobile-nav.active {
    right: 0;
  }
  
  .close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
  }
  
  .mobile-nav ul {
    list-style: none;
    margin-top: 50px;
  }
  
  .mobile-nav ul li {
    margin-bottom: 20px;
  }
  
  .mobile-nav ul li a {
    font-size: 18px;
    font-weight: 600;
  }
  
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  /* Hero Section */
  .hero-section {
    padding-top: 120px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
  }

  .hero-content-wrapper {
    width: 100%;
    max-width: 650px;
  }

  .hero-main-title {
    font-family: 'Lora', serif;
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 60px;
    color: #7d6a58;
    font-weight: 400;
    letter-spacing: 0.5px;
  }

  .hero-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 500px;
  }

  .hero-cta-box {
    position: relative;
    padding-left: 18px;
    padding-right: 20px;
    margin-bottom: 15px;
    min-height: 95px;
    display: flex;
    align-items: center;
  }

  .hero-deco-lines {
    position: absolute;
    left: -35px;
    top: 50%;
    transform: translateY(-50%);
    width: 155px;
    height: auto;
    opacity: 1;
    z-index: 1;
  }

  .hero-cta-text {
    position: relative;
    z-index: 2;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1.2px;
    line-height: 1.7;
    color: #7d6a58;
    font-family: 'Nunito Sans', sans-serif;
    text-align: left;
    margin: 0;
  }

  .hero-arrow-img {
    display: block;
    width: 30px;
    height: auto;
    margin-left: 80px;
    margin-bottom: 10px;
  }

  .hero-cta-btn {
    display: inline-block;
    background-color: #ffffff;
    color: #7d6a58;
    border: none;
    padding: 16px 40px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.2px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    line-height: 1.5;
    text-align: center;
    margin-left: 80px;
  }

  .hero-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background-color: #f9f9f9;
    color: #7d6a58;
  }
  
  /* Video Section */
  .video-section {
    background-color: var(--beige-light);
  }
  
  .video-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .video-wrapper {
    width: 100%;
    max-width: 800px;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
  }
  
  .coaching-content {
    max-width: 800px;
    text-align: center;
  }
  
  /* Text Sections */
  .text-section {
    background-color: var(--white);
  }
  
  .text-container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .text-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
  }
  
  /* Vision Section */
  .vision-section {
    background-color: var(--beige-light);
  }
  
  .vision-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .vision-content {
    max-width: 800px;
    text-align: center;
    margin-bottom: 60px;
  }
  
  /* FAQ Section */
  .faq-section {
    background-color: var(--white);
  }
  
  .faq-container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .faq-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
  }
  
  .faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--beige-dark);
    padding-bottom: 20px;
  }
  
  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 15px 0;
  }
  
  .faq-question h3 {
    font-size: 18px;
    margin-bottom: 0;
  }
  
  .faq-question span {
    font-size: 24px;
    transition: transform 0.3s ease;
  }
  
  .faq-answer {
    display: none;
    overflow: hidden;
  }

  .faq-answer div {
    padding-top: 15px;
    padding-bottom: 30px;
    line-height: 1.7;
  }

  .faq-item.active .faq-question span {
    transform: rotate(45deg);
  }

  /* Verbesserte Darstellung des Plus-Zeichens */
  .faq-question span {
    font-size: 24px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
  }
  
  /* Footer */
  .site-footer {
    background-color: var(--beige-dark);
    padding: 60px 0 30px;
  }
  
  .footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .footer-logo {
    max-height: 60px;
    margin-bottom: 30px;
  }
  
  .social-icons {
    display: flex;
    margin-bottom: 30px;
  }
  
  .social-icon {
    margin: 0 10px;
    font-size: 24px;
    color: var(--text-color);
    transition: all 0.3s ease;
  }
  
  .social-icon:hover {
    transform: translateY(-5px);
  }
  
  .footer-links {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .footer-link {
    margin: 0 15px;
    font-size: 14px;
    color: var(--text-color);
  }
  
  .footer-link:hover {
    text-decoration: underline;
  }
  
  /* Dynamic Content Sections */
  .content-section {
    padding: 80px 0;
  }
  
  .section-standard, .section-vision, .section-highlight {
    padding: 80px 0;
  }
  
  .bg-beige {
    background-color: var(--beige-light);
  }
  
  .bg-light {
    background-color: var(--white);
  }
  
  .section-vision .section-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .section-highlight {
    background-color: var(--beige-dark);
    color: var(--text-color);
  }
  
  .section-title {
    margin-bottom: 30px;
    font-size: 28px;
    text-align: center;
  }
  
  .section-body {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .custom-coaching-section {
    padding: 80px 0;
  }
  
  .no-form-placeholder {
    text-align: center;
    padding: 40px;
    background-color: #f9f9f9;
    border-radius: 5px;
    border: 1px dashed #ddd;
  }
  
  .no-form-placeholder p {
    margin-bottom: 20px;
  }
  
  /* Media Queries */
  @media (min-width: 768px) and (max-width: 991px) {
    .hero-main-title {
      font-size: 50px;
    }

    .hero-cta-box {
      padding-left: 45px;
      margin-bottom: 20px;
      min-height: 105px;
    }

    .hero-cta-text {
      font-size: 17px;
      letter-spacing: 1.2px;
    }

    .hero-cta-btn {
      font-size: 11px;
      padding: 18px 45px;
      margin-left: 110px;
    }

    .hero-deco-lines {
      width: 165px;
      left: -15px;
    }

    .hero-arrow-img {
      width: 40px;
      margin-left: 110px;
      margin-bottom: 12px;
    }

    .video-wrapper {
      padding-bottom: 42.85%; /* Closer to 21:9 for widescreen */
    }

    .text-title, .faq-title {
      font-size: 36px;
    }

    .faq-question h3 {
      font-size: 20px;
    }
  }

  @media (min-width: 992px) {
    .nav-desktop {
      display: block;
    }

    .burger-menu {
      display: none;
    }

    .hero-section {
      min-height: 90vh;
    }

    .hero-content-wrapper {
      max-width: 750px;
    }

    .hero-main-title {
      font-size: 50px;
      margin-bottom: 80px;
    }

    .hero-cta-wrapper {
      max-width: 550px;
    }

    .hero-cta-box {
      padding-left: 52px;
      margin-bottom: 25px;
      min-height: 115px;
    }

    .hero-cta-text {
      font-size: 18px;
      letter-spacing: 1.3px;
    }

    .hero-deco-lines {
      width: 195px;
      left: -25px;
    }

    .hero-arrow-img {
      width: 45px;
      margin-left: 130px;
      margin-bottom: 15px;
    }

    .hero-cta-btn {
      font-size: 12px;
      padding: 20px 55px;
      margin-left: 130px;
    }

    .text-section, .vision-section {
      padding: 100px 0;
    }

    .text-title, .faq-title {
      font-size: 42px;
    }

    .footer-container {
      flex-direction: row;
      justify-content: space-between;
      align-items: flex-start;
    }

    .footer-logo {
      margin-bottom: 0;
    }

    .social-icons {
      margin-bottom: 0;
    }
  }

  @media (min-width: 768px) {
    .hero-section {
      background-position: center center;
    }
  }

  @media (max-width: 767px) {
    .hero-section {
      background-position: 60% top;
      margin-top: -20px;
    }

    .hero-cta-wrapper {
      margin-top: 40px;
    }

    .hero-cta-box {
      padding-left: 30px;
      padding-top: 8px;
      min-height: 75px;
    }

    .hero-cta-text {
      font-size: 13px;
    }

    .hero-deco-lines {
      width: 110px;
      left: -10px;
      top: 55%;
    }

    .hero-arrow-img {
      width: 25px;
      margin-left: 40px;
      margin-bottom: 8px;
    }

    .hero-cta-btn {
      font-size: 9px;
      padding: 14px 30px;
      margin-left: 40px;
    }
  }

  /* Content Blocks */
  .content-blocks {
    max-width: 900px;
    margin: 0 auto;
  }

  .content-block {
    margin-bottom: 40px;
  }

  .content-block:last-child {
    margin-bottom: 0;
  }

  /* Text Box Block */
  .text-box-block {
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }

  .text-box-block.bg-white {
    background-color: #ffffff;
  }

  .text-box-block.bg-beige {
    background-color: var(--beige-light);
  }

  .text-box-block p:last-child {
    margin-bottom: 0;
  }

  /* Button Block */
  .button-block {
    text-align: center;
  }

  .button-block .btn {
    min-width: 200px;
  }

  .btn-secondary {
    background-color: transparent;
    color: var(--text-color);
    border: 2px solid var(--beige-dark);
  }

  .btn-secondary:hover {
    background-color: var(--beige-dark);
    color: var(--text-color);
  }

  /* Image Slider Block */
  .image-slider-block {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }

  .slider-container {
    position: relative;
    width: 100%;
    padding-bottom: 0%; /* 3:2 aspect ratio */
    overflow: hidden;
  }

  .slider-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.5s ease-in-out;
  }

  .slider-image {
    min-width: 100%;
    height: 100%;
    position: relative;
  }

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

  .slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--text-color);
    transition: all 0.3s ease;
    z-index: 10;
  }

  .slider-nav:hover {
    background-color: var(--beige-dark);
    transform: translateY(-50%) scale(1.1);
  }

  .slider-nav.prev {
    left: 20px;
  }

  .slider-nav.next {
    right: 20px;
  }

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

  .slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    border: 2px solid var(--beige-dark);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .slider-dot.active {
    background-color: var(--beige-dark);
    transform: scale(1.2);
  }

  @media (max-width: 767px) {
    .text-box-block {
      padding: 25px;
    }

    .slider-nav {
      width: 40px;
      height: 40px;
      font-size: 18px;
    }

    .slider-nav.prev {
      left: 10px;
    }

    .slider-nav.next {
      right: 10px;
    }

    .slider-dots {
      bottom: 15px;
    }

    .slider-dot {
      width: 10px;
      height: 10px;
    }
  }

/* Fix for content hidden under fixed header */

/* Adjust anchor scroll position for fixed header */
.section-block,
.content-section,
.faq-section,
.contact-section {
    scroll-margin-top: 90px;
}

/* Add spacing for regular pages (not homepage with hero) */
body:not(.home) .site-content,
body.page:not(.page-template-front-page) main {
    padding-top: 110px;
}

/* Fix: Hero Section positioning with fixed header */
.hero-section {
    margin-top: 0;
    padding-top: 120px;
}

/* Mobile Hero Title - 4 lines specific breaks */
@media (max-width: 767px) {
    /* Mobile hero section positioning - must override general rule */
    .hero-section {
        background-position: 60% top !important;
        margin-top: -20px !important;
    }

    .hero-cta-wrapper {
        margin-top: 90px;
    }

    .hero-main-title {
        font-size: 32px;
        line-height: 1.4;
        margin-bottom: 0px;
        margin-top: 0px;
    }

    /* Show mobile title, hide desktop title */
    .hero-title-desktop br {
        display: none;
    }

    /* Mobile CTA Box with rounded transparent background */
    .hero-cta-box {
        background: rgba(255, 255, 255, 0.35);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border-radius: 15px;
        padding: 15px 15px 15px 30px;
        margin-bottom: 20px;
        position: relative;
    }
    
    .hero-cta-text {
        font-size: 11px;
        line-height: 1.3;
        position: relative;
        z-index: 2;
    }
    
    .hero-deco-lines {
        opacity: 0.6;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .hero-section {
        margin-top: -90px;
        padding-top: 210px;
    }
}

/* Show/Hide hero title versions based on screen size */
.hero-title-mobile {
    display: none;
}

.hero-title-desktop {
    display: inline;
}

@media (max-width: 767px) {
    .hero-title-mobile {
        display: inline;
    }
    
    .hero-title-desktop {
        display: none;
    }
}
