@import 'tailwindcss';

@source '../../vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php';
@source '../../storage/framework/views/*.php';
@source '../**/*.blade.php';
@source '../**/*.js';

@theme {
    --font-sans: 'Instrument Sans', ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
        'Segoe UI Symbol', 'Noto Color Emoji';
}

/* Custom Styles */
body {
    margin: 0;
    padding: 0;
    font-family: var(--font-sans);
}

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

/* Carousel / Slider */
#hero-carousel .carousel-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Navigation */
.navbar {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #0066cc;
}

/* Hero Section - Landing Page */
.hero-landing {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.offer-box {
    background: white;
    color: #333;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    max-width: 600px;
    border: 3px solid #667eea;
}

.offer-box h2 {
    color: #667eea;
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
    text-align: center;
}

.offer-box h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.6;
}

.offer-cta {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

.offer-cta strong {
    color: #667eea;
    font-size: 1.2rem;
}

.offer-cta a {
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
}

.offer-cta a:hover {
    text-decoration: underline;
}

/* Welcome Teaser */
.welcome-teaser {
    text-align: center;
    color: white;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.welcome-teaser h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.lead-text {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-weight: 500;
}

.sub-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Hero Section - Standard */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

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

/* Sections */
section {
    padding: 4rem 0;
}

.page-header {
    background: #f8f9fa;
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

/* Advantages Grid */
.advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.advantage-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.advantage-item h3 {
    margin-top: 0;
    color: #667eea;
}

/* Equipment Sections */
.equipment-section {
    padding: 4rem 0;
}

.equipment-section.alt-bg {
    background: #f8f9fa;
}

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

/* Equipment Grid */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.equipment-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.equipment-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.equipment-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.equipment-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.equipment-content {
    padding: 1.5rem;
}

.equipment-code {
    display: inline-block;
    background: #667eea;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.equipment-card h3 {
    color: #333;
    font-size: 1.25rem;
    margin: 0.5rem 0 1rem;
    line-height: 1.4;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0.5rem 0;
}

.status-badge.status-available {
    background: #d4edda;
    color: #155724;
}

.status-badge.status-in_progress {
    background: #fff3cd;
    color: #856404;
}

.status-badge.status-coming_soon {
    background: #d1ecf1;
    color: #0c5460;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #28a745;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.equipment-spec {
    margin: 0.5rem 0;
    color: #666;
}

.equipment-link {
    display: inline-block;
    margin-top: 1rem;
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.equipment-link:hover {
    color: #5568d3;
}

/* Simple Equipment Lists */
.equipment-list-simple {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.list-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.equipment-section.alt-bg .list-item {
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

.check-icon {
    color: #667eea;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

/* Services Page */
.services-intro {
    padding: 3rem 0;
    background: #fff;
}

.intro-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.services-main {
    padding: 4rem 0;
    background: #f8f9fa;
}

.services-main h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #667eea;
    margin: 1rem 0;
    font-size: 1.3rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Remote Experiments Section */
.remote-experiments {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.remote-content {
    max-width: 1000px;
    margin: 0 auto;
}

.remote-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.remote-text h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

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

.benefits-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    line-height: 1.6;
    font-size: 1.1rem;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    font-weight: bold;
}

.remote-equipment {
    margin-top: 2.5rem;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
}

.remote-equipment h4 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.equipment-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.equipment-tag {
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.3);
}

/* Service Process Section */
.service-process {
    padding: 4rem 0;
    background: #fff;
}

.service-process h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 2rem 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #667eea;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.process-step h4 {
    color: #667eea;
    margin: 0.5rem 0;
}

.process-step p {
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}

.process-arrow {
    font-size: 2rem;
    color: #667eea;
    font-weight: bold;
}

/* Services CTA */
.services-cta {
    background: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
}

.services-cta h2 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.services-cta p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Old Service Styles */
.service-item {
    background: #f8f9fa;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
}

.service-item h3 {
    color: #667eea;
    margin-top: 0;
}

/* CTA Sections */
.cta,
.equipment-cta,
.services-cta {
    background: #f8f9fa;
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary {
    background: #667eea;
    color: white;
}

.btn-primary:hover {
    background: #5568d3;
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    padding: 3rem 0 1rem;
}

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

.contact-info h3 {
    margin-top: 0;
}

.footer-links {
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
}

.footer-links a:hover {
    color: #667eea;
}

.footer-funding {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid #555;
    margin-bottom: 1rem;
}

.funding-logo {
    max-width: 300px;
    height: auto;
    margin-bottom: 1rem;
}

.funding-text {
    color: #ccc;
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 1rem;
    text-align: center;
}

footer a {
    color: #667eea;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Legal Pages (Impressum, Datenschutz) */
.legal-content {
    padding: 3rem 0;
    background: #fff;
}

.legal-box {
    max-width: 800px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 8px;
    line-height: 1.8;
}

.legal-box h2 {
    color: #333;
    margin-top: 0;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #667eea;
}

.legal-box h3 {
    color: #667eea;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-box p {
    margin-bottom: 1rem;
    color: #555;
}

.company-info {
    background: #fff;
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.funding-section {
    text-align: center;
    margin: 2rem 0;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
}

.funding-logo-impressum {
    max-width: 350px;
    width: 100%;
    height: auto;
}

.copyright-notice {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
    text-align: center;
    color: #777;
    font-size: 0.9rem;
}

.legal-box a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.legal-box a:hover {
    text-decoration: underline;
}

/* Featured Equipment Section */
.featured-equipment {
    padding: 4rem 0;
    background: #fff;
}

.equipment-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.equipment-detail.reverse {
    direction: rtl;
}

.equipment-detail.reverse > * {
    direction: ltr;
}

.equipment-detail-content h2 {
    color: #667eea;
    font-size: 2rem;
    margin: 0 0 0.5rem 0;
}

.equipment-detail-content h3 {
    color: #333;
    font-size: 1.3rem;
    margin: 0 0 1.5rem 0;
    font-weight: 600;
}

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

.specs-list li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    line-height: 1.6;
    color: #555;
}

.specs-list li:before {
    content: ">";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.equipment-detail-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.equipment-detail-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Workflow Section */
.workflow-section {
    background: #f8f9fa;
    padding: 4rem 0;
}

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

.workflow-list {
    max-width: 900px;
    margin: 0 auto;
}

.workflow-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.workflow-icon {
    background: #667eea;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.workflow-item p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.workflow-item small {
    color: #777;
    font-size: 0.9rem;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-large {
    font-size: 1.2rem;
    padding: 1rem 3rem;
}

/* About Page Styles */
.about-intro {
    padding: 3rem 0;
    background: #fff;
}

.about-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
}

.about-box h2 {
    color: #667eea;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.lead {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #555;
}

.about-content-section {
    padding: 3rem 0;
    background: #f8f9fa;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.content-block {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.content-block h3 {
    color: #667eea;
    margin-top: 0;
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

.feature-list li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: #555;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.about-benefits {
    padding: 4rem 0;
    background: #fff;
}

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

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h4 {
    color: #667eea;
    margin: 1rem 0;
    font-size: 1.2rem;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

.about-company {
    padding: 4rem 0;
    background: #f8f9fa;
}

.company-info-box {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.company-info-box h2 {
    color: #667eea;
    text-align: center;
    margin-bottom: 2rem;
}

.company-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.detail-item h4 {
    color: #667eea;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.detail-item p {
    color: #555;
    line-height: 1.8;
    margin: 0;
}

.detail-item a {
    color: #667eea;
    text-decoration: none;
}

.detail-item a:hover {
    text-decoration: underline;
}

.about-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.about-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .equipment-detail,
    .equipment-detail.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .offer-box {
        padding: 2rem;
    }

    .offer-box h2 {
        font-size: 1.5rem;
    }

    .offer-box h3 {
        font-size: 1.2rem;
    }

    .welcome-teaser h1 {
        font-size: 2rem;
    }

    .lead-text {
        font-size: 1.2rem;
    }

    .sub-text {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

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

    .equipment-detail-content h3 {
        font-size: 1.1rem;
    }

    .workflow-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .content-grid,
    .benefits-grid,
    .company-details {
        grid-template-columns: 1fr;
    }

    .about-box h2,
    .about-benefits h2,
    .about-cta h2 {
        font-size: 2rem;
    }

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

    .process-steps {
        flex-direction: column;
    }

    .process-arrow {
        transform: rotate(90deg);
    }

    .equipment-tags {
        flex-direction: column;
    }

    .remote-text h2 {
        font-size: 2rem;
    }

    .service-process h2,
    .services-main h2 {
        font-size: 2rem;
    }
}

/* Contact Page */
.contact-map {
    width: 100%;
    min-height: 450px;
    background: #f8f9fa;
}

.map-container {
    width: 100%;
    height: 450px;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.map-link {
    text-align: center;
    padding: 1rem;
    background: #fff;
    border-top: 1px solid #e0e0e0;
}

.map-link a {
    color: #667eea;
    text-decoration: none;
    font-size: 0.9rem;
}

.map-link a:hover {
    text-decoration: underline;
}

.contact-info-section {
    padding: 4rem 0;
    background: #fff;
}

.contact-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-block {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-block h3 {
    color: #667eea;
    margin: 1rem 0;
    font-size: 1.5rem;
}

.contact-block p {
    color: #555;
    line-height: 1.8;
    margin: 0.5rem 0;
}

.contact-block a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-block a:hover {
    text-decoration: underline;
}

.text-muted {
    color: #999;
    font-size: 0.95rem;
}

.contact-description {
    margin-top: 1rem;
    color: #666;
    font-size: 0.95rem;
}

/* Directions Section */
.directions-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

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

.directions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.direction-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.direction-item h4 {
    color: #667eea;
    margin: 0 0 1rem 0;
    font-size: 1.2rem;
}

.direction-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background: white;
    color: #667eea;
}

.btn-secondary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

/* Responsive Contact Page */
@media (max-width: 768px) {
    .contact-blocks {
        grid-template-columns: 1fr;
    }

    .directions-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .contact-cta h2 {
        font-size: 2rem;
    }

    .directions-section h2 {
        font-size: 2rem;
    }

    .funding-logo {
        max-width: 250px;
    }

    .funding-logo-impressum {
        max-width: 280px;
    }

    .map-container {
        height: 350px;
    }

    .contact-map {
        min-height: 350px;
    }
}

/* Dropdown Navigation */
.nav-menu {
    position: relative;
}

.nav-menu .dropdown {
    position: relative;
}

.nav-menu .dropdown > a {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.dropdown-arrow {
    font-size: 0.8rem;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    min-width: 250px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    border-radius: 4px;
    z-index: 1000;
    list-style: none;
}

.dropdown:hover > .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: #333;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.dropdown-menu li a:hover {
    background: #f8f9fa;
    color: #667eea;
}

/* Dropdown Submenus */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-submenu-menu {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    min-width: 250px;
    padding: 0.5rem 0;
    margin-left: 0.5rem;
    border-radius: 4px;
    list-style: none;
}

.dropdown-submenu:hover > .dropdown-submenu-menu {
    display: block;
}

.dropdown-submenu-menu li {
    padding: 0;
}

.dropdown-submenu-menu li a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: #333;
    white-space: nowrap;
}

.dropdown-submenu-menu li a:hover {
    background: #f8f9fa;
    color: #667eea;
}

/* Mobile Navigation Toggle */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    color: #333;
}

.navbar-toggler-icon {
    font-size: 2rem;
}

/* Mobile Navigation */
@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        background: white;
        padding: 1rem;
        overflow-y: auto;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        z-index: 999;
    }

    body.mobile-nav-active .nav-menu {
        display: block;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .nav-menu li a {
        padding: 1rem;
        display: block;
    }

    .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        background: #f8f9fa;
        margin: 0;
        padding: 0;
        border-radius: 0;
    }

    .dropdown.active > .dropdown-menu {
        display: block;
    }

    .dropdown > a {
        cursor: pointer;
    }

    .dropdown-submenu-menu {
        position: static;
        display: none;
        box-shadow: none;
        background: #e9ecef;
        margin: 0;
        padding: 0;
        border-radius: 0;
    }

    .dropdown-submenu.active > .dropdown-submenu-menu {
        display: block;
    }

    .dropdown-submenu > a {
        cursor: pointer;
    }
}
