/*
Theme Name: Hunde Perspektiven
Theme URI: https://hunde-perspektiven.de
Author: Hunde Perspektiven
Author URI: https://hunde-perspektiven.de
Description: Ein responsives WordPress-Theme für Hundetrainerinnen
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hunde-perspektiven
*/

:root {
    --primary-color: #d52b41;
    --text-color: #333232;
    --header-bg: #edbba0;
    --secondary-bg: #f9f7f8;
    --border-radius: 8px;
}

/* Skip Link für Barrierefreiheit */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: bold;
    z-index: 10000;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 6px;
    outline: 2px solid white;
    outline-offset: 2px;
}

/* Screen Reader Only Klasse */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--header-bg);
    padding: 0.6rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.site-header.header-scrolled {
    padding: 0.3rem 0;
    background-color: rgba(237, 187, 160, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Content Abstand zum Header */
.site-main {
    padding-top: 0; /* Kein Abstand für die Startseite */
    background-color: white;
}

/* Abstand nur für andere Seiten */
.page:not(.home) .site-main,
.single:not(.home) .site-main,
.archive:not(.home) .site-main {
    padding-top: 120px;
}

@media (max-width: 768px) {
    .page:not(.home) .site-main,
    .single:not(.home) .site-main,
    .archive:not(.home) .site-main {
        padding-top: 90px; /* Kleinerer Abstand auf mobilen Geräten */
    }
}

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

/* Logo/Site Title */
.site-branding {
    display: flex;
    align-items: center;
}

.entry-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 1rem 0 1rem 0;
    line-height: 1.3;
}

.site-title {
    font-size: 1.5rem;
    margin: 0;
}

.site-title a {
    color: var(--text-color);
    text-decoration: none;
}

.custom-logo-link {
    display: block;
    line-height: 0;
}

.custom-logo-link img {
    max-height: var(--logo-height, 50px);
    width: auto;
    height: auto;
    display: block;
}

/* Header Right Section */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1100;
}

/* CTA Button Standard */
.cta-button {
    background-color: var(--primary-color);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hamburger immer rechts vom CTA */
.hamburger {
    order: 2;
}

/* Responsive Design */
@media screen and (max-width: 767px) {
    .header-content {
        padding: 0 1rem;
    }

    .header-right .cta-button {
        display: none;
    }

    .hamburger {
        order: 1;
    }

    .site-branding {
        flex: 1;
    }

    .custom-logo-link img {
        max-height: 40px;
    }

    .site-header {
        padding: 0.4rem 0;
    }

    .site-header.header-scrolled {
        padding: 0.2rem 0;
    }

    /* CTA Style für den letzten Menüpunkt im mobilen Menü */
    .main-navigation.toggled #primary-menu li:last-child a {
        background-color: var(--primary-color);
        color: white;
        padding: 0.8rem 1.5rem;
        border-radius: var(--border-radius);
        font-size: 1.1rem;
        margin-top: 1rem;
    }

    .main-navigation.toggled #primary-menu li:last-child a:hover {
        opacity: 0.9;
    }

    .main-navigation.toggled #primary-menu li:last-child a::after {
        display: none;
    }
}

/* Menu Button Wrapper */
.menu-button-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-text {
    font-size: 14px;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
}

/* Hamburger Menu */
.hamburger {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
    position: relative;
    z-index: 1001;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.hamburger:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.hamburger.is-active {
    background-color: rgba(255, 255, 255, 0.2);
}

.hamburger-box {
    width: 24px;
    height: 20px;
    display: inline-block;
    position: relative;
    margin: 0;
    padding: 0;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -1px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 24px;
    height: 2px;
    background-color: var(--text-color);
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.2s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -6px;
}

.hamburger-inner::after {
    bottom: -6px;
}

/* Collapse Animation */
.hamburger--collapse .hamburger-inner {
    top: auto;
    bottom: 0;
    transition-duration: 0.2s;
    transition-delay: 0.2s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger--collapse .hamburger-inner::after {
    top: -12px;
    transition: top 0.3s 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.1s linear;
}

.hamburger--collapse .hamburger-inner::before {
    transition: top 0.2s 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger--collapse.is-active .hamburger-inner {
    transform: translate3d(0, -8px, 0) rotate(-45deg);
    transition-delay: 0.3s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger--collapse.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.1s 0.3s linear;
}

.hamburger--collapse.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-90deg);
    transition: top 0.2s 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.2s 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Navigation */
.main-navigation {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(237, 187, 160, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 100px 20px 20px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(-20px);
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-navigation.toggled {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
}

/* Footer Logo im Overlay */
.main-navigation .footer-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    display: block;
}

.main-navigation .footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#primary-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
}

#primary-menu li {
    margin: 4px 0;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.main-navigation.toggled #primary-menu li {
    opacity: 1;
    transform: translateY(0);
    transition-delay: calc(0.1s * var(--i, 0));
}

#primary-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.5rem;
    display: block;
    padding: 4px 0;
    transition: all 0.3s ease;
    font-weight: bold;
    position: relative;
}

#primary-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

#primary-menu a:hover {
    color: var(--primary-color);
}

#primary-menu a:hover::after {
    width: 100%;
}

/* Overlay für das Menü */
.menu-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

/* CTA Button im Overlay */
.main-navigation .cta-button {
    display: none;
}

.main-navigation.toggled .cta-button {
    display: none;
}

/* Modern Footer Styles */
.site-footer {
    background: var(--header-bg);
    color: var(--text-color);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    position: relative;
}

.footer-main {
    display: grid;
    grid-template-columns: 50% 25% 25%;
    gap: 2rem;
    padding: 3rem 0;
}

/* Footer Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    margin-top: 0;
    padding-top: 0;
}

.footer-brand-content {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 0;
}

.footer-logo {
    width: var(--footer-logo-height);
    height: var(--footer-logo-height);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
    line-height: 1.2;
    display: block; /* Für Span-Element */
}

.footer-subtitle {
    font-size: 1rem;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.4;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(51, 50, 50, 0.8);
    text-align: center;
}

/* Footer Navigation */
.footer-navigation {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    margin-top: 0;
    padding-top: 0;
}

#footer-menu {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: flex-start;
}

#footer-menu li {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

#footer-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    display: block;
    padding: 0.2rem 0;
}

#footer-menu a:hover {
    color: var(--primary-color);
}

/* Social Media Section */
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    width: 100%;
    margin-top: 0;
    padding-top: 0;
}

.footer-social h3,
.footer-social-title {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin: 0 0 0.5rem 0;
    text-align: center;
    display: block; /* Für Span-Element */
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--secondary-bg);
    border-radius: 50%;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Copyright */
.site-info {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(51, 50, 50, 0.7);
    padding-top: 2rem;
    border-top: 1px solid rgba(51, 50, 50, 0.1);
}

.footer-webdesign-link {
    color: rgba(51, 50, 50, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-webdesign-link:hover {
    color: rgba(51, 50, 50, 0.9);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-brand-content {
        flex-direction: column;
    }

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

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

    #footer-menu {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    #footer-menu li {
        margin: 0;
    }

    .footer-social {
        align-items: center;
    }
}

/* USP Sektion */
.usp-section {
    padding: 5rem 0;
    background-color: white;
}

.usp-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-color);
    opacity: 0.8;
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.usp-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.usp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.usp-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #e74c3c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    position: relative;
    z-index: 2;
}

.usp-icon i {
    font-size: 2rem;
    color: white;
}

.usp-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.usp-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.usp-image {
    border-radius: 10px;
    overflow: hidden;
    margin-top: 1.5rem;
}

.usp-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.usp-card:hover .usp-image img {
    transform: scale(1.05);
}

/* Responsive USP */
@media (max-width: 768px) {
    .usp-section {
        padding: 3rem 0;
    }
    
    .usp-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .usp-card {
        padding: 1.5rem;
    }
    
    .usp-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 1rem auto;
    }
    
    .usp-icon i {
        font-size: 1.5rem;
    }
    
    .usp-content h3 {
        font-size: 1.3rem;
    }
    
    .usp-image img {
        height: 150px;
    }
}

/* Über mich Teaser Sektion */
.about-teaser-section {
    padding: 5rem 0;
    background: white;
}

.about-teaser-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-teaser-text {
    padding-right: 2rem;
}

.about-teaser-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.about-teaser-features {
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-color);
}

.feature-item i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.about-teaser-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.about-teaser-button:hover {
    background: var(--primary-color-dark, #c0392b);
    border-color: var(--primary-color-dark, #c0392b);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(213, 43, 65, 0.3);
}

.about-teaser-button i {
    transition: transform 0.3s ease;
}

.about-teaser-button:hover i {
    transform: translateX(3px);
}

.about-teaser-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-teaser-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Responsive Über mich Teaser */
@media (max-width: 768px) {
    .about-teaser-section {
        padding: 3rem 0;
    }
    
    .about-teaser-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-teaser-text {
        padding-right: 0;
        order: 2;
    }
    
    .about-teaser-image {
        order: 1;
    }
    
    .about-teaser-image img {
        height: 300px;
    }
    
    .about-teaser-description {
        font-size: 1rem;
    }
    
    .about-teaser-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* CTA Sektion */
.cta-section {
    background: var(--primary-color);
    padding: 5rem 0;
    color: white;
    text-align: center;
}

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

.cta-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .cta-primary {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.cta-section .cta-primary:hover {
    background: #f8f9fa;
    color: var(--primary-color);
    border-color: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.cta-section .cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.cta-section .cta-secondary:hover {
    background: white;
    color: var(--primary-color);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive CTA */
@media (max-width: 768px) {
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-text h2 {
        font-size: 2rem;
    }
    
    .cta-text p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-section .cta-primary,
    .cta-section .cta-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Ablauf Sektion */
.process-section {
    padding: 5rem 0;
    background-color: white;
}

.process-header {
    text-align: center;
    margin-bottom: 4rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.process-step {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #e74c3c);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.step-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.8;
}

.process-cta {
    text-align: center;
    margin-top: 3rem;
}

.process-cta p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.process-button {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.process-button:hover {
    background: var(--primary-color-dark, #c0392b);
    border-color: var(--primary-color-dark, #c0392b);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(213, 43, 65, 0.3);
}

.process-button i {
    transition: transform 0.3s ease;
}

.process-button:hover i {
    transform: translateX(3px);
}

/* Responsive Ablauf */
@media (max-width: 768px) {
    .process-section {
        padding: 3rem 0;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-step {
        padding: 1.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .step-content h3 {
        font-size: 1.2rem;
    }
    
    .process-cta {
        margin-top: 2rem;
    }
    
    .process-cta p {
        font-size: 1.1rem;
    }
    
    .process-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Hero Sektion */
.hero-section {
    position: relative;
    min-height: 100vh;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    color: #fff;
    padding: 0;
    margin-top: 96px; /* Verschiebt die Sektion nach oben */
    padding-top: 100px; /* Kompensiert den negativen Margin */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-section .cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.hero-section .cta-button:hover {
    background-color: var(--primary-color-dark);
}

/* Responsive Styles für Hero Sektion */
@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
        margin-top: 40px;
        padding: 80px 0 3rem 0;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1.2rem;
        line-height: 1.25;
    }

    .hero-text {
        font-size: 1rem;
        margin-bottom: 1.8rem;
        line-height: 1.55;
    }

    .hero-section .cta-button {
        padding: 0.65rem 1.3rem;
        font-size: 0.95rem;
    }

    .hero-buttons {
        gap: 0.9rem;
        margin-top: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 70vh;
        margin-top: 40px;
        padding: 70px 0 2rem 0;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    .hero-text {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }

    .hero-section .cta-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .hero-buttons {
        gap: 0.8rem;
        margin-top: 1.5rem;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color, #e74c3c);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color, #e74c3c);
}

.cta-button:hover {
    background-color: var(--primary-color-dark, #c0392b);
    border-color: var(--primary-color-dark, #c0392b);
    color: white;
}

.cta-button-outline {
    background-color: transparent!important;
    color: var(--primary-color, #e74c3c);
}

.cta-button-outline:hover {
    background-color: var(--primary-color, #e74c3c);
    color: white;
}

.desktop-navigation {
    display: none;
}

@media screen and (min-width: 1024px) {
    .desktop-navigation {
        display: block;
    }

    .desktop-navigation ul {
        display: flex;
        gap: 2rem;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .desktop-navigation a {
        color: var(--text-color);
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
    }

    .desktop-navigation a:hover {
        color: var(--primary-color);
    }

    .desktop-navigation ul li:last-child {
        display: none;
    }

    .hamburger {
        display: none;
    }
}

/* Blog & Single Post Styles */
.blog-section,
.single-post {
    padding: 5rem 0;
    margin-top:0px;
    background-color: white;
}

/* Single Post Styles */
.single-post .entry-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--secondary-bg);
}

.entry-header .entry-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 3rem 0 2rem 0;
    line-height: 1.2;
}

.single-post .entry-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 3rem 0 2rem 0;
    line-height: 1.2;
}

.single-post .entry-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.95rem;
    color: var(--text-color);
    opacity: 0.8;
}

.single-post .entry-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.single-post .entry-meta i {
    color: var(--primary-color);
}

.single-post .post-thumbnail {
    margin-bottom: 3rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.single-post .post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.single-post .entry-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto;
}

.single-post .entry-content h2,
.single-post .entry-content h3,
.single-post .entry-content h4 {
    color: var(--text-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.single-post .entry-content h2 {
    font-size: 1.8rem;
}

.single-post .entry-content h3 {
    font-size: 1.5rem;
}

.single-post .entry-content p {
    margin-bottom: 1.5rem;
}

.single-post .entry-content ul,
.single-post .entry-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.single-post .entry-content li {
    margin-bottom: 0.5rem;
}

.single-post .entry-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 2rem;
    margin: 2rem 0;
    font-style: italic;
    background: var(--secondary-bg);
    padding: 2rem;
    border-radius: 10px;
}

.single-post .entry-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid var(--secondary-bg);
}

.single-post .tags-links {
    margin-bottom: 2rem;
}

.single-post .tags-links a {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    text-decoration: none;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.single-post .tags-links a:hover {
    background: var(--primary-color-dark, #c0392b);
    transform: translateY(-2px);
}

/* Back to Overview Button */
.back-to-overview {
    text-align: center;
    margin-top: 3rem;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.back-button:hover {
    background: var(--primary-color-dark, #c0392b);
    border-color: var(--primary-color-dark, #c0392b);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(213, 43, 65, 0.3);
    color: white;
}

.back-button i {
    transition: transform 0.3s ease;
}

.back-button:hover i {
    transform: translateX(-3px);
}

/* Contact Form 7 Styles */
.wpcf7 {
    max-width: 600px;
    margin: 0 auto;
}

.wpcf7-form {
    display: grid;
    gap: 1.5rem;
}

.wpcf7-form p {
    margin: 0;
}

.wpcf7-form label {
    display: block;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="url"],
.wpcf7-form textarea,
.wpcf7-form select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: white;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form input[type="url"]:focus,
.wpcf7-form textarea:focus,
.wpcf7-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(213, 43, 65, 0.1);
}

.wpcf7-form textarea {
    min-height: 120px;
    resize: vertical;
}

.wpcf7-form input[type="submit"] {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    width: 100%;
    margin-top: 1rem;
}

.wpcf7-form input[type="submit"]:hover {
    background: var(--primary-color-dark, #c0392b);
    border-color: var(--primary-color-dark, #c0392b);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(213, 43, 65, 0.3);
}

.wpcf7-form input[type="submit"]:active {
    transform: translateY(0);
}

/* Checkbox und Radio Button Styles */
.wpcf7-form input[type="checkbox"],
.wpcf7-form input[type="radio"] {
    margin-right: 0.5rem;
    transform: scale(1.2);
}

.wpcf7-form .wpcf7-checkbox,
.wpcf7-form .wpcf7-radio {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.wpcf7-form .wpcf7-checkbox .wpcf7-list-item,
.wpcf7-form .wpcf7-radio .wpcf7-list-item {
    display: flex;
    align-items: center;
    margin: 0;
}

/* Erfolgs- und Fehlermeldungen */
.wpcf7-response-output {
    margin: 2rem 0 0 0 !important;
    padding: 1rem 1.5rem !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    border: none !important;
}

.wpcf7-response-output.wpcf7-mail-sent-ok {
    background: #d4edda !important;
    color: #155724 !important;
    border-left: 4px solid #28a745 !important;
}

.wpcf7-response-output.wpcf7-validation-errors {
    background: #f8d7da !important;
    color: #721c24 !important;
    border-left: 4px solid #dc3545 !important;
}

.wpcf7-response-output.wpcf7-spam-blocked {
    background: #fff3cd !important;
    color: #856404 !important;
    border-left: 4px solid #ffc107 !important;
}

.wpcf7-response-output.wpcf7-mail-sent-ng {
    background: #f8d7da !important;
    color: #721c24 !important;
    border-left: 4px solid #dc3545 !important;
}

/* Spinner/Loading Animation */
.wpcf7-spinner {
    margin-left: 0.5rem !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .wpcf7 {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .wpcf7-form input[type="submit"] {
        padding: 1.2rem 2rem;
        font-size: 1.2rem;
    }
}

/* Optional: Grid Layout für größere Formulare */
.wpcf7-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .wpcf7-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* WordPress Page Content Styles */
.page-content,
.entry-content {
    line-height: 1.7;
    color: var(--text-color);
    font-size: 1.1rem;
}

/* Überschriften */
.page-content h1,
.entry-content h1,
.page-content h2,
.entry-content h2,
.page-content h3,
.entry-content h3,
.page-content h4,
.entry-content h4,
.page-content h5,
.entry-content h5,
.page-content h6,
.entry-content h6 {
    color: var(--text-color);
    font-weight: 700;
    line-height: 1.3;
    margin: 2.5rem 0 1.5rem 0;
}

.page-content h1,
.entry-content h1 {
    font-size: 3.5rem;
    margin: 3rem 0 2rem 0;
}

.page-content h2,
.entry-content h2 {
    font-size: 2rem;
}

.page-content h3,
.entry-content h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
}

.page-content h4,
.entry-content h4 {
    font-size: 1.3rem;
}

.page-content h5,
.entry-content h5 {
    font-size: 1.1rem;
}

.page-content h6,
.entry-content h6 {
    font-size: 1rem;
}

/* Absätze und Abstände */
.page-content p,
.entry-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.page-content p:last-child,
.entry-content p:last-child {
    margin-bottom: 0;
}

/* Listen */
.page-content ul,
.entry-content ul,
.page-content ol,
.entry-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.page-content ul li,
.entry-content ul li,
.page-content ol li,
.entry-content ol li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.page-content ul,
.entry-content ul {
    list-style: none;
    padding-left: 0;
}

.page-content ul li,
.entry-content ul li {
    position: relative;
    padding-left: 1.5rem;
}

.page-content ul li::before,
.entry-content ul li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.page-content ol,
.entry-content ol {
    counter-reset: item;
}

.page-content ol li,
.entry-content ol li {
    counter-increment: item;
    position: relative;
    padding-left: 1.5rem;
}

.page-content ol li::before,
.entry-content ol li::before {
    content: counter(item) ".";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

/* Links */
.page-content a,
.entry-content a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.page-content a:hover,
.entry-content a:hover {
    color: var(--primary-color-dark, #c0392b);
    border-bottom-color: var(--primary-color-dark, #c0392b);
}

/* Blockquotes */
.page-content blockquote,
.entry-content blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    background: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    position: relative;
}

.page-content blockquote::before,
.entry-content blockquote::before {
    content: """;
    font-size: 3rem;
    color: var(--primary-color);
    position: absolute;
    top: -0.5rem;
    left: 1rem;
    font-family: serif;
}

.page-content blockquote p,
.entry-content blockquote p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Tabellen */
.page-content table,
.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-content table th,
.entry-content table th,
.page-content table td,
.entry-content table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e1e5e9;
}

.page-content table th,
.entry-content table th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.page-content table tr:nth-child(even),
.entry-content table tr:nth-child(even) {
    background: #f8f9fa;
}

.page-content table tr:hover,
.entry-content table tr:hover {
    background: #e9ecef;
}

/* Code und Pre */
.page-content code,
.entry-content code {
    background: #f8f9fa;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: var(--primary-color);
}

.page-content pre,
.entry-content pre {
    background: #2d3748;
    color: #e2e8f0;
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 2rem 0;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.5;
}

.page-content pre code,
.entry-content pre code {
    background: none;
    padding: 0;
    color: inherit;
}

/* Bilder */
.page-content img,
.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-content figure,
.entry-content figure {
    margin: 2rem 0;
    text-align: center;
}

.page-content figcaption,
.entry-content figcaption {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #6c757d;
    font-style: italic;
}

/* Definition Lists */
.page-content dl,
.entry-content dl {
    margin: 1.5rem 0;
}

.page-content dt,
.entry-content dt {
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 1rem;
}

.page-content dd,
.entry-content dd {
    margin-left: 1rem;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    border-left: 2px solid #e1e5e9;
}

/* Horizontal Rule */
.page-content hr,
.entry-content hr {
    border: none;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    margin: 3rem 0;
}

/* Abkürzungen */
.page-content abbr,
.entry-content abbr {
    border-bottom: 1px dotted var(--primary-color);
    cursor: help;
}

/* Markierte Texte */
.page-content mark,
.entry-content mark {
    background: #fff3cd;
    padding: 0.1rem 0.3rem;
    border-radius: 3px;
}

/* Kleine Texte */
.page-content small,
.entry-content small {
    font-size: 0.85rem;
    color: #6c757d;
}

/* Responsive Design für Seiteninhalt */
@media (max-width: 768px) {
    .page-content h1,
    .entry-content h1 {
        font-size: 2.5rem;
        margin: 2rem 0 1.5rem 0;
    }
    
    .page-content h2,
    .entry-content h2 {
        font-size: 1.6rem;
    }
    
    .page-content h3,
    .entry-content h3 {
        font-size: 1.3rem;
    }
    
    .page-content,
    .entry-content {
        font-size: 1rem;
    }
    
    .page-content blockquote,
    .entry-content blockquote {
        padding: 1rem 1.5rem;
        margin: 1.5rem 0;
    }
    
    .page-content table,
    .entry-content table {
        font-size: 0.9rem;
    }
    
    .page-content table th,
    .entry-content table th,
    .page-content table td,
    .entry-content table td {
        padding: 0.75rem;
    }
}

/* WordPress Alignments */
.alignleft {
    float: left;
    margin: 0 1.5rem 1rem 0;
}

.alignright {
    float: right;
    margin: 0 0 1rem 1.5rem;
}

.aligncenter {
    display: block;
    margin: 2rem auto;
}

.wp-caption {
    max-width: 100%;
    margin: 2rem 0;
}

.wp-caption img {
    display: block;
    margin: 0 auto;
}

.wp-caption-text {
    text-align: center;
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 0.5rem;
    font-style: italic;
}

/* WordPress Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

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

.gallery-item img {
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

/* WordPress Embeds */
.wp-embed {
    margin: 2rem 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Screen Reader Text */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

/* Block Pattern Styles - Über uns Vorlagen */

/* Über uns Hero Sektion */
.about-hero-section {
    padding: 2rem 0;
    background-color: white;
}

.about-hero-columns {
    align-items: center;
    gap: 3rem;
}

.about-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.about-hero-subtitle {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.about-hero-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.about-hero-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-hero-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: var(--text-color);
}

.about-hero-features li::before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.about-hero-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

/* Über uns Philosophie Sektion */
.about-philosophy-section {
    padding: 2rem 0;
    background-color: white;
}

.philosophy-columns {
    gap: 2rem;
    margin-top: 3rem;
}

.philosophy-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.philosophy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.philosophy-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1;
    color: var(--primary-color);
}

.philosophy-icon i {
    font-size: 3rem;
    color: var(--primary-color);
}

.philosophy-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.philosophy-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.8;
}

/* Über uns Erfahrung Sektion */
.about-experience-section {
    padding: 2rem 0;
    background-color: white;
}

.experience-columns {
    align-items: center;
    gap: 3rem;
}

.experience-columns h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.experience-columns p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.experience-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.experience-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-color);
}

.experience-list li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.experience-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

/* Über uns CTA Sektion */
.about-cta-section {
    padding: 5rem 0;
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.about-cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.about-cta-section p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: white;
    opacity: 0.9;
}

.about-cta-section .wp-block-buttons {
    gap: 1rem;
}

.about-cta-section .is-style-primary .wp-block-button__link {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.about-cta-section .is-style-primary .wp-block-button__link:hover {
    background: transparent;
    color: white;
}

.about-cta-section .is-style-outline .wp-block-button__link {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.about-cta-section .is-style-outline .wp-block-button__link:hover {
    background: white;
    color: var(--primary-color);
}

/* Responsive Design für Block Patterns */
@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2.2rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-hero-columns,
    .experience-columns {
        flex-direction: column;
        gap: 2rem;
    }
    
    .philosophy-columns {
        flex-direction: column;
    }
    
    .philosophy-card {
        padding: 1.5rem;
    }
    
    .about-cta-section h2 {
        font-size: 2rem;
    }
    
    .about-cta-section p {
        font-size: 1.1rem;
    }
    
    .about-cta-section .wp-block-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Zusätzliche Styles für die komplette Über mich Seite */

/* Persönliche Geschichte Sektion */
.about-story-section {
    padding: 2rem 0;
    background-color: white;
}

.story-columns {
    align-items: center;
    gap: 3rem;
}

.story-columns h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.story-columns p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.story-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

/* Werte Sektion */
.about-values-section {
    padding: 5rem 0;
    background-color: white;
}

.values-columns {
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    background: white;
}

.value-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.8;
}

/* Komplette Über mich Seite Container */
.complete-about-page {
    background-color: white;
}

/* Responsive Design für neue Sektionen */
@media (max-width: 768px) {
    .story-columns {
        flex-direction: column;
        gap: 2rem;
    }
    
    .story-columns h2 {
        font-size: 2rem;
    }
    
    .values-columns {
        flex-direction: column;
    }
    
    .value-card {
        padding: 1.5rem;
    }
}

/* Blog Listing Styles */
.blog-listing {
    padding: 5rem 0;
    background-color: white;
}

.blog-listing .page-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-top: 80px;
}

.blog-listing .page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.blog-listing .page-description {
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.blog-listing .posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-card .post-thumbnail {
    position: relative;
    overflow: hidden;
}

.blog-card .post-thumbnail img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .post-thumbnail img {
    transform: scale(1.05);
}

.blog-card .entry-header {
    padding: 1.5rem 1.5rem 1rem;
}

.blog-card .entry-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 1rem 0 1rem 0;
    line-height: 1.3;
}

.blog-card .entry-title a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card .entry-title a:hover {
    color: var(--primary-color);
}

.blog-card .entry-meta {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.7;
    margin-bottom: 1rem;
}

.blog-card .entry-content {
    padding: 0 1.5rem 1.5rem;
}

.blog-card .entry-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.blog-card .read-more {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.blog-card .read-more:hover {
    background: var(--primary-color-dark, #c0392b);
    transform: translateY(-2px);
}

/* Pagination */
.posts-navigation {
    text-align: center;
    margin-top: 3rem;
}

.posts-navigation .nav-links {
    display: inline-flex;
    gap: 1rem;
    align-items: center;
}

.posts-navigation a {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.posts-navigation a:hover {
    background: var(--primary-color-dark, #c0392b);
    transform: translateY(-2px);
}

.posts-navigation .current {
    background: var(--text-color);
    color: white;
}

/* Responsive Blog Styles */
@media (max-width: 768px) {
    .single-post .entry-title {
        font-size: 2.5rem;
        margin: 2rem 0 1.5rem 0;
    }
    
    .entry-header .entry-title {
        font-size: 2.5rem;
        margin: 2rem 0 1.5rem 0;
    }
    
    .single-post .entry-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .single-post .entry-content {
        font-size: 1rem;
    }
    
    .post-navigation .nav-links {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .blog-listing .posts-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-card .entry-title {
        font-size: 1.2rem;
    }
    
    .blog-card .post-thumbnail img {
        height: 200px;
    }

    .blog-listing .page-header {
        padding-top: 80px;
    }
}

/* Preise & Ablauf Seite */
.pricing-process-page {
    max-width: 1200px;
    margin: 0 auto;
}

/* Preise Hero Sektion */
.pricing-hero-section {
    padding: 0rem 0;
    background-color: white;
}

.pricing-hero-columns {
    align-items: center;
}

.pricing-hero-title {
    font-size: 2.8rem;
    color: #333;
    margin-bottom: 1rem;
    text-align: left;
}

.pricing-hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1rem;
    font-weight: 500;
    text-align: left;
}

.pricing-hero-text {
    font-size: 1rem;
    color: #777;
    line-height: 1.6;
    text-align: left;
}

.pricing-hero-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-hero-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* Preise Prozess Sektion */
.pricing-process-section {
    padding: 3rem 0;
    background-color: white;
}

.pricing-process-steps {
    margin-top: 2rem;
}

.pricing-process-step {
    text-align: center;
    padding: 1.5rem;
    background-color: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
    border: 1px solid #e1e5e9;
}

.pricing-process-step:hover {
    transform: translateY(-5px);
}

.pricing-step-number {
    font-size: 2.5rem;
    color: #007cba;
    margin-bottom: 1rem;
    font-weight: bold;
}

.pricing-process-step h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.pricing-process-step p {
    color: #666;
    line-height: 1.6;
}

/* Preise Sektion */
.pricing-section {
    padding: 3rem 0;
    background-color: white;
}

.pricing-columns {
    margin-top: 5rem;
}

.pricing-card {
    background-color: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    position: relative;
    border: 3px solid var(--primary-color);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-title {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.pricing-price {
    font-size: 2.5rem;
    color: #007cba;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.pricing-period {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: #555;
    border-bottom: 1px solid #eee;
    list-style-type: none;
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* Zusätzliche Kosten Sektion */
.additional-costs-section {
    padding: 3rem 0;
    background-color: white;
}

.costs-columns {
    margin-top: 2rem;
}

.cost-item {
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 1px solid #e1e5e9;
}

.cost-item h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.cost-item p {
    color: #666;
    line-height: 1.6;
}



/* Responsive Design für Preise & Ablauf */
@media (max-width: 768px) {
    .pricing-hero-title {
        font-size: 2.2rem;
    }
    
    .pricing-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .pricing-process-steps {
        flex-direction: column;
    }
    
    .pricing-columns {
        flex-direction: column;
    }
    
    .pricing-card.featured {
        transform: none;
        margin: 1rem 0;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .costs-columns {
        flex-direction: column;
    }
}

/* Sticky CTA Button */
.sticky-cta-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    background-color: var(--primary-color);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(213, 43, 65, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    opacity: 0;
    transform: translateY(100px);
    animation: slideInCTA 0.5s ease forwards;
}

.sticky-cta-button:hover {
    background-color: #b82335;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(213, 43, 65, 0.4);
    color: white;
    text-decoration: none;
}

.sticky-cta-button i {
    font-size: 1.1rem;
}

@keyframes slideInCTA {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design für Sticky CTA */
@media (max-width: 768px) {
    .sticky-cta-button {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* Hundetraining Seite */
.dog-training-page {
    max-width: 1200px;
    margin: 0 auto;
}

/* Training Hero Sektion */
.training-hero-section {
    padding: 0 0 0 0;
    background-color: white;
}

.training-hero-columns {
    align-items: center;
}

.training-hero-title {
    font-size: 2.8rem;
    color: #333;
    margin-bottom: 1rem;
    text-align: left;
}

.training-hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1rem;
    font-weight: 500;
    text-align: left;
}

.training-hero-text {
    font-size: 1rem;
    color: #777;
    line-height: 1.6;
    text-align: left;
    margin-bottom: 1.5rem;
}

.training-hero-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.training-hero-features li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.training-hero-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.training-hero-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.training-hero-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

/* Training Services Sektion */
.training-services-section {
    padding: 3rem 0;
    background-color: white;
}

.services-grid {
    margin-top: 2rem;
}

.service-card {
    background-color: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 1px solid #e1e5e9;
}

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

.service-icon {
    font-size: 3rem !important;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: normal;
}

.service-card h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.service-features li {
    padding: 0.3rem 0;
    color: #555;
    position: relative;
    padding-left: 1.2rem;
    list-style-type: none;
}

.service-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Training Methods Sektion */
.training-methods-section {
    padding-top: 3rem;
    background-color: white;
}

.methods-columns {
    align-items: center;
}

.methods-columns h2 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.methods-columns p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.methods-list {
    list-style: none;
    padding: 0;
}

.methods-list li {
    padding: 0.8rem 0;
    color: #555;
    border-bottom: 1px solid #eee;
    line-height: 1.6;
}

.methods-list li:last-child {
    border-bottom: none;
}

.methods-list strong {
    color: var(--primary-color);
}

.methods-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.methods-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Training Benefits Sektion */
.training-benefits-section {
    padding: 3rem 0;
    background-color: white;
}

.benefits-grid {
    margin-top: 2rem;
}

.benefit-card {
    background-color: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 1px solid #e1e5e9;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    font-size: 3rem !important;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: normal;
}

.benefit-card h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Training Process Sektion */
.training-process-section {
    padding: 3rem 0;
    background-color: white;
}

.process-steps {
    margin-top: 2rem;
}

.process-step {
    text-align: center;
    padding: 1.5rem;
    background-color: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
    border: 1px solid #e1e5e9;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: bold;
}

.process-step h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.process-step p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Design für Hundetraining */
@media (max-width: 768px) {
    .training-hero-title {
        font-size: 2.2rem;
    }
    
    .training-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .training-hero-columns {
        flex-direction: column;
    }
    
    .training-hero-image img {
        height: 250px;
    }
    
    .services-grid {
        flex-direction: column;
    }
    
    .methods-columns {
        flex-direction: column;
    }
    
    .methods-image img {
        height: 250px;
    }
    
    .benefits-grid {
        flex-direction: column;
    }
    
    .process-steps {
        flex-direction: column;
    }
}

/* CTA Sektion Vorlagen */
.cta-section {
    background: var(--primary-color);
    padding: 5rem 0;
    color: white;
    text-align: center;
}

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

.cta-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .cta-primary {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.cta-section .cta-primary:hover {
    background: #f8f9fa;
    color: var(--primary-color);
    border-color: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.cta-section .cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.cta-section .cta-secondary:hover {
    background: white;
    color: var(--primary-color);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}



/* Responsive Design für CTA Sektionen */
@media (max-width: 768px) {
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-text h2 {
        font-size: 2rem;
    }
    
    .cta-text p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-section .cta-primary,
    .cta-section .cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Focus Styles für Barrierefreiheit */
.cta-button:focus,
.nav-menu a:focus,
.hamburger:focus,
.site-title a:focus,
.social-link:focus,
.back-button:focus,
.read-more:focus,
.about-teaser-button:focus,
.process-button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(213, 43, 65, 0.1);
}

/* Spezielle Focus-Styles für Buttons */
.cta-button:focus,
.back-button:focus,
.about-teaser-button:focus,
.process-button:focus {
    outline: 2px solid white;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(213, 43, 65, 0.3);
}

/* Focus-Styles für Navigation */
#primary-menu a:focus,
#footer-menu a:focus,
.desktop-menu a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    background-color: rgba(213, 43, 65, 0.1);
}

/* Focus-Styles für Social Media Links */
.social-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    transform: scale(1.1);
}

/* Focus-Styles für Hamburger Button */
.hamburger:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Focus-Styles für Links im Content */
.page-content a:focus,
.entry-content a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    text-decoration: underline;
}

/* Skip Link für Barrierefreiheit */
.skip-link {
    position: absolute;
    top: -50px;
    left: 6px;
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: bold;
    z-index: 10000;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 6px;
    outline: 2px solid white;
    outline-offset: 2px;
}

/* Screen Reader Only Klasse */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Reset & Base Styles */