/*
Theme Name: WellnessPro
Description: Ein flexibles WordPress-Theme für Massagestudios und Wellness-Zentren mit umfangreichen Anpassungsmöglichkeiten
Author: Jonas Schurz
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wellnesspro
Tags: wellness, massage, health, spa, business, responsive, customizer, gutenberg, elementor
*/

/* Reset und Basis-Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.site-header {
    background-color: #2c5530;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background-color: rgba(44, 85, 48, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-logo {
    flex-shrink: 0;
}

.site-logo img {
    max-height: 50px;
    width: auto;
}

.site-identity {
    display: flex;
    flex-direction: column;
}

.site-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    margin: 0;
    transition: color 0.3s ease;
    line-height: 1.2;
}

.site-title a {
    color: inherit;
    text-decoration: none;
}

.site-title:hover,
.site-title a:hover {
    color: #f0f0f0;
}

.site-description {
    margin: 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

/* Navigation */
.main-navigation ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.main-navigation li {
    margin: 0 1rem;
    position: relative;
}

.main-navigation a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: block;
}

.main-navigation a:hover {
    background-color: rgba(255,255,255,0.1);
    color: #ffffff;
}

/* Dropdown Menu Styles */
.main-navigation ul ul {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(44, 85, 48, 0.95);
    min-width: 220px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 999;
    display: block;
    flex-direction: column;
}

.main-navigation li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-navigation ul ul li {
    margin: 0;
    width: 100%;
}

.main-navigation ul ul a {
    padding: 0.75rem 1.5rem;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin: 0;
    font-size: 0.9rem;
    white-space: nowrap;
}

.main-navigation ul ul li:first-child a {
    border-radius: 8px 8px 0 0;
}

.main-navigation ul ul li:last-child a {
    border-radius: 0 0 8px 8px;
    border-bottom: none;
}

.main-navigation ul ul a:hover {
    background-color: rgba(255,255,255,0.15);
    padding-left: 2rem;
}

/* Dropdown Indicator */
.main-navigation .menu-item-has-children > a::after {
    content: '▼';
    font-size: 0.7rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.main-navigation .menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
}

/* Mobile Menu Toggle - Sauber implementiert */
.menu-toggle {
    display: none;
    width: 50px;
    height: 50px;
    background: #e0a458;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    z-index: 9999 !important;
    transition: background 0.2s;
    pointer-events: auto !important;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: #ffffff;
    display: block;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Desktop verstecken, Mobile zeigen */
@media screen and (min-width: 769px) {
    .menu-toggle {
        display: none !important;
    }
    .main-navigation {
        position: static !important;
        max-height: none !important;
        background: none !important;
        box-shadow: none !important;
        overflow: visible !important;
    }
    .main-navigation ul {
        flex-direction: row !important;
        text-align: left !important;
        padding: 0 !important;
    }
    .main-navigation li {
        border-bottom: none !important;
    }
}

@media screen and (max-width: 768px) {
    .main-navigation.active {
        display: block !important;
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
    }
    .container {
        padding: 0 15px;
    }
    .site-branding {
        gap: 0.5rem;
    }
    .site-logo img {
        max-height: 40px;
    }
    .site-title {
        font-size: 1.25rem;
    }
    .site-description {
        font-size: 0.75rem;
    }
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    /* Mobile Menu Toggle anzeigen */
    .menu-toggle {
        display: flex !important;
        visibility: visible !important;
        z-index: 9999 !important;
        pointer-events: auto !important;
        position: absolute !important;
        top: 10px;
        right: 15px;
        margin: 0;
    }
    /* Mobile Navigation verstecken bis aktiviert */
    .main-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: rgba(44, 85, 48, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 15px rgba(0,0,0,0.15);
        height: 0;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        z-index: 2000;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }
    .main-navigation ul {
            display: none;
        }
    .menu-hauptmenue-container {
        display: none;
        flex-direction: column;
        width: 100%;
        position: relative;
        z-index: 1000;
    }
    .main-navigation.active .menu-hauptmenue-container {
        display: flex !important;
    }
    .menu-hauptmenue-container.active {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        min-width: 100% !important;
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
    }
    .main-navigation.active {
        height: auto !important;
        max-height: 500px !important;
        min-height: 200px !important;
        width: 100% !important;
        overflow: visible !important;
        padding: 0;
    }
    .main-navigation ul {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 0;
        width: 100%;
        min-width: 250px;
        margin: 0;
        list-style: none;
    }
    .main-navigation li {
        margin: 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        width: 100%;
    }
    .main-navigation li:last-child {
        border-bottom: none;
    }
    .main-navigation a {
        padding: 1.2rem 2rem;
        border-radius: 0;
        display: block;
        width: 100%;
        font-size: 1.1rem;
    }
    /* Mobile Hero Text kleiner */
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    /* Mobile Layout Anpassungen */
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
}


/* Animation für aktives Menu */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Dropdown Menu Styles */
.main-navigation ul ul {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #e0a458;
    min-width: 220px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 999;
    display: block;
    flex-direction: column;
}

.main-navigation li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-navigation ul ul li {
    margin: 0;
    width: 100%;
}

.main-navigation ul ul a {
    padding: 0.75rem 1.5rem;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin: 0;
    font-size: 0.9rem;
    white-space: nowrap;
}

.main-navigation ul ul li:first-child a {
    border-radius: 8px 8px 0 0;
}

.main-navigation ul ul li:last-child a {
    border-radius: 0 0 8px 8px;
    border-bottom: none;
}

.main-navigation ul ul a:hover {
    background-color: rgba(255,255,255,0.15);
    padding-left: 2rem;
}

/* Dropdown Indicator */
.main-navigation .menu-item-has-children > a::after {
    content: '▼';
    font-size: 0.7rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.main-navigation .menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
}

/* Hero Section */
.hero-section {
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    background-repeat: no-repeat;
    padding: 100px 0;
    text-align: center;
    color: #ffffff;
    position: relative;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #8B4513;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #A0522D;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c5530;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background: #ffffff;
    padding: 0;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-image {
    position: relative;
    overflow: hidden;
    height: 250px;
    flex-shrink: 0;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover img {
    transform: scale(1.05);
}

.service-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card h3 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card .service-excerpt {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
    flex-grow: 1;
}

.service-card .service-excerpt p {
    margin: 0;
}

.service-card .btn {
    margin-top: auto;
}

/* Service-Cards ohne Bild */
.service-card:not(:has(.service-image)) {
    min-height: 280px;
}

.service-card:not(:has(.service-image)) .service-content {
    padding: 2.5rem 2rem;
    justify-content: center;
}

.service-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.service-detail-item {
    text-align: center;
}

.service-detail-item .label {
    font-size: 0.9rem;
    color: #888;
    display: block;
}

.service-detail-item .value {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Preise Section */
.prices-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.prices-section .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.price-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Spezielle Layouts für verschiedene Anzahlen */
@media (min-width: 1200px) {
    .price-cards {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .price-cards {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 767px) {
    .price-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.price-card {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.price-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.price-card.featured {
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, var(--secondary-color), #A0522D);
    color: white;
}

.price-card.featured h3,
.price-card.featured .price {
    color: white;
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.price-duration {
    color: #666;
    margin-bottom: 1.5rem;
}

.price-card.featured .price-duration {
    color: rgba(255,255,255,0.8);
}

.price-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.price-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    color: #555;
}

.price-card.featured .price-features li {
    border-bottom-color: rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.9);
}

.price-features li:last-child {
    border-bottom: none;
}

/* About Section */
.about-section {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    color: #2c5530;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Certificates Section */
.certificates-section {
    margin-top: 4rem;
}

.certificates-title {
    text-align: center;
    color: #e0a458;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.certificate-item {
    position: relative;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.certificate-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.certificate-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.certificate-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 85, 48, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    text-align: center;
}

.certificate-item:hover .certificate-overlay {
    opacity: 1;
}

.certificate-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.certificate-text {
    font-size: 0.9rem;
    font-weight: 500;
}

.certificate-title {
    padding: 0.75rem;
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    color: #333;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.certificate-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Lightbox für Zertifikate */
.certificate-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    cursor: pointer;
}

.certificate-lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
    animation: lightboxZoom 0.3s ease;
}

.lightbox-image {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: -10px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.2);
}

.lightbox-title {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    color: white;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
}

@keyframes lightboxZoom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Certificate Item für Lightbox vorbereiten */
.certificate-item[data-lightbox] {
    cursor: zoom-in;
}

.certificate-item[data-lightbox]:hover .certificate-overlay {
    opacity: 0;
}

.certificate-item[data-lightbox] .certificate-overlay .certificate-text {
    display: none;
}

.certificate-item[data-lightbox] .certificate-overlay::after {
    content: "🔍 Vergrößern";
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsive Design für Lightbox */
@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
        max-height: 95%;
    }
    
    .lightbox-close {
        top: -30px;
        right: -5px;
        font-size: 1.5rem;
        width: 30px;
        height: 30px;
    }
    
    .lightbox-title {
        bottom: -30px;
        font-size: 1rem;
    }
}

/* Responsive Design für Zertifikate */
@media (max-width: 768px) {
    .certificates-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .certificate-image {
        height: 150px;
    }
    
    .certificates-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .certificates-grid {
        grid-template-columns: 1fr;
    }
    
    .certificate-image {
        height: 180px;
    }
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: #2c5530;
    color: #ffffff;
}

/* Warum uns Section */
.why-us-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-us-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.why-us-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.why-us-icon {
    margin-bottom: 1.5rem;
}

.why-us-icon span {
    font-size: 3rem;
    line-height: 1;
    display: inline-block;
}

.why-us-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.why-us-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Anpassungen für Warum uns */
@media (max-width: 768px) {
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .why-us-item {
        padding: 1.5rem;
    }
    
    .why-us-icon span {
        font-size: 2.5rem;
    }
    
    .why-us-content h3 {
        font-size: 1.25rem;
    }
}

@media (min-width: 992px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .why-us-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* Footer */
.site-footer {
    background-color: #1a3a1e;
    color: #ffffff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.faq-item.active {
    border: 2px solid var(--primary-color);
}

.faq-question {
    padding: 1.5rem;
    background: #f8f9fa;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
    border: none;
    width: 100%;
    text-align: left;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
    min-width: 20px;
    text-align: center;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-item.active .faq-answer {
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 0 0 8px 8px;
}

.faq-answer p {
    color: #555;
    line-height: 1.8;
    margin: 0;
    padding: 0.5rem 0;
    font-size: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
}

/* Single Media Query für Smartphones */
@media (max-width: 480px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Customizer Color Variables */
:root {
    --primary-color: #2c5530;
    --secondary-color: #8B4513;
    --accent-color: #ffffff;
    --text-color: #333333;
    --background-color: #ffffff;
}

/* Single Service Page Styles */
.service-hero-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    text-align: center;
}

.service-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4));
    z-index: 1;
}

.service-hero-section .container {
    position: relative;
    z-index: 2;
}

.service-hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.service-hero-section .service-excerpt {
    font-size: 1.2rem;
    color: #ffffff;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.service-content-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.service-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.service-featured-image {
    text-align: center;
}

.service-featured-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-featured-image img:hover {
    transform: scale(1.02);
}

.service-details {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-content {
    margin-bottom: 2rem;
}

.service-content h2,
.service-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-content p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.service-info-box {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.service-info-box h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    text-align: center;
}

.service-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
}

.service-info-item:last-child {
    border-bottom: none;
}

.service-info-item strong {
    color: var(--primary-color);
    font-weight: 600;
}

.service-info-item span {
    color: #555;
    font-weight: 500;
}

.service-booking {
    text-align: center;
    margin-top: 2rem;
}

.service-booking .btn {
    background: linear-gradient(135deg, var(--primary-color), #245428);
    color: white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(44, 85, 48, 0.3);
    transition: all 0.3s ease;
}

.service-booking .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 85, 48, 0.4);
}

.related-services-section {
    padding: 4rem 0;
    background: white;
}

.related-services-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.related-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .service-hero-section h1 {
        font-size: 2rem;
    }
    
    .service-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-details {
        padding: 1.5rem;
    }
    
    .service-info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Theme Customization Classes */
.custom-primary { color: var(--primary-color); }
.custom-primary-bg { background-color: var(--primary-color); }
.custom-secondary { color: var(--secondary-color); }
.custom-secondary-bg { background-color: var(--secondary-color); }
