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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: rgba(233, 30, 99, 0.9);
    hyphens: auto;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    position: relative;
}

/* Bewegende Elemente für den Body-Hintergrund */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.3), rgba(255, 255, 255, 0.2), transparent);
    animation: bodyGlow 4s linear infinite;
    z-index: -1;
    pointer-events: none;
}

@keyframes bodyGlow {
    0% { transform: translateX(-100%) rotate(0deg); }
    100% { transform: translateX(100%) rotate(360deg); }
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(60, 60, 60, 0.85);
    backdrop-filter: blur(15px);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    background: rgba(60, 60, 60, 0.9);
    backdrop-filter: blur(20px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-wrap: nowrap; /* Verhindert Umbruch */
    align-items: center;
}

.nav-link {
    padding: 0.5rem 0.8rem; 
    font-size: 0.9rem; 
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 25px;
}

.nav-link:hover,
.nav-link.active {
    color: #444;
    background: #ffd54f;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: #0a0a0a !important;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

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

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 120%;
    height: 120%;
    background: 
        linear-gradient(135deg, 
            transparent 20%, 
            rgba(233, 30, 99, 0.3) 35%, 
            rgba(255, 152, 0, 0.4) 45%, 
            rgba(255, 192, 203, 0.5) 50%, 
            rgba(255, 255, 255, 0.3) 55%, 
            rgba(233, 30, 99, 0.2) 65%, 
            transparent 80%
        ),
        radial-gradient(ellipse 600px 200px at 30% 60%, rgba(233, 30, 99, 0.2) 0%, transparent 70%),
        radial-gradient(ellipse 400px 150px at 70% 40%, rgba(255, 152, 0, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 300px 100px at 45% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    transform: rotate(-15deg) translateX(-10%) translateY(-10%);
    animation: galaxyRotate 30s linear infinite;
    z-index: 1;
    opacity: 0.8;
}

@keyframes galaxyRotate {
    0% { transform: rotate(-15deg) translateX(-10%) translateY(-10%); }
    25% { transform: rotate(-10deg) translateX(-5%) translateY(-15%); }
    50% { transform: rotate(-5deg) translateX(0%) translateY(-10%); }
    75% { transform: rotate(-10deg) translateX(-5%) translateY(-5%); }
    100% { transform: rotate(-15deg) translateX(-10%) translateY(-10%); }
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 2rem;
    background: radial-gradient(circle, #ffd54f 0%, #ff9800 30%, #e91e63 70%, #c2185b 100%);
    background-size: cover;
    background-position: center;
}

.hero-logo:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(233, 30, 99, 0.5);
    transition: all 0.3s ease;
}

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

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    opacity: 0.9;
    max-width: 600px;
}

/* Welcome Section */
.welcome {
    padding: 5rem 0;
    background: #f8f9fa;
    background-size: cover;
    background-position: center;
}

.welcome-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.welcome-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.welcome-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.welcome-image {
    width: 100%;
    height: 300px;
    border-radius: 20px;
    object-fit: cover;
    object-position: center;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: #7a7a7a;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 3rem 0;
}

.service-container {
    background: #4a4a4a;
    border-radius: 15px;
    padding: 3rem 2rem 2rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 400px;
    color: white;
}

.service-container::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #FFD700;
    z-index: 2;
}

.service-1, .service-3 {
    background: #4a4a4a;
}

.service-1::after, .service-3::after {
    background: #FFD700;
}

.service-2 {
    background: #FFD700;
    color: #4a4a4a;
}

.service-2::after {
    background: #4a4a4a;
}

.service-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 2rem;
}

.service-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-container h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.service-container p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    color: inherit;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.service-1 .service-button, .service-3 .service-button {
    background: rgba(255, 215, 0, 0.2);
    border-color: #FFD700;
    color: white;
}

.service-2 .service-button {
    background: rgba(74, 74, 74, 0.2);
    border-color: #4a4a4a;
    color: #4a4a4a;
}

.service-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.service-1 .service-button:hover, .service-3 .service-button:hover {
    background: rgba(255, 215, 0, 0.3);
    border-color: #FFD700;
}

.service-2 .service-button:hover {
    background: rgba(74, 74, 74, 0.3);
    border-color: #4a4a4a;
}

/* Transformation Header Section */
.transformation-header {
    padding: 8rem 0;
    background: #4a4a4a;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.transformation-animation {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.animated-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    width: 100px;
    height: 100px;
    background: #FFD700;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    width: 80px;
    height: 80px;
    background: #7a7a7a;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.element-3 {
    width: 120px;
    height: 120px;
    background: #FFD700;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.center-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
}

.transform-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.transform-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* How Why Benefit Section */
.how-why-benefit {
    padding: 5rem 0;
    background: #7a7a7a;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 3rem 0;
}

.benefit-container {
    background: #4a4a4a;
    border-radius: 15px;
    padding: 3rem 2rem 2rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 350px;
    background-size: cover;
    background-position: center;
    color: white;
}

.benefit-container::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #FFD700;
    z-index: 2;
}

.how-container {
    background: #4a4a4a;
}

.why-container {
    background: #FFD700;
    color: #4a4a4a;
}

.why-container::after {
    background: #4a4a4a;
}

.benefit-container-main {
    background: #4a4a4a;
    color: white;
}

.benefit-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.benefit-content {
    position: relative;
    z-index: 3;
    color: inherit;
    padding-top: 2rem;
}

.benefit-container h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.benefit-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.benefit-container p {
    font-size: 1rem;
    line-height: 1.6;
}

/* About Photo Section */
.about-photo {
    width: 100%;
    overflow: hidden;
}

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

/* About / References Section */
.about-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
    text-align: center;
}

.about-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 3rem;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-section h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #333;
    text-align: center;
    margin-top: 3rem;
}

.references-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
    text-align: center;
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0 3rem 0;
}

.reference-item {
    background: transparent;
    border: 2px solid #e91e63;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    color: #4a4a4a;
    box-shadow: none;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.reference-item:hover {
    transform: translateY(-3px);
}

.references-outro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: #4a4a4a;
    background-size: cover;
    background-position: center;
    color: white;
    padding: 3rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(74, 74, 74, 0.9);
    z-index: 1;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #FFD700;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #FFD700;
}

.contact-details p {
    margin-bottom: 0.5rem;
    color: #bdc3c7;
}

.footer-bottom {
    border-top: 1px solid #7a7a7a;
    padding-top: 2rem;
    text-align: center;
    color: #bdc3c7;
}

/* Action Buttons */
.action-buttons {
    position: fixed;
    bottom: 4rem;
    right: 2rem;
    z-index: 999;
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    align-items: center;
}

.btn-scroll-top {
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    background: #FFD700;
    color: #4a4a4a;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-weight: 600;
}

.btn-contact {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    background: #4a4a4a;
    color: #FFD700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-weight: 600;
    white-space: nowrap;
}

.btn-scroll-top:hover {
    background: #FFC107;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-contact:hover {
    background: #3a3a3a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Legal Pages Styling */
.legal-page {
    padding: 8rem 0 5rem 0;
    background: #f8f9fa;
    min-height: 60vh;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    text-align: center;
}

.legal-content {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.legal-content a {
    color: #e91e63;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: #c2185b;
}

.contact-info-box {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.contact-info-box h2 {
    margin-top: 0;
    font-size: 1.5rem;
}

/* Pricing Page Styling */
.pricing-page {
    padding: 8rem 0 5rem 0;
    background: #f8f9fa;
}

.pricing-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
    text-align: center;
}

.pricing-intro {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 4rem;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

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

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

/* Ring-Kreis oben */
.pricing-circle {
    width: 80px;
    height: 80px;
    border: 15px solid #e91e63;
    border-radius: 50%;
    margin: 2rem auto 1.5rem auto;
    background: transparent;
    transition: background 0.3s ease;
}

.pricing-box:hover .pricing-circle {
    background: #FFD700;
}

.pricing-header {
    padding: 0 2rem 1.5rem 2rem;
    text-align: center;
}

.pricing-header h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 700;
}

.pricing-price {
    font-size: 2.5rem;
    color: #e91e63;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

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

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

.pricing-feature {
    padding: 1rem 2rem;
    font-size: 1rem;
    color: #333;
    display: flex;
    align-items: center; 
}

.pricing-feature::before {
    content: "•";
    color: #e91e63;
    font-weight: bold;
    font-size: 1.5rem;
    margin-right: 0.8rem;
    flex-shrink: 0;
}

/* Alternierende Hintergründe */
.pricing-feature:nth-child(odd) {
    background: #ffffff;
}

.pricing-feature:nth-child(even) {
    background: #f8f9fa;
}

.pricing-cta {
    padding: 2rem;
    text-align: center;
    background: white;
}

.pricing-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: #FFD700;
    color: #4a4a4a;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 0px solid transparent;
}

.pricing-button:hover {
    border: 5px solid #e91e63;
    padding: calc(1rem - 10px) calc(2rem - 10px);
}

/* Mobile Responsiveness */
@media (max-width: 1200px) {
    .content-container {
        padding: 0 15px;
        width: 100%;
        max-width: none;
        box-sizing: border-box;
    }
    
    .nav-container {
        padding: 0 10px;
    }
    
    body {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    h1, h2, h3, h4, p, div {
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
        box-sizing: border-box;
        hyphens: auto;
        -webkit-hyphens: auto;
        -moz-hyphens: auto;
    }

    .hero {
        background: linear-gradient(180deg, #9d1248 0%, #db1c6a 100%) !important;
    }

    .hero canvas {
        display: none !important;
        visibility: hidden !important;
        width: 0 !important;
        height: 0 !important;
    }

    .hero::after {
        display: none !important;
        animation: none !important;
    }

    .hamburger {
        display: flex;
        margin-right: 15px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(34, 34, 34, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(15px);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0.25rem 0;
    }

    .nav-menu .nav-link {
        color: #ffffff;
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        color: #444;
        background: #ffd54f;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .welcome-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .welcome-image {
        order: 1;
        height: 250px;
        margin-bottom: 1rem;
    }

    .welcome-text {
        order: 2;
    }

    .welcome-text h2 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-container {
        min-height: 300px;
        padding: 4rem 1.5rem 2rem 1.5rem;
    }

    .service-container::after {
        top: 30px;
        width: 50px;
        height: 50px;
    }

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

    .transform-subtitle {
        font-size: 1.1rem;
    }

    .benefit-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefit-container {
        min-height: 250px;
        padding: 4rem 1.5rem 2rem 1.5rem;
    }

    .benefit-container::after {
        top: 30px;
        width: 50px;
        height: 50px;
    }

    .footer {
        padding: 3rem 0 10rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h3 {
        text-align: center;
    }
    
    .footer-section ul {
        text-align: center;
    }

    .action-buttons {
        bottom: 5rem;
        right: 1rem;
    }

    .btn-scroll-top {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .references-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .about-section h2 {
        font-size: 2rem;
    }
    
    .about-section h3 {
        font-size: 1.5rem;
    }
    
    .legal-page {
        padding: 6rem 0 3rem 0;
    }
    
    .legal-page h1 {
        font-size: 2rem;
    }
    
    .legal-content {
        padding: 2rem 1.5rem;
    }
    
    .legal-content h2 {
        font-size: 1.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-page h1 {
        font-size: 2rem;
    }
    
    .pricing-circle {
        width: 60px;
        height: 60px;
        border-width: 10px;
    }
}
