/* ===================================
   Global Styles & CSS Reset
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FFD700;
    --primary-dark: #FFA500;
    --secondary-color: #000000;
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ===================================
   Language Toggle
   =================================== */
.language-toggle {
    position: fixed;
    top: 80px;
    right: 80px;
    z-index: 1000;
}

.language-toggle button {
    background: var(--white);
    border: 2px solid var(--primary-color);
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.language-toggle button:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* ===================================
   Header & Navigation
   =================================== */
header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    max-width: 150px;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    transition: var(--transition);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 40px 20px;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 600px;
}

.hero-image-new {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.hero-image-new img {
    width: 100%;
    max-width: 600px;
    height: auto;
    transition: var(--transition);
    animation: slideInLeft 1s ease;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

.hero-image-new img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.15));
}

.hero-content-new {
    padding: 20px;
    animation: slideInRight 1s ease;
}

.hero-content-new h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--secondary-color);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-light);
    font-weight: 400;
}

/* Festpreis Badge */
.festpreis-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: var(--secondary-color);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    animation: pulse 2s infinite, shine 3s infinite;
}

.festpreis-badge i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

@keyframes shine {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    }
    50% {
        box-shadow: 0 10px 40px rgba(255, 215, 0, 0.7), 0 0 30px rgba(255, 215, 0, 0.5);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.btn-festpreis {
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.btn-festpreis::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-festpreis:hover::before {
    left: 100%;
}

.btn-festpreis:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp-secondary {
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: var(--shadow);
    background: var(--white);
    color: #25D366;
    border: 2px solid #25D366;
}

.btn-whatsapp-secondary:hover {
    background: #25D366;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
}

.trust-item i {
    color: #25D366;
    font-size: 1.2rem;
}

/* ===================================
   Services Section
   =================================== */
.services {
    padding: 80px 20px;
    background: var(--bg-light);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===================================
   Pricing Section
   =================================== */
.pricing {
    padding: 80px 20px;
    background: var(--white);
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

.pricing-table {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid #e0e0e0;
    transition: var(--transition);
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row:hover {
    background: var(--bg-light);
}

.pricing-label {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
    font-size: 1.1rem;
}

.pricing-label i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.pricing-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.pricing-note {
    max-width: 800px;
    margin: 30px auto 0;
    padding: 20px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 10px;
    text-align: center;
}

.pricing-note p {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

/* ===================================
   How It Works Section
   =================================== */
.how-it-works {
    padding: 80px 20px;
    background: var(--white);
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 60px;
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}

.step-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    box-shadow: var(--shadow-lg);
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: var(--shadow);
}

.step-icon {
    margin: 30px 0 20px;
}

.step-icon i {
    font-size: 4rem;
    color: var(--primary-color);
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.step-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
}

.step-arrow {
    font-size: 2rem;
    color: var(--primary-color);
}

.step-arrow i {
    animation: slideRight 1.5s ease-in-out infinite;
}

@keyframes slideRight {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(10px);
    }
}

/* ===================================
   Contact Section
   =================================== */
.contact {
    padding: 80px 20px;
    background: var(--bg-light);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.contact-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.contact-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.contact-card a {
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-card a:hover {
    color: var(--secondary-color);
}

/* ===================================
   WhatsApp QR Code Section
   =================================== */
.whatsapp-qr-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
}

.qr-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.qr-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.qr-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
}

.qr-steps {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.qr-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 15px;
    flex: 1;
    min-width: 150px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.qr-step:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.qr-step i {
    font-size: 2.5rem;
    color: var(--white);
}

.qr-step span {
    font-weight: 600;
    text-align: center;
}

.qr-code-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.qr-code-box {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.qr-code-image {
    width: 300px;
    height: 300px;
    border-radius: 10px;
}

.qr-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.qr-label i {
    color: #25D366;
    font-size: 1.5rem;
}

.qr-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
    padding: 15px 30px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.qr-phone i {
    font-size: 1.5rem;
}

/* Responsive */
@media (max-width: 968px) {
    .qr-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .qr-steps {
        justify-content: center;
    }

    .qr-text h2 {
        font-size: 2rem;
    }

    .qr-text p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .qr-code-box {
        padding: 20px;
    }

    .qr-code-image {
        width: 250px;
        height: 250px;
    }

    .qr-steps {
        gap: 15px;
    }

    .qr-step {
        min-width: 120px;
        padding: 15px;
    }

    .qr-step i {
        font-size: 2rem;
    }

    .qr-phone {
        font-size: 1.1rem;
    }
}

/* ===================================
   Legal Pages (Impressum, Datenschutz, AGB)
   =================================== */
.legal-page {
    padding: 100px 20px 80px;
    background: var(--bg-light);
    min-height: 100vh;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    line-height: 1.8;
}

.legal-content h1 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--primary-color);
}

.legal-content h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.legal-content h3:first-of-type {
    margin-top: 0;
}

.legal-content h4 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.legal-content p {
    margin-bottom: 15px;
    color: var(--text-color);
    text-align: justify;
}

.legal-content ul {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 10px;
    color: var(--text-color);
}

.legal-content strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.legal-content a {
    color: var(--primary-dark);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--secondary-color);
}

.legal-update {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    font-style: italic;
    color: var(--text-light);
    text-align: center;
}

.legal-links {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.legal-links a {
    padding: 12px 25px;
    background: var(--bg-light);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    color: var(--secondary-color);
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none;
}

.legal-links a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-back {
    background: var(--primary-color) !important;
}

.btn-back:hover {
    background: var(--primary-dark) !important;
}

/* ===================================
   Footer
   =================================== */
footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 50px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.footer-logo p {
    color: #cccccc;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact p {
    margin-bottom: 10px;
    color: #cccccc;
}

.footer-contact i {
    color: var(--primary-color);
    margin-right: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
}

/* ===================================
   WhatsApp Floating Button
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    z-index: 998;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float i {
    color: var(--white);
    font-size: 2rem;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .logo img {
        height: 45px;
        max-width: 120px;
    }

    .language-toggle {
        right: 60px;
        top: 70px;
    }

    .language-toggle button {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    /* Hero Section - Tablet Layout */
    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
        min-height: auto;
        padding: 20px 0;
    }

    .hero-image-new {
        order: 1;
        padding: 10px;
    }

    .hero-content-new {
        order: 2;
        text-align: center;
        padding: 10px;
    }

    .hero-content-new h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .festpreis-badge {
        font-size: 1rem;
        padding: 12px 25px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .btn-festpreis,
    .btn-whatsapp-secondary {
        width: 100%;
        max-width: 400px;
        justify-content: center;
    }

    .trust-indicators {
        justify-content: center;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-whatsapp {
        width: 100%;
        max-width: 300px;
    }

    .step-arrow {
        display: none;
    }

    .steps-container {
        flex-direction: column;
    }

    .services h2,
    .pricing h2,
    .contact h2,
    .booking h2 {
        font-size: 2rem;
    }

    .pricing-row {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .pricing-label {
        justify-content: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 40px;
        max-width: 100px;
    }

    .language-toggle {
        right: 50px;
        top: 65px;
    }

    .language-toggle button {
        padding: 6px 12px;
        font-size: 0.85rem;
    }

    .hero-content-new h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .festpreis-badge {
        font-size: 0.9rem;
        padding: 10px 20px;
        gap: 8px;
    }

    .btn-festpreis {
        font-size: 1rem;
        padding: 15px 30px;
    }

    .btn-whatsapp-secondary {
        font-size: 1rem;
        padding: 15px 30px;
    }

    .trust-indicators {
        gap: 15px;
        font-size: 0.9rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .booking-form {
        padding: 20px;
    }
}
