/* Fonts importieren wie in style.css */
@font-face {
    font-display: swap;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 200;
    src: url('../fonts/montserrat-v29-latin-200.woff2') format('woff2');
}
@font-face {
    font-display: swap;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/montserrat-v29-latin-regular.woff2') format('woff2');
}
@font-face {
    font-display: swap;
    font-family: 'Playfair';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/playfair-v9-latin-700.woff2') format('woff2');
}

#aboutWrapper {
    max-width: 1000px;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,250,252,0.9) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 
        0 8px 32px rgba(0,0,0,0.12),
        0 2px 8px rgba(0,0,0,0.08),
        inset 0 1px 0 rgba(255,255,255,0.8);
    padding: 3rem 2.5rem 3.2rem 2.5rem;
    width: 85%;
    text-align: left;
    border: 1px solid rgba(255,255,255,0.3);
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 200;
    line-height: 1.7;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#aboutWrapper::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 45deg, transparent, rgba(28, 28, 132, 0.03), transparent, rgba(28, 28, 132, 0.03));
    border-radius: 50%;
    animation: rotate 20s linear infinite;
    z-index: 0;
    pointer-events: none;
}

#aboutWrapper::after {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(45deg, rgba(28, 28, 132, 0.1), transparent, rgba(28, 28, 132, 0.1));
    border-radius: 32px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#aboutWrapper:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 16px 48px rgba(0,0,0,0.15),
        0 4px 16px rgba(0,0,0,0.1),
        inset 0 1px 0 rgba(255,255,255,0.9);
}

#aboutWrapper:hover::after {
    opacity: 1;
}

#aboutWrapper * {
    position: relative;
    z-index: 1;
}

#aboutWrapper h2 {
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: 0.02em;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    background: linear-gradient(135deg, #1c1c84 0%, #2a2a9a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
}

#aboutWrapper h2:first-child {
    margin-top: 0;
}

#aboutWrapper h2::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #1c1c84 0%, transparent 100%);
    border-radius: 2px;
}

#aboutWrapper p,
#aboutWrapper ul {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 300;
    font-size: 1.1rem;
    color: #2a2a2a;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.02);
}

#aboutWrapper ul {
    margin: 1rem 0 1rem 0;
    padding: 0;
    list-style: none;
}

#aboutWrapper li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

#aboutWrapper li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #1c1c84 0%, #2a2a9a 100%);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(28, 28, 132, 0.3);
}

#aboutWrapper li::after {
    content: "";
    position: absolute;
    left: -4px;
    top: 0.2rem;
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, rgba(28, 28, 132, 0.1) 0%, rgba(42, 42, 154, 0.1) 100%);
    border-radius: 50%;
    z-index: -1;
}

#aboutWrapper strong {
    font-weight: 600;
    color: #1a1a1a;
    background: linear-gradient(135deg, #1c1c84 0%, #2a2a9a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bundles-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem auto;
    align-items: center;
    justify-content: center;
}

.bundle-box {
    background: linear-gradient(135deg, rgba(248,250,252,0.98) 0%, rgba(255,255,255,0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.5rem;
    border: 2px solid rgba(28, 28, 132, 0.1);
    box-shadow: 
        0 8px 32px rgba(0,0,0,0.1),
        0 2px 8px rgba(0,0,0,0.05),
        inset 0 1px 0 rgba(255,255,255,0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.bundle-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(28, 28, 132, 0.08), transparent);
    transition: left 0.8s ease;
}

.bundle-box:hover::before {
    left: 100%;
}

.bundle-box:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 16px 48px rgba(0,0,0,0.15),
        0 4px 16px rgba(0,0,0,0.08),
        inset 0 1px 0 rgba(255,255,255,0.9);
    border-color: rgba(28, 28, 132, 0.25);
}

.bundle-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.bundle-icon {
    font-size: 3rem;
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #434389 0%, #6e6edc 100%);
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(28, 28, 132, 0.4);
    position: relative;
    overflow: hidden;
    padding: 15px;
}

.bundle-icon::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.15), transparent);
    transform: rotate(45deg);
    animation: shimmer 4s ease-in-out infinite;
}

.bundle-icon img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
    z-index: 1;
    position: relative;
}

.bundle-title-section {
    flex: 1;
}

.bundle-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #1c1c84 0%, #2a2a9a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bundle-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1c1c84;
    margin-bottom: 0.3rem;
}

.bundle-savings {
    font-size: 0.9rem;
    color: #28a745;
    font-weight: 500;
}

.bundle-desc {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.bundle-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.bundle-features li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: #3a3a3a;
    font-weight: 400;
    line-height: 1.6;
}

.bundle-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 1.2rem;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.bundle-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(28, 28, 132, 0.1);
}

.bundle-duration {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.bundle-button {
    background: linear-gradient(135deg, #1c1c84 0%, #2a2a9a 100%);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(28, 28, 132, 0.4);
    font-family: 'Montserrat', Arial, sans-serif;
    position: relative;
    overflow: hidden;
}

.bundle-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.bundle-button:hover::before {
    left: 100%;
}

.bundle-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(28, 28, 132, 0.5);
    background: linear-gradient(135deg, #2a2a9a 0%, #3a3aaa 100%);
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@media (max-width: 900px) {
    #aboutWrapper {
        padding: 2rem 1.5rem 2.2rem 1.5rem;
        margin: 10% auto;
        width: 85%;
        max-width: 600px;
    }
    #aboutWrapper h2 {
        font-size: 1.5rem;
    }
    #aboutWrapper p,
    #aboutWrapper ul {
        font-size: 1rem;
    }
    
    /* Better mobile styling for the "Warum unsere Bundles?" section */
    #aboutWrapper li {
        margin-bottom: 1.2rem;
        padding-left: 2rem;
        line-height: 1.6;
        display: block;
        align-items: flex-start;
    }
    
    #aboutWrapper li::before {
        top: 0.3rem;
        width: 6px;
        height: 6px;
        left: 0.3rem;
    }
    
    #aboutWrapper li::after {
        top: -0.1rem;
        width: 14px;
        height: 14px;
        left: -2.7px;
    }
    
    .bundles-container {
        margin: 2rem auto;
    }
    
    .bundle-box {
        padding: 2rem 1.5rem;
        gap: 1.5rem;
        margin: 0 auto;
        max-width: 600px;
        width: 90%;
    }
    
    .bundle-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }
    
    .bundle-title-section {
        text-align: center;
    }
}

@media (max-width: 600px) {
    #aboutWrapper {
        padding: 1.5rem 1rem 1.8rem 1rem;
        border-radius: 16px;
        width: 85%;
        margin: 15% auto;
        max-width: 450px;
    }
    #aboutWrapper h2 {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }
    #aboutWrapper p,
    #aboutWrapper ul {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    /* Enhanced mobile styling for list items */
    #aboutWrapper li {
        margin-bottom: 1.3rem;
        padding-left: 1.8rem;
        line-height: 1.6;
        font-size: 0.95rem;
        display: block;
        align-items: flex-start;
        gap: 0;
        text-align: left;
    }
    
    #aboutWrapper li::before {
        top: 0.4rem;
        width: 5px;
        height: 5px;
        left: 0.3rem;
    }
    
    #aboutWrapper li::after {
        top: 0rem;
        width: 12px;
        height: 12px;
        left: -2.7px;
    }
    
    #aboutWrapper strong {
        display: inline;
        margin-bottom: 0;
        font-size: 0.95rem;
    }
    
    /* Better spacing for the benefits section */
    #aboutWrapper ul {
        margin: 1.5rem 0 2rem 0;
        padding: 0;
        text-align: left;
    }
    
    .bundles-container {
        margin: 2rem auto;
    }
    
    .bundle-box {
        padding: 1.5rem 1rem;
        border-radius: 20px;
        margin: 0 auto;
        width: 100%;
        max-width: 450px;
        box-sizing: border-box;
    }
    
    .bundle-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.2rem;
    }
    
    .bundle-title-section {
        text-align: center;
    }
    
    .bundle-title {
        font-size: 1.5rem;
    }
}

/* Detailed Services Styling */
#servicesDetailWrapper {
    width: 90%;
    max-width: 1200px;
    margin: 4rem auto 2rem auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-detail-box {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,250,252,0.9) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 
        0 8px 32px rgba(0,0,0,0.12),
        0 2px 8px rgba(0,0,0,0.08),
        inset 0 1px 0 rgba(255,255,255,0.8);
    border: 1px solid rgba(255,255,255,0.3);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-detail-box::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 45deg, transparent, rgba(28, 28, 132, 0.02), transparent, rgba(28, 28, 132, 0.02));
    border-radius: 50%;
    animation: rotate 25s linear infinite;
    z-index: 0;
    pointer-events: none;
}

.service-detail-box:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 16px 48px rgba(0,0,0,0.15),
        0 4px 16px rgba(0,0,0,0.1),
        inset 0 1px 0 rgba(255,255,255,0.9);
}

.service-detail-box.reverse {
    flex-direction: row-reverse;
}

.service-detail-img {
    flex: 0 0 400px;
    height: 300px;
    position: relative;
    z-index: 1;
}

.service-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.service-detail-box:hover .service-detail-img img {
    transform: scale(1.05);
}

.service-detail-content {
    flex: 1;
    position: relative;
    z-index: 1;
    font-weight: light;
    font-family: 'Montserrat';
    font-weight: 200;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    background: linear-gradient(135deg, #1c1c84 0%, #2a2a9a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.service-detail-content h2::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #1c1c84 0%, transparent 100%);
    border-radius: 2px;
}

.service-detail-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2a2a2a;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.service-detail-content ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-detail-content ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: #3a3a3a;
    font-weight: 400;
}

.service-detail-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #1c1c84;
    font-weight: bold;
    font-size: 1.1rem;
}

@media (max-width: 1024px) {
    #servicesDetailWrapper {
        padding: 0 1.5rem;
        gap: 3rem;
    }
    
    .service-detail-box {
        flex-direction: column !important;
        text-align: center;
        padding: 2.5rem;
        gap: 2rem;
    }
    
    .service-detail-img {
        flex: none;
        width: 100%;
        max-width: 500px;
        height: 250px;
    }
    
    .service-detail-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    #servicesDetailWrapper {
        padding: 0 1rem;
        gap: 2.5rem;
        margin: 3rem auto 2rem auto;
    }
    
    .service-detail-box {
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }
    
    .service-detail-img {
        height: 200px;
    }
    
    .service-detail-content h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .service-detail-content p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .service-detail-content ul li {
        font-size: 0.95rem;
        padding-left: 1.5rem;
    }
}

@media (max-width: 600px) {
    .service-detail-box {
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }
    
    .service-detail-img {
        height: 180px;
    }
    
    .service-detail-content h2 {
        font-size: 1.3rem;
    }
    
    .service-detail-content p {
        font-size: 0.95rem;
    }
}

body {
    margin: 0;
}


#nav {
    margin-top: 0;
    padding-top: 0;
}

/* Scroll offset for anchor links */
#website-entwicklung,
#social-media,
#logo-design {
    scroll-margin-top: 150px;
}

/* Bundles CTA Animation */
.bundles-cta {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid #dee2e6;
    margin-top: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: #1c1c84;
    font-weight: bold;
    display: block;
    position: relative;
}

.bundles-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: #1c1c84;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    text-decoration: none;
    color: #0056b3;
}

.bundles-cta .arrow {
    margin-left: 0.5rem;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.bundles-cta:hover .arrow {
    transform: translateX(5px);
}