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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

/* Navigation - Split Style */
.split-nav {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    z-index: 1000;
    padding: 1.25rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
}

.ad-notice {
    font-size: 0.75rem;
    color: #6b7280;
    padding: 0.35rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    background-color: #f9fafb;
}

/* Hero Split Layout */
.hero-split {
    display: flex;
    min-height: 85vh;
}

.hero-content-left,
.hero-content-right {
    flex: 1;
    padding: 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content-left h1,
.hero-content-right h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.hero-content-left p,
.hero-content-right p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 2.5rem;
    max-width: 560px;
}

.hero-image-right,
.hero-image-left {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

/* CTA Buttons */
.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.cta-primary {
    background-color: #1a1a1a;
    color: #ffffff;
}

.cta-primary:hover {
    background-color: #2d2d2d;
    opacity: 1;
    transform: translateY(-2px);
}

.cta-secondary {
    background-color: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
}

.cta-secondary:hover {
    background-color: #1a1a1a;
    color: #ffffff;
    opacity: 1;
}

/* Intro Split Section */
.intro-split,
.content-split {
    display: flex;
    min-height: 70vh;
}

.intro-split.reverse,
.content-split.reverse {
    flex-direction: row-reverse;
}

.intro-image-left,
.intro-image-right,
.content-image-left,
.content-image-right {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

.intro-content-right,
.intro-content-left,
.content-text-right,
.content-text-left {
    flex: 1;
    padding: 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-content-right h2,
.intro-content-left h2,
.content-text-right h2,
.content-text-left h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.intro-content-right p,
.intro-content-left p,
.content-text-right p,
.content-text-left p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 1.5rem;
    max-width: 560px;
}

.link-inline {
    color: #1a1a1a;
    font-weight: 600;
    border-bottom: 2px solid #1a1a1a;
    padding-bottom: 2px;
    display: inline-block;
    cursor: pointer;
}

.link-inline:hover {
    opacity: 0.6;
}

/* Services Section */
.services-section {
    padding: 6rem 2rem;
    background-color: #f9fafb;
}

.services-header {
    max-width: 1200px;
    margin: 0 auto 5rem;
    text-align: center;
}

.services-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.services-header p {
    font-size: 1.2rem;
    color: #6b7280;
}

/* Service Card Split */
.service-card-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto 4rem;
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.service-card-split.reverse {
    flex-direction: row-reverse;
}

.service-text-left,
.service-text-right {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-text-left h3,
.service-text-right h3 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.service-text-left p,
.service-text-right p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.service-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.service-meta span {
    font-size: 0.95rem;
    color: #6b7280;
    font-weight: 500;
}

.service-meta .price {
    font-size: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.service-image-right,
.service-image-left {
    flex: 1;
    overflow: hidden;
    background-color: #e5e7eb;
}

.service-image-right img,
.service-image-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-select-service {
    padding: 0.875rem 2rem;
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select-service:hover {
    background-color: #2d2d2d;
    transform: translateY(-2px);
}

/* Services Detailed Page */
.services-detailed {
    padding: 4rem 2rem;
}

.service-full-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto 5rem;
    gap: 4rem;
}

.service-full-split.reverse {
    flex-direction: row-reverse;
}

.service-text-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-text-section h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.service-details {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.detail-item {
    font-size: 0.9rem;
    color: #6b7280;
    padding: 0.5rem 1rem;
    background-color: #f3f4f6;
    border-radius: 4px;
}

.service-image-section {
    flex: 1;
    background-color: #e5e7eb;
}

.service-image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.price-box {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f9fafb;
    border-left: 4px solid #1a1a1a;
}

.price-label {
    font-size: 0.9rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-value {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
}

/* Booking Info Section */
.booking-info {
    padding: 5rem 2rem;
    background-color: #f9fafb;
}

.booking-info-content {
    max-width: 1200px;
    margin: 0 auto;
}

.booking-info-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.info-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.info-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
}

.info-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.info-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4b5563;
}

/* Booking Split Section */
.booking-split {
    display: flex;
    min-height: 600px;
}

.booking-content-left {
    flex: 1;
    padding: 4rem 3rem;
    background-color: #f3f4f6;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.booking-content-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.booking-content-left p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 2rem;
}

.selected-service-display {
    padding: 1.25rem;
    background-color: #ffffff;
    border-left: 4px solid #1a1a1a;
    font-weight: 600;
    margin-top: 1rem;
}

.booking-form-right {
    flex: 1;
    padding: 4rem 3rem;
    background-color: #ffffff;
}

#bookingForm {
    max-width: 500px;
}

.form-group {
    margin-bottom: 1.75rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a1a1a;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #2d2d2d;
    transform: translateY(-2px);
}

/* Testimonials Split */
.testimonials-split {
    display: flex;
    min-height: 70vh;
}

.testimonial-image-left {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.testimonial-content-right {
    flex: 1;
    padding: 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f9fafb;
}

.testimonial-content-right h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

blockquote {
    margin-bottom: 2.5rem;
}

blockquote p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #374151;
    font-style: italic;
    margin-bottom: 1rem;
}

cite {
    font-style: normal;
    font-size: 0.95rem;
    color: #6b7280;
    font-weight: 600;
}

/* Final CTA Split */
.final-cta-split {
    display: flex;
    min-height: 500px;
}

.final-cta-split.reverse {
    flex-direction: row-reverse;
}

.cta-content-left {
    flex: 1;
    padding: 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #1a1a1a;
    color: #ffffff;
}

.cta-content-left h2 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-content-left p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: #d1d5db;
    max-width: 500px;
}

.cta-content-left .cta-secondary {
    background-color: #ffffff;
    color: #1a1a1a;
    border: none;
    align-self: flex-start;
}

.cta-content-left .cta-secondary:hover {
    background-color: #f3f4f6;
}

.cta-image-right {
    flex: 1;
    background-size: cover;
    background-position: center;
}

/* Contact Split */
.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 600px;
}

.contact-info-left {
    flex: 1;
    padding: 4rem 3rem;
    background-color: #f9fafb;
}

.contact-info-left h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.contact-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
}

.contact-map-right {
    flex: 1;
    background-color: #e5e7eb;
}

.map-placeholder {
    width: 100%;
    height: 100%;
}

/* Impressum Section */
.impressum-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.impressum-content {
    max-width: 900px;
    margin: 0 auto;
}

.impressum-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.impressum-content h3 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
    font-weight: 700;
}

.impressum-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 1.5rem;
}

.impressum-content a {
    color: #1a1a1a;
    text-decoration: underline;
    cursor: pointer;
}

/* Legal Content */
.legal-content {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.legal-container h2 {
    font-size: 1.75rem;
    margin: 3rem 0 1.5rem;
    font-weight: 700;
}

.legal-container h3 {
    font-size: 1.25rem;
    margin: 2rem 0 1rem;
    font-weight: 700;
}

.legal-container p {
    font-size: 1rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 1.5rem;
}

.legal-container ul,
.legal-container ol {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-container li {
    font-size: 1rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 0.75rem;
}

.legal-container a {
    color: #1a1a1a;
    text-decoration: underline;
    cursor: pointer;
}

/* CTA Section */
.cta-section {
    padding: 6rem 2rem;
    background-color: #1a1a1a;
}

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

.cta-box h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.cta-box .cta-primary {
    background-color: #ffffff;
    color: #1a1a1a;
}

.cta-box .cta-primary:hover {
    background-color: #f3f4f6;
}

/* Thanks Section */
.thanks-section {
    padding: 6rem 2rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 800px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.thanks-content > p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 3rem;
}

.thanks-details {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #f9fafb;
    border-radius: 8px;
}

.selected-tour-info h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.selected-tour-info p {
    font-size: 1.5rem;
    color: #1a1a1a;
}

.next-steps {
    margin-bottom: 3rem;
    text-align: left;
}

.next-steps h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.next-steps ol {
    margin-left: 2rem;
}

.next-steps li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 1rem;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 1rem 2.5rem;
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #2d2d2d;
    transform: translateY(-2px);
    opacity: 1;
}

.btn-secondary {
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #1a1a1a;
    color: #ffffff;
    opacity: 1;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 3rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.footer-column p {
    font-size: 0.95rem;
    color: #d1d5db;
    line-height: 1.6;
}

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

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: #d1d5db;
    font-size: 0.95rem;
    cursor: pointer;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding-top: 2rem;
    border-top: 1px solid #374151;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    color: #9ca3af;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #9ca3af;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1;
    min-width: 300px;
}

.cookie-content a {
    color: #ffffff;
    text-decoration: underline;
    cursor: pointer;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background-color: #ffffff;
    color: #1a1a1a;
}

.btn-cookie-accept:hover {
    background-color: #f3f4f6;
}

.btn-cookie-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-cookie-reject:hover {
    background-color: #2d2d2d;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .content-split,
    .service-card-split,
    .service-full-split,
    .booking-split,
    .testimonials-split,
    .final-cta-split,
    .contact-split {
        flex-direction: column;
    }

    .hero-split.reverse,
    .intro-split.reverse,
    .content-split.reverse,
    .service-card-split.reverse,
    .service-full-split.reverse,
    .final-cta-split.reverse {
        flex-direction: column;
    }

    .hero-content-left h1,
    .hero-content-right h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    .services-header h2 {
        font-size: 2.25rem;
    }
}

@media (max-width: 640px) {
    .nav-container {
        padding: 0 1rem;
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .hero-content-left,
    .hero-content-right,
    .intro-content-right,
    .intro-content-left,
    .content-text-right,
    .content-text-left {
        padding: 3rem 1.5rem;
    }

    .hero-content-left h1,
    .hero-content-right h1 {
        font-size: 2rem;
    }

    .services-section {
        padding: 4rem 1rem;
    }

    .service-text-left,
    .service-text-right {
        padding: 2rem 1.5rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }

    .info-grid {
        flex-direction: column;
    }
}
