/* Reset default browser styles */
body, h1, h2, h3, p, ul, ol, li, table, td {
    margin: 0;
    padding: 0;
}

/* Global styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f0f0f0;
}

header img {
    display: block;
    margin: 0 auto;
    width: 800px; /* Adjust the width of the header image as needed */
}

.image-overlay {
    position: relative;
    text-align: center;
}

.image-overlay img {
    width: 100%;
    height: auto;
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14pt;
    font-weight: bold;
    color: #000;
    z-index: 1;
}



/* Add this style for flexbox layout */
.intro-container {
    display: flex;
    flex-direction: row; /* Default direction is row */
    align-items: center;
}

/* Media query for mobile view */
@media only screen and (max-width: 768px) {
    .intro-container {
        flex-direction: column; /* Change direction to column for mobile */
    }
}

/* Additional styles for text container */
.intro-text {
    margin-left: 20px; /* Adjust spacing between image and text */
    margin-top: 3px;
}



#navigation {
    text-align: center;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex; /* Use flexbox for centering */
    justify-content: center; /* Horizontally center the items */
    max-width: 600px; /* Limit maximum width */ 
    margin: 0 auto; /* Center the navigation menu */
}

nav ul li {
    display: inline-block;
    margin-right: 20px;
}

nav ul li:last-child {
    margin-right: 0; /* Remove margin for the last item */
}

#typeNav ul li a {
    text-decoration: none;
    color: #333;
/*    padding: 10px 20px;*/
    padding: 2px 2px;
    font-size: 13px; /* It was 20 */
    transition: all 0.3s ease;
}

#Year_and_Type ul li a {
    text-decoration: none;
    color: #333;
/*    padding: 10px 20px;*/
    padding: 2px 2px;
    font-size: 15px; /* It was 20 */
    transition: all 0.3s ease;
}


nav ul li a {
    text-decoration: none;
    color: #333;
/*    padding: 10px 20px;*/
    padding: 0px 0px;
    font-size: 17px; /* It was 20 */
    transition: all 0.3s ease;
}

nav ul li a:hover {
    font-weight: bold;
    color: #555;
}

nav ul li a.active {
    font-weight: bold;
}

@media only screen and (max-width: 768px) {
    nav ul {
        max-width: none; /* Remove max-width on smaller screens */
    }

    nav ul li {
        display: inline-block;
        margin: 0 5px; /* Adjust margin for spacing */
    }
}

header, section, footer {
    background-color: #fff;
    padding: 20px;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header img {
    display: block;
    margin: 0 auto;
    width: 200px; /* Adjust the width of the header image as needed */
}

.tagline {
    text-align: center;
    margin-top: 10px;
    font-weight: bold;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table td {
    padding: 10px;
    border: 1px solid #ccc;
}

table td:first-child {
    font-weight: bold;
}

.profile-image {
    display: block;
    margin: 0px auto 10px; /* Adjust margin as needed */
    width: 40%; /* Adjust the width of the image as needed */
    border-radius: 0px;
    
}

/* Add this media query for desktop view */
@media only screen and (min-width: 769px) {
    .profile-image {
        width: 100%; /* Adjust the width of the image for desktop */
        margin-top: 10px;
        margin-bottom: 0px;
    }
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    color: #666;
}




.show-titles {
    display: flex;
    flex-direction: column;
}

.show-title {
    padding: 10px;
    transition: font-weight 0.3s ease; /* Transition effect for font-weight */
}

.show-title a {
    text-decoration: none;
    color: #333;
}

.show-title:hover {
    font-weight: bold; /* Make the title bold on hover */
}


.image-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns */
    grid-gap: 10px; /* Adjust the gap between images as needed */
    width: 100%; /* Set width to fit the browser window */
    max-width: none; /* Ensure no maximum width is applied */
    margin: 3px auto; /* Center the container horizontally */
    justify-content: center; /* Center the container horizontally */
/*    align-items: center; /* Center the container vertically */*/
}

.image-container figure {
    margin: 10px; /* Remove default margin */
}

.image-container img {
    max-width: 45%; /* Ensure images fit within the container */
    height: auto; /* Maintain aspect ratio */
    max-width: 45vw; /* Limit image width to the viewport width */
}

.image-container figcaption {
    text-align: center; /* Center the captions */
    margin-top: 0px; /* Adjust spacing between image and caption */
}

h3 {
    display: block;
    text-align: center;
    margin-top: 15px;
}

.Show1-Text {
        margin: 10px;
        width: 95%;
        text-align: left;
}




.back-link {
    display: inline-block;
    text-decoration: none;
    color: #000;
    font-size: 16px;
    font-weight: bold;
    padding: 5px 10px;
    position: relative;
}

.back-link::before {
    content: '\2190'; /* Unicode character for left arrow */
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    line-height: 1;
}




.ticket-container {
    text-align: center;
    padding: 20px;
}

/* Style for the PayPal button container */
#paypal-button-container {
    margin-top: 20px; /* Add some space above the button */
}

button {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}



