@font-face {
    font-family: 'Quasimoda';
    src: url('quasimoda-regular.otf') format('otf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Quasimoda';
    src: url('quasimoda-semibold.otf') format('otf');
    font-weight: 600;
    /* Semibold */
    font-style: normal;
}

@font-face {
    font-family: 'Quasimoda';
    src: url('quasimoda-black.otf') format('otf');
    font-weight: 900;
    /* Black */
    font-style: normal;
}

body {
    margin: 0;
    font-family: 'Quasimoda', Arial, sans-serif;
    background-color: #d9c4a9;
    font-size: 22px;

}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 1.0);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

nav {
    display: flex;
    align-items: center;
    /* Align items vertically */
    justify-content: space-between;
    /* Space between logo and nav items */
    width: 100%;
    /* Ensure nav takes full width */
    padding: 10px 20px;
    /* Add padding for spacing */
}

.logo-container {
    justify-content: start;
    /* Align items to the left */
    display: flex;
}

.logo-text {
    font-weight: 900;
    /* Black */
    font-size: 24px;
    /* Adjust size as needed */
    line-height: 1.2;
    /* Adjust line height for better spacing */
    color: #000;
    /* Color for the logo text */

}

.nav-center {
    display: inline-block;
    flex-grow: 1;
    margin-right: 30px;
    margin-left: 60px;
}

nav a {
    text-decoration: none;
    color: #333;
    margin: 0 15px;
    /* Space between nav items */
    font-size: 18px;
    /* Adjust font size as needed */
    line-height: 1.2;
    /* Adjust line height for better spacing */
    font-weight: 600;
    margin-right: 10px;

}

nav a:active {
    color: #52131e;
    background-color: transparent;
    font-weight: 900;

}

nav a:after {
    color: #52131e;
    font-weight: 900;

}


h1 {
    font-size: 60px;
    /* Adjust font size as needed */
    font-weight: 900;
    line-height: 1;
    margin: 0;
    /* Remove default margin */
    color: #000;
    /* Color for headings */
}

h2 {
    font-size: 36px;
    /* Adjust font size as needed */
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
    /* Remove default margin */
    color: #000;
    /* Color for headings */
}

h3 {
    font-size: 24px;
    /* Adjust font size as needed */
    font-weight: 900;
    line-height: 1.2;
    margin: 0;
    /* Remove default margin */
    color: #000;
    /* Color for headings */
}

.button {
    border: none;
    color: white;
    padding: 20px 40px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 24px;
    font-weight: 850;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
}

.box-bullets {
    background-color: transparent;
    font-weight: 850;
    font-size: 0.9em;
    color: #000;
    border: 4px solid #1d3b29;
    padding: 8px 10px;
    text-align: center;
    text-decoration: none;
    border-radius: 0%;
    justify-content: center;
    align-items: center;
    display: inline-flex;
    max-width: 100vh;
    max-height: 30vh;


}

.date-bullets {
    background-color: #e94368;
    display: inline-flex;
    font-weight: 950;
    font-size: 1.2em;
    line-height: 1.2em;
    color: #d9c4a9;
    border: 20px solid #e94368;
    padding: 3px 3px;
    text-align: center;
    text-decoration: none;
    border-radius: 100%;
    justify-content: center;
    align-items: center;
    display: inline-flex;
    width: 15vh;
    height: 15vh;
}

.button-tickets {
    background-color: white;
    color: black;
    border: 12px solid #458d65;
}

.button-tickets:hover {
    background-color: #e94267;
    color: white;
    border: 12px solid #e94267;
}

.gallery {
    display: flex;
    /* Use flexbox for layout */
    justify-content: center;
    /* Center align items */
    flex-wrap: wrap;
    /* Allow items to wrap to the next line */
    gap: 20px;
    /* Space between items */
    padding: 20px;
    /* Padding around the gallery */
}

.gallery-item {
    height: 33vh;
    /* Set height to 33% of the viewport height */
    flex: 0 1 auto;
    /* Allow items to grow and shrink */
    max-width: 300px;
    /* Optional: Set a max width for items */
    text-align: center;
    /* Center text */
    margin-bottom: 66px;
    /* Add margin to create space between rows */
}

.gallery-item img {
    max-width: 100%;
    /* Make images responsive */
    height: auto;
    /* Maintain aspect ratio */
    border-radius: 4px;
    /* Rounded corners for images */
}

.gallery-item h3 {
    font-size: 18px;
    /* Adjust title font size */
    margin: 10px 0 5px;
    /* Margin for spacing */
}

.gallery-item p {
    font-size: 14px;
    /* Adjust subtitle font size */
    color: #f3f3f3;
    /* Subtitle color */
}

.logo-gallery {
    display: flex;
    /* Use flexbox for layout */
    justify-content: center;
    /* Center align items */
    flex-wrap: wrap;
    /* Allow items to wrap to the next line */
    gap: 40px;
    /* Space between items */
    padding: 50px;
    /* Padding around the gallery */

}

.logo-gallery-item {
    max-height: 33vh;
    /* Set height to 33% of the viewport height */
    flex: 0 1 auto;
    /* Allow items to grow and shrink */
    width: 33vh;
    text-align: center;
    /* Center text */
}

.logo-gallery-item img {
    max-width: 100%;
    /* Make images responsive */
    height: auto;
    /* Maintain aspect ratio */
    border-radius: 0px;
    /* Rounded corners for images */
}

.logo-gallery-item h3 {
    font-size: 18px;
    /* Adjust title font size */
    margin: 10px 0 5px;
    /* Margin for spacing */
}

.logo-gallery-item p {
    font-size: 14px;
    /* Adjust subtitle font size */
    color: #f3f3f3;
    /* Subtitle color */
}

/* Responsive styles */
@media (max-width: 600px) {
    .nav-center {
        justify-content: flex-end;
        /* Align items to the right on mobile */
        flex-direction: row;
        /* Keep items in a row */
        width: 100%;
        /* Ensure it takes full width */
    }

    nav a {
        margin: 0 10px;
        /* Adjust margin for mobile */
        text-align: left;
        /* Align text to the right */
    }


}



.header-image {
    display: block;
    /* Show the image as a block element */
    max-width: 100%;
    /* Ensure the image does not exceed the width of its container */
    max-height: 90vh;
    /* Set maximum height to 80% of the viewport height */
    height: auto;
    /* Maintain aspect ratio */
    margin: 0px auto;
    /* Center the image horizontally */
    margin-top: 80px;
}



.text-block {
    display: flex;
    /* Use flexbox for layout */
    flex-direction: column;
    /* Stack children vertically */
    align-items: center;
    /* Center items horizontally */
    padding: 90px 150px;
    /* Add padding for content */
    margin-top: 70px;
    /* Space for fixed header */
    text-align: center;
    /* Center the text in the text blocks */
}



/* Media query for mobile devices */
@media (max-width: 1050px) {
    .desktop-header {
        display: none;
        /* Hide the desktop image */
    }

    .header-image {
        display: block;
        /* Ensure the header image is displayed */
        content: url('wiw-mobile-header.png');
        /* Change the image source */
        margin-top: 85px;
    }

    .text-block {
        padding: 0 50px;
    }

    .more {
        padding-top: 50px;
        padding-bottom: 30px;

    }

    .logos {

        padding-top: 50px;
        padding-bottom: 20px;

    }

    .kontakt {
        padding-bottom: 50px;
    }

    .team {
        padding-top: 0px;
        padding-bottom: 0px;
    }


    .date-bullets {
        display: inline-flex;
        /* Display the date bullets */
    }

    .ankerkontakt {
        margin-bottom: 110px;
    }

    .ankermore {
        margin-bottom: 0px;
    }

 .ankertickets {
        margin-bottom: 120px;
    }


    .date-bullets {
   
        width: 16vh;
        height: 16vh;
    }


}


/* Media query for mobile devices */
@media (max-width: 800px) {
    .desktop-header {
        display: none;
        /* Hide the desktop image */
    }

    .header-image {
        display: block;
        /* Ensure the header image is displayed */
        content: url('wiw-mobile-header.png');
        /* Change the image source */
        margin-top: 150px;
    }

    .text-block {
        padding: 0 50px;
    }

    .more {
        padding-top: 50px;
        padding-bottom: 30px;

    }

    .tickets {
        padding-top: 50px;
        padding-bottom: 30px;

    }


    .logos {

        padding-top: 50px;
        padding-bottom: 20px;

    }

    .kontakt {
        padding-bottom: 50px;
    }

    .team {
        padding-top: 0px;
        padding-bottom: 0px;
    }


    .date-bullets {
        display: inline-flex;
        /* Display the date bullets */
    }

    .ankerkontakt {
        margin-bottom: 85px;
    }

    .ankermore {
        margin-bottom: 0px;
    }

    .date-bullets {
   
        width: 16vh;
        height: 16vh;
    }


}



.sample-image {
    max-width: 30vh;
    /* Make the image responsive */
    height: auto;
    /* Maintain aspect ratio */
    margin: 20px 0;
    /* Add some space above and below the image */
}

.header {

    padding: 0 0;
    /* Add padding for content */
    margin-top: 0px;

}

.info {
    background-color: rgb(255, 221, 193, 0.0);
    padding: 0 0;
    /* Add padding for content */
    margin-top: 0px;
}

.logos {
    background-color: rgb(255, 255, 255, 1.0);
    font-size: 0.75em;

}

.more {
    background-color: rgb(82, 19, 30, 1.0);
    color: #f3f3f3;
    /* Light color for info section */
}

.team {
    background-color: rgb(141, 127, 113, 0.0);
    /* Light color for tickets section */
    padding: 0 0;
    /* Add padding for content */

}

.kontakt {
    background-color: rgb(217, 234, 211, 0.0);
    /* Light color for contact section */
    padding: 0 0;
    /* Add padding for content */
    padding-bottom: 80px;
}

footer {
    background-color: #458d65;
    color: #fff;
    padding: 20px 20px;
    text-align: center;
    font-size: 14px;

}

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

/* Additional responsive styles */
@media (max-width: 600px) {
    .text-block {
        padding: 0 15px;
        /* Adjust padding for mobile */
    }

    .more {
        padding-top: 50px;
        padding-bottom: 30px;

    }

    .logos {

        padding-top: 50px;
        padding-bottom: 20px;

    }

    .kontakt {
        padding-bottom: 50px;
    }

    .team {
        padding-top: 0px;
        padding-bottom: 0px;
    }

    .ankerkontakt {
        margin-bottom: 150px;
    }

    .ankermore {
        margin-bottom: 100px;
    }

    .date-bullets {
   
        width: 13vh;
        height: 13vh;
    }


}
