body {
    font-family: 'Roboto', Arial, sans-serif;
    color: #ffffff;
    background-color: #0c0c0c;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

header {
    background-image: url(images/schiff.png);
    background-size: cover;
    background-position: left center;
    height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: .5rem 1rem 2rem;
    position: relative;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(0, 0, 0, 0.8) 50%);
}

header .logo {
    background: url(images/logo.png) no-repeat center;
    background-size: 100% auto;
    width: 240px;
    height: 145px;
    display: block;
    margin: 0 auto 2rem;
}


header>* {
    position: relative;
    z-index: 1;
}

header h1 {
    font-size: 3rem;
    line-height: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

header p {
    font-size: 1.2rem;
    max-width: 800px;
    margin-bottom: 2rem;
}

p {
    font-size: 1.2rem;
}

h1,
h2,
h3 {
    font-family: 'Saira', sans-serif;
    font-weight: 600;
    font-size: 2.5rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    z-index: 10;
    position: relative;
}

.primary-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: bold;
}

.primary-btn {
    background-color: #FC8337;
    color: #030303;
    text-decoration: none;
}


main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

section {
    margin-bottom: 4rem;
}

.hanse-sail,
.hanse-sail-info,
.bitcoin-gutschrift,
.deck-party {
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.hanse-sail-info img,
.bitcoin-gutschrift img,
.deck-party img {
    max-width: 50%;
    height: auto;
    border-radius: 10px;
    margin-top: 2rem;
}

.program {
    background-color: #FC8337;
    color: #000000;
    padding: 2rem;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    font-family: Arial, sans-serif;
}


.program h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: bold;
    margin-top: 0;
    text-align: center;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: #000000;
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-item:nth-child(odd) {
    padding-right: calc(50% + 30px);
    text-align: right;
}

.timeline-item:nth-child(even) {
    padding-left: calc(50% + 30px);
    text-align: left;
}

.time {
    font-weight: bold;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.timeline-item .number {
    position: absolute;
    top: 0;
    width: 30px;
    height: 30px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 2;
    font-size: 1rem;
}

.timeline-item:nth-child(odd) .number {
    right: calc(50% - 15px);
}

.timeline-item:nth-child(even) .number {
    left: calc(50% - 15px);
}

.description {
    margin-top: 0.5rem;
    font-size: 1.2rem;
    line-height: 1.4;
}


.ticket-options {
    background: #fff;
    color: #000;
    padding: 1rem;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.ticket-options h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
    text-align: center;
}



.bitcoin-voucher {
    text-align: center;
}

.bitcoin-voucher h2 {
    margin-top: 0;
}


.museum-tour h2 {
    margin-top: 0;
    text-align: center;
}

.museum-tour .tour-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.highlight img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.highlight {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.highlight h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding: 0 1rem;
    color: #FC8337;
}

.highlight p {
    padding: 0 1rem;
}

.call-to-action {
    background-color: #FC8337;
    color: #030303;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
}

.call-to-action ol {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    list-style-type: none;
    padding: 0;
    margin-bottom: 2rem;
}

.call-to-action li {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 10px;
}

.call-to-action .cta-buttons {
    justify-content: center;
}

.call-to-action .primary-btn {
    background-color: #030303;
    color: #FC8337;
    text-decoration: none;
}

footer {
    text-align: center;
    padding: 1rem;
    background-color: #030303;
}

.join-us {
    background-color: #000000;
    color: #ffffff;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.join-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('sail-background.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 1;
}

.join-us h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    margin-top: 0;
    text-align: center;
    position: relative;
    z-index: 2;
}

.reasons {
    display: flex;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.reason {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background-color: #fff;
    color: #000000;
    border-radius: 50%;
    box-shadow: 0 0 0 2px #000;
    font-weight: bold;
    flex-shrink: 0;
}

.content {
    flex-grow: 1;
}

.reason h3 {
    font-size: 1.3rem;
    color: #FC8337;
    margin: 0 0 0.5rem 0;
}

.reason p {
    font-size: 1rem;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 768px) {

    h1,
    h2,
    h3,
    .program h2,
    .ticket-options h2 {
        font-size: 2rem;
        line-height: 2.2rem;
    }

    .reason h3 {
        line-height: 1.5rem;
    }

    .hanse-sail-info,
    .bitcoin-gutschrift,
    .deck-party {
        flex-direction: column;
    }

    .hanse-sail-info img,
    .bitcoin-gutschrift img,
    .deck-party img {
        max-width: 100%;
    }

    .ticket-options .ticket-types,
    .museum-tour .tour-highlights,
    .call-to-action ol {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        padding-left: 70px;
        padding-right: 0;
        text-align: left;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding-left: 70px;
        padding-right: 0;
        text-align: left;
    }

    .number {
        left: 15px;
    }

    .timeline-item:nth-child(odd) .number,
    .timeline-item:nth-child(even) .number {
        left: 15px;
    }

    .tickets {
        flex-direction: column;
    }

    .reasons {
        flex-direction: column;
    }

    footer p {
        font-size: .9rem;
    }
}