@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* Fallback für Geometos Soft - Falls Sie den Font lokal haben, ersetzen Sie die URL oben */
@font-face {
    font-family: 'Geometos Soft';
    src: url('fonts/geometos-soft-bold.woff2') format('woff2'),
         url('fonts/geometos-soft-bold.woff') format('woff');
    font-weight: bold;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Geometos Soft', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #242341 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(36, 35, 65, 0.15);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 40px;
    width: auto;
    margin-right: 12px;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #242341;
    text-decoration: none;
    font-family: 'Geometos Soft', 'Inter', sans-serif;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s ease;
    font-family: 'Geometos Soft', 'Inter', sans-serif;
}

.nav-links a:hover,
.nav-links a.active {
    color: #242341;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: #242341;
    margin: 3px 0;
    transition: 0.3s;
}

/* Main Content */
main {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    padding: 2rem 0;
}

.page {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(36, 35, 65, 0.95), rgba(26, 26, 46, 0.95));
    color: white;
    padding: 4rem 0;
    text-align: center;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 20px 40px rgba(36, 35, 65, 0.3);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Geometos Soft', 'Inter', sans-serif;
    font-weight: bold;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #242341;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-family: 'Geometos Soft', 'Inter', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    background: #f8f9ff;
}

/* Services Section */
.services {
    background: white;
    padding: 3rem 0;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 20px 40px rgba(36, 35, 65, 0.1);
}

.services h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #242341;
    font-size: 2.5rem;
    font-family: 'Geometos Soft', 'Inter', sans-serif;
    font-weight: bold;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: linear-gradient(135deg, rgba(36, 35, 65, 0.05), rgba(36, 35, 65, 0.1));
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #242341;
    box-shadow: 0 15px 30px rgba(36, 35, 65, 0.15);
}

.service-card h3 {
    color: #242341;
    font-family: 'Geometos Soft', 'Inter', sans-serif;
    font-weight: bold;
    margin-bottom: 1rem;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: hue-rotate(220deg);
}

/* Content Pages */
.content-page {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(36, 35, 65, 0.1);
    margin-bottom: 2rem;
}

.content-page h1 {
    color: #242341;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-family: 'Geometos Soft', 'Inter', sans-serif;
    font-weight: bold;
}

.content-page h2 {
    color: #242341;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-family: 'Geometos Soft', 'Inter', sans-serif;
    font-weight: bold;
}

.content-page h3 {
    color: #242341;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: 'Geometos Soft', 'Inter', sans-serif;
    font-weight: bold;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #242341;
    font-family: 'Geometos Soft', 'Inter', sans-serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #242341;
    box-shadow: 0 0 0 3px rgba(36, 35, 65, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #242341, #1a1a2e);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    font-family: 'Geometos Soft', 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 5px 15px rgba(36, 35, 65, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(36, 35, 65, 0.4);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Success/Error Messages */
.message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Demo Page - Wird ausgeblendet */
.demo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.demo-card {
    background: linear-gradient(135deg, rgba(36, 35, 65, 0.05), rgba(36, 35, 65, 0.1));
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.demo-card:hover {
    transform: translateY(-5px);
}

.demo-placeholder {
    background: #242341;
    color: white;
    padding: 4rem 2rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.play-btn {
    background: #242341;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'Geometos Soft', 'Inter', sans-serif;
    font-weight: bold;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.play-btn:hover {
    background: #1a1a2e;
    transform: translateY(-2px);
}

/* Coming Soon Overlay für Demo-Seite */
.coming-soon {
    background: white;
    padding: 4rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(36, 35, 65, 0.1);
}

.coming-soon h2 {
    color: #242341;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Geometos Soft', 'Inter', sans-serif;
}

.coming-soon p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.coming-soon .icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    display: block;
}

/* Footer */
footer {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
    color: #242341;
}

/* PDF Download Section */
.pdf-download-section {
    margin: 2rem 0 3rem 0;
}

.pdf-card {
    background: linear-gradient(135deg, rgba(36, 35, 65, 0.05), rgba(36, 35, 65, 0.1));
    border: 2px solid rgba(36, 35, 65, 0.15);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all 0.3s ease;
}

.pdf-card:hover {
    border-color: #242341;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(36, 35, 65, 0.15);
}

.pdf-icon {
    font-size: 4rem;
    min-width: 80px;
    text-align: center;
}

.pdf-content h3 {
    color: #242341;
    font-family: 'Geometos Soft', 'Inter', sans-serif;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.pdf-content p {
    color: #666;
    margin-bottom: 1.5rem;
}

.pdf-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.pdf-button {
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-family: 'Geometos Soft', 'Inter', sans-serif;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.pdf-button.download {
    background: #242341;
    color: white;
}

.pdf-button.download:hover {
    background: #1a1a2e;
    transform: translateY(-2px);
}

.pdf-button.view {
    background: transparent;
    color: #242341;
    border: 2px solid #242341;
}

.pdf-button.view:hover {
    background: #242341;
    color: white;
}

/* PDF Viewer Section */
.pdf-viewer-section {
    margin: 3rem 0;
}

.pdf-viewer-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(36, 35, 65, 0.1);
    padding: 2rem;
    text-align: center;
}

.pdf-embed {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pdf-fallback {
    padding: 3rem;
    background: rgba(36, 35, 65, 0.05);
    border-radius: 10px;
    text-align: center;
}

.pdf-fallback h3 {
    color: #242341;
    margin-bottom: 1rem;
}

/* Pricing Page Styles */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(36, 35, 65, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(36, 35, 65, 0.15);
    border-color: #242341;
}

.pricing-card.featured {
    border-color: #242341;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: #242341;
    color: white;
    padding: 5px 40px;
    font-size: 0.9rem;
    font-weight: bold;
    transform: rotate(45deg);
    font-family: 'Geometos Soft', 'Inter', sans-serif;
}

.card-header {
    text-align: center;
    padding: 2rem 1.5rem 1rem;
    background: linear-gradient(135deg, rgba(36, 35, 65, 0.05), rgba(36, 35, 65, 0.1));
}

.package-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.card-header h3 {
    color: #242341;
    font-family: 'Geometos Soft', 'Inter', sans-serif;
    font-weight: bold;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.package-subtitle {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.card-body {
    padding: 1.5rem;
}

.price {
    text-align: center;
    margin-bottom: 2rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: bold;
    color: #242341;
    font-family: 'Geometos Soft', 'Inter', sans-serif;
}

.price-unit {
    color: #666;
    font-size: 1rem;
    display: block;
    margin-top: 0.5rem;
}

.feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.card-footer {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.min-booking {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    font-style: italic;
}

/* Additional Services */
.additional-services {
    margin: 4rem 0;
}

.service-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(36, 35, 65, 0.1);
    margin-top: 2rem;
}

.service-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s ease;
}

.service-row:last-child {
    border-bottom: none;
}

.service-row:hover {
    background: rgba(36, 35, 65, 0.05);
}

.service-name strong {
    color: #242341;
    font-family: 'Geometos Soft', 'Inter', sans-serif;
    font-weight: bold;
}

.service-name p {
    margin: 0.5rem 0 0 0;
    color: #666;
    font-size: 0.9rem;
}

.service-price {
    font-weight: bold;
    color: #242341;
    font-size: 1.1rem;
    font-family: 'Geometos Soft', 'Inter', sans-serif;
    text-align: right;
}

/* Pricing Info */
.pricing-info {
    margin: 4rem 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-card {
    background: linear-gradient(135deg, rgba(36, 35, 65, 0.05), rgba(36, 35, 65, 0.1));
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: #242341;
    transform: translateY(-3px);
}

.info-card h3 {
    color: #242341;
    font-family: 'Geometos Soft', 'Inter', sans-serif;
    margin-bottom: 1rem;
}

/* Payment Terms */
.payment-terms {
    margin: 4rem 0;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(36, 35, 65, 0.1);
}

.terms-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.terms-column h3 {
    color: #242341;
    font-family: 'Geometos Soft', 'Inter', sans-serif;
    margin-bottom: 1rem;
}

.terms-column ul {
    list-style: none;
    padding: 0;
}

.terms-column li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.terms-column li:before {
    content: "▪";
    color: #242341;
    position: absolute;
    left: 0;
}

/* CTA Section */
.cta-section {
    text-align: center;
    background: linear-gradient(135deg, rgba(36, 35, 65, 0.95), rgba(26, 26, 46, 0.95));
    color: white;
    padding: 4rem 2rem;
    border-radius: 15px;
    margin: 4rem 0;
}

.cta-section h2 {
    font-family: 'Geometos Soft', 'Inter', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button.primary {
    background: white;
    color: #242341;
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: white;
    color: #242341;
}

/* Disclaimer */
.disclaimer {
    background: rgba(36, 35, 65, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid rgba(36, 35, 65, 0.1);
    margin-top: 3rem;
    font-size: 0.9rem;
    color: #666;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 5px 15px rgba(36, 35, 65, 0.15);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .content-page {
        padding: 2rem;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .demo-grid {
        grid-template-columns: 1fr;
    }

    .logo {
        font-size: 1.4rem;
    }

    .logo-image {
        height: 32px;
        margin-right: 8px;
    }

    /* Pricing Mobile Styles */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }

    .service-row {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .service-price {
        text-align: center;
        font-size: 1.2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 280px;
    }

    .terms-content {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .payment-terms {
        padding: 2rem 1.5rem;
    }

    /* PDF Mobile Styles */
    .pdf-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .pdf-buttons {
        flex-direction: column;
        width: 100%;
    }

    .pdf-button {
        width: 100%;
        justify-content: center;
    }

    .pdf-embed {
        height: 400px;
    }
}