/*
Theme Name: Herzschlag
Theme URI: https://herzschlag-events.de
Author: Herzschlag Team
Author URI: https://herzschlag-events.de
Description: A lightweight, custom WordPress theme for DJ event planning and wedding services. Fully customizable via WordPress Customizer.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: herzschlag
Tags: custom-background, custom-colors, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ========================================
   CSS Variables (Custom Properties)
   ======================================== */
:root {
    --primary-color: #ff0080;
    --secondary-color: #00d4ff;
    --text-color: #333333;
    --header-bg-solid: #ffffff;
    --footer-bg: #1a1a1a;
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: 'Georgia', serif;
    --transition-speed: 0.3s;
    --section-padding: 80px 20px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
    font-size: 16px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.team-member-photo img,
.feedback-photo img {
    object-fit: cover;
    object-position: center;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

p {
    margin-bottom: 1rem;
}

/* ========================================
   Header Styles
   ======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-speed);
    background: transparent;
}

.site-header.transparent {
    background: transparent;
    box-shadow: none;
}

.site-header.transparent .site-title a,
.site-header.transparent .main-navigation a {
    color: #ffffff;
}

.site-header.scrolled {
    background: var(--header-bg-solid);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.site-header.scrolled .site-title a,
.site-header.scrolled .main-navigation a {
    color: var(--text-color);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0;
}

.site-title img,
.custom-logo-link img {
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.site-title a {
    transition: color var(--transition-speed);
}

/* Navigation */
.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
}

.main-navigation a {
    font-size: 1rem;
    font-weight: 500;
    transition: color var(--transition-speed);
    position: relative;
}

.main-navigation a:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: inherit;
}

/* ========================================
   Button Styles
   ======================================== */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-speed);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.btn-secondary:hover {
    background: #ffffff;
    color: var(--primary-color);
}

/* Secondary button on light backgrounds */
.welcome-section .btn-secondary,
section:not([style*="background-color: #"]):not([style*="background-image"]) .btn-secondary {
    color: var(--text-color);
    border-color: var(--primary-color);
    background: transparent;
}

.welcome-section .btn-secondary:hover {
    background: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
}

/* ========================================
   Section Styles
   ======================================== */
section {
    padding: var(--section-padding);
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

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

.section-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    background-position: center center;
}

.hero-section.has-mobile-bg {
    background-image: var(--hero-mobile-bg) !important;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content h2 {
    font-size: 2rem;
    font-weight: 300;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-top: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* ========================================
   Welcome Section
   ======================================== */
.welcome-section {
    text-align: center;
    padding: var(--section-padding);
}

.welcome-content {
    max-width: 900px;
    margin: 0 auto;
}

.welcome-logo {
    margin: 0 auto 40px;
    animation: heartbeat 4.5s ease-in-out;
}

.welcome-logo img {
    width: 100%;
    height: auto;
    display: block;
}

@keyframes heartbeat {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    5% {
        opacity: 1;
        transform: scale(1);
    }
    10% {
        transform: scale(1.1);
    }
    15% {
        transform: scale(1);
    }
    20% {
        transform: scale(1.15);
    }
    25% {
        transform: scale(1);
    }
    35% {
        transform: scale(1.1);
    }
    40% {
        transform: scale(1);
    }
    45% {
        transform: scale(1.15);
    }
    50% {
        transform: scale(1);
    }
    60% {
        transform: scale(1.1);
    }
    65% {
        transform: scale(1);
    }
    70% {
        transform: scale(1.15);
    }
    75%, 100% {
        transform: scale(1);
    }
}

.welcome-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.welcome-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.welcome-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   Team Section
   ======================================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.team-member {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: transform var(--transition-speed);
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-member-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 4px solid var(--primary-color);
}

.team-member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.team-member-bio {
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.team-social {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.team-social a {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform var(--transition-speed);
}

.team-social a:hover {
    transform: scale(1.2);
}

/* ========================================
   Feedback Section
   ======================================== */
.feedback-wrapper {
    position: relative;
    margin-top: 50px;
}

.feedback-container {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    padding: 20px 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    scroll-behavior: smooth;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.feedback-container::-webkit-scrollbar {
    display: none;
}

/* Navigation Buttons */
.feedback-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-speed);
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.feedback-nav:hover {
    background: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
}

.feedback-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.feedback-nav.prev {
    left: -25px;
}

.feedback-nav.next {
    right: -25px;
}

.feedback-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.feedback-nav:disabled:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1);
}

.feedback-item {
    min-width: 340px;
    max-width: 370px;
    flex-shrink: 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
}

.feedback-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
}

.feedback-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feedback-text {
    font-style: italic;
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.6;
    flex: 1;
}

.feedback-name {
    font-weight: 600;
    text-align: right;
    color: var(--primary-color);
}

/* ========================================
   Contact Section
   ======================================== */
.contact-section {
    background: var(--footer-bg);
    color: #ffffff;
    position: relative;
}

.contact-section .section-title,
.contact-section .section-description {
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-top: 20px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all var(--transition-speed);
}

.contact-info-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.contact-info-item i {
    font-size: 2.2rem;
    color: var(--primary-color);
    min-width: 50px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 0, 128, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-info-item h4 {
    margin: 0 0 6px 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info-item a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    transition: color var(--transition-speed);
}

.contact-info-item a:hover {
    color: var(--primary-color);
}

.contact-form-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    max-width: 500px;
    text-align: center;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.contact-form-container {
    margin-top: 30px;
}

/* ========================================
   Form Styling (WPForms, Contact Form 7, etc.)
   ======================================== */
.contact-form-card input[type="text"],
.contact-form-card input[type="email"],
.contact-form-card input[type="tel"],
.contact-form-card input[type="url"],
.contact-form-card textarea,
.contact-form-card select,
.contact-form-container input[type="text"],
.contact-form-container input[type="email"],
.contact-form-container input[type="tel"],
.contact-form-container input[type="url"],
.contact-form-container textarea,
.contact-form-container select {
    width: 100%;
    padding: 16px 20px;
    margin-bottom: 24px;
    border: 2px solid #e5e5e5;
    background: #f8f8f8;
    color: var(--text-color);
    border-radius: 12px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
}

.contact-form-card input[type="text"]:focus,
.contact-form-card input[type="email"]:focus,
.contact-form-card input[type="tel"]:focus,
.contact-form-card input[type="url"]:focus,
.contact-form-card textarea:focus,
.contact-form-card select:focus,
.contact-form-container input[type="text"]:focus,
.contact-form-container input[type="email"]:focus,
.contact-form-container input[type="tel"]:focus,
.contact-form-container input[type="url"]:focus,
.contact-form-container textarea:focus,
.contact-form-container select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(255, 0, 128, 0.15);
    transform: translateY(-2px);
}

.contact-form-card textarea,
.contact-form-container textarea {
    min-height: 160px;
    resize: vertical;
}

.contact-form-card label,
.contact-form-container label {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
    font-size: 0.95rem;
}

.contact-form-card ::placeholder,
.contact-form-container ::placeholder {
    color: #aaa;
    opacity: 1;
}

/* Submit Button Styling */
.contact-form-card input[type="submit"],
.contact-form-card button[type="submit"],
.contact-form-card .wpforms-submit,
.contact-form-card .wpcf7-submit,
.contact-form-card .gform_button,
.contact-form-container input[type="submit"],
.contact-form-container button[type="submit"],
.contact-form-container .wpforms-submit,
.contact-form-container .wpcf7-submit,
.contact-form-container .gform_button {
    background: var(--primary-color) !important;
    color: #ffffff !important;
    padding: 15px 40px !important;
    border: 2px solid var(--primary-color) !important;
    border-radius: 50px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all var(--transition-speed) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: auto;
    margin-top: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.contact-form-card input[type="submit"]:hover,
.contact-form-card button[type="submit"]:hover,
.contact-form-card .wpforms-submit:hover,
.contact-form-card .wpcf7-submit:hover,
.contact-form-card .gform_button:hover,
.contact-form-container input[type="submit"]:hover,
.contact-form-container button[type="submit"]:hover,
.contact-form-container .wpforms-submit:hover,
.contact-form-container .wpcf7-submit:hover,
.contact-form-container .gform_button:hover {
    background: transparent !important;
    color: var(--primary-color) !important;
}

.contact-form-container input[type="submit"]:hover,
.contact-form-container button[type="submit"]:hover,
.contact-form-container .wpforms-submit:hover,
.contact-form-container .wpcf7-submit:hover,
.contact-form-container .gform_button:hover {
    background: transparent !important;
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 0, 128, 0.3);
}

/* WPForms Specific */
.contact-form-container .wpforms-container {
    max-width: 100%;
}

.contact-form-container .wpforms-field-label {
    color: #ffffff;
}

.contact-form-container .wpforms-confirmation-container-full {
    background: rgba(0, 212, 255, 0.2);
    border: 2px solid var(--secondary-color);
    color: #ffffff;
    padding: 20px;
    border-radius: 8px;
}

/* Contact Form 7 Specific */
.contact-form-container .wpcf7-form-control-wrap {
    display: block;
}

.contact-form-container .wpcf7-not-valid-tip {
    color: #ff6b6b;
    font-size: 0.9rem;
    margin-top: -15px;
    margin-bottom: 15px;
}

.contact-form-container .wpcf7-response-output {
    background: rgba(0, 212, 255, 0.2);
    border: 2px solid var(--secondary-color);
    color: #ffffff;
    padding: 15px 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.contact-form-container .wpcf7-validation-errors {
    background: rgba(255, 107, 107, 0.2);
    border-color: #ff6b6b;
}

/* Gravity Forms Specific */
.contact-form-container .gform_wrapper .gfield_label {
    color: #ffffff;
}

.contact-form-container .gform_wrapper .validation_message {
    color: #ff6b6b;
}

/* Responsive Form Styles */
@media (max-width: 768px) {
    .contact-form-container input[type="submit"],
    .contact-form-container button[type="submit"],
    .contact-form-container .wpforms-submit,
    .contact-form-container .wpcf7-submit,
    .contact-form-container .gform_button {
        width: 100%;
        padding: 15px 20px !important;
    }
}

/* ========================================
   Page Template: Sidebar Sections
   ======================================== */
.page-hero {
    height: 40vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
}

.page-hero h1 {
    font-size: 3.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.sidebar-section {
    padding: 60px 20px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform var(--transition-speed);
    border-top: 4px solid var(--primary-color);
}

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

.pricing-card h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.pricing-card .price {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 20px;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.pricing-card ul li:before {
    content: '✓ ';
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 10px;
}

/* FAQ Accordion */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    background: #f5f5f5;
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background var(--transition-speed);
}

.faq-question:hover {
    background: #e8e8e8;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
    background: #ffffff;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 20px;
}

/* ========================================
   Footer Styles
   ======================================== */
.site-footer {
    background: var(--footer-bg);
    color: #ffffff;
    padding: 40px 20px 20px;
}

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

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-widget h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-menu {
    margin: 20px 0;
}

.footer-menu ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.footer-menu a {
    color: #ffffff;
    transition: color var(--transition-speed);
}

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

.footer-social {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.footer-social a {
    font-size: 1.5rem;
    color: #ffffff;
    transition: color var(--transition-speed);
}

.footer-social a:hover {
    color: var(--primary-color);
}

/* ========================================
   Scroll to Top Button
   ======================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #ffffff;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(255, 0, 128, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(255, 0, 128, 0.4);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 768px) {
    /* Mobile Menu */
    .menu-toggle {
        display: block;
    }

    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--header-bg-solid);
        padding: 80px 20px 20px;
        transition: right var(--transition-speed);
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    }

    .main-navigation.active {
        right: 0;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 20px;
    }

    .main-navigation a {
        color: var(--text-color) !important;
        font-size: 1.2rem;
    }

    /* Hero Section */
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    /* Typography */
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Team Grid */
    .team-grid {
        grid-template-columns: 1fr;
    }

    /* Feedback */
    .feedback-item {
        min-width: 280px;
    }
    
    .feedback-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .feedback-nav.prev {
        left: 10px;
    }
    
    .feedback-nav.next {
        right: 10px;
    }

    /* Pricing Cards */
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    /* Contact Grid */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 40px;
    }
    
    .contact-info {
        gap: 25px;
        padding-top: 0;
    }
    
    .contact-info-item {
        padding: 15px;
    }
    
    .contact-info-item i {
        font-size: 1.8rem;
        width: 45px;
        height: 45px;
    }
    
    .contact-form-card {
        padding: 30px 25px;
        max-width: 100%;
    }

    /* Page Hero */
    .page-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 50px 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .team-member-photo {
        width: 150px;
        height: 150px;
    }

    .feedback-item {
        min-width: 250px;
        padding: 20px;
    }
}

/* ========================================
   Utility Classes
   ======================================== */
.text-center {
    text-align: center;
}

.text-white {
    color: #ffffff;
}

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

.spacer {
    margin-top: 40px;
}

.hidden {
    display: none;
}

/* ========================================
   Page Section Styles (Hochzeit, Event, Packages)
   ======================================== */
.page-section {
    padding: var(--section-padding);
    position: relative;
}

.page-section .section-content {
    position: relative;
    z-index: 2;
}

.page-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    color: var(--text-color);
}

.page-section .page-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.page-section .page-content h1,
.page-section .page-content h2,
.page-section .page-content h3,
.page-section .page-content h4 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.page-section .page-content p {
    margin-bottom: 20px;
}

.page-section .page-content ul,
.page-section .page-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.page-section .page-content li {
    margin-bottom: 10px;
}

.page-section .page-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

/* ========================================
   Image Slider
   ======================================== */
.image-slider {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

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

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slider-item.active {
    opacity: 1;
    animation: kenBurns 7s ease-out;
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

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

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

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

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

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

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

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.slider-dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .image-slider {
        margin: 40px auto 0;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-nav.prev {
        left: 10px;
    }
    
    .slider-nav.next {
        right: 10px;
    }
    
    .slider-dots {
        bottom: 15px;
        gap: 8px;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
    
    .slider-dot.active {
        width: 24px;
    }
}

/* ========================================
   FAQ Section
   ======================================== */
.faq-section {
    padding: var(--section-padding);
    position: relative;
}

.faq-section .section-content {
    position: relative;
    z-index: 2;
}

.faq-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    color: var(--text-color);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 20px 25px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #ffffff;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 25px;
    background: #ffffff;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 20px 25px;
}

.faq-answer p {
    margin-bottom: 15px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }
    
    .faq-toggle {
        font-size: 1.3rem;
    }
    
    .page-section h2,
    .faq-section h2 {
        font-size: 2rem;
    }
}
