/* Reset & box-sizing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body & main layout */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #111827;
    background-image: url('img/bg.jpg');
    background-size: cover;
    background-position: center 15%;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Make background stay in place */
    min-height: 100vh;
    padding: 0;
    color: #ffffff;
}

/* Sticky header */
.header {
    /* position: sticky; */
    top: 0;
    /* background-color: rgba(0,0,0,0.7); */
    padding: 1rem 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    z-index: 10;
    max-width: 80vw;
    margin: 0 auto;
    height: 75vh;
    display: flex;
    flex-direction: column;
}

/* Container with max width */
.container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 1.5rem;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    /*margin-top: 75vh;*/
    /* Show 2/3 of background image above content */
}

/* Tour cards */
.tour-dates {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tour-card {
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    border-radius: 0.5rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.date-text {
    color: #facc15;
    font-weight: bold;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.city-text {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.event-text {
    color: #e40277;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.organizer-text {
    color: #d1d5db;
    font-size: 0.875rem;
}

.organizer-text a {
    color: #93c5fd;
    text-decoration: underline;
}

.tickets-text {
    margin-top: 0.5rem;
    color: #93c5fd;
    font-size: 0.875rem;
}

.tickets-text a {
    color: #60a5fa;
    text-decoration: underline;
}

/* new */

.header img {
    max-width: 100%;
}

#tour-title {
    max-width: 1000px;
    margin: 0 auto;
}

#korsk-logo {
    max-width: 25vw;
    max-height: 50vh;
    align-self: flex-end;
        position: fixed;
    margin-top: 20vw;
    z-index: 1000;
}

.tour-flyer {
    float: left;
    margin-right: 20px;
}

.tour-flyer img {
    max-width: 200px;
}

.organizer-text .x:last-child {
    display: none;
}

footer {
    margin: 0 10vw;
    margin-top: 50vh;
    text-align: center;
}

footer svg {
    max-width: 50vw;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

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

    .tour-card {
        padding: 0.75rem;
    }

    .header {
        font-size: 1.5rem;
    }

    #korsk-logo {
        position: relative;
    }
}