/* Common Styles for Both Desktop and Mobile */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: black; /* Black background */
    color: white; /* White text */
    font-family: Arial, sans-serif;
}

#container {
    display: flex;
    flex-direction: column; /* Stack elements vertically on mobile */
    align-items: center; /* Center items horizontally */
    height: 100%;
    padding-top: 10px; /* Padding at the top of the container */
}

#logoOrVideo {
    width: 100%; /* Full width on mobile */
    margin: 10px 0; /* Margin on top and bottom */
    padding: 10px; /* Padding around the content */
    box-sizing: border-box;
    text-align: center; /* Center content */
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%; /* Full width */
    display: flex; /* Lay out buttons in a row */
    justify-content: space-around; /* Distribute buttons evenly */
    flex-wrap: wrap; /* Allow wrapping on mobile */
    box-sizing: border-box;
}

nav ul li {
    background-color: #333; /* Dark background for buttons */
    color: white; /* White text for buttons */
    padding: 10px 20px;
    border: 1px solid white; /* White border around buttons */
    cursor: pointer;
    text-align: center;
    margin: 5px; /* Margin around buttons */
}

#content {
    width: 100%; /* Full width */
    border: 1px solid white; /* White border around content area */
    padding: 20px; /* Padding inside content area */
    margin-top: 20px; /* Margin above content area */
    box-sizing: border-box;
}

/* Desktop-Specific Styles */
@media (min-width: 768px) {
    #container {
        flex-direction: row; /* Horizontal layout on desktop */
        padding-top: 20px; /* Padding at the top of the container */
    }

    #logoOrVideo {
        width: 33.333%; /* 1/3 of the screen width on desktop */
    }

    #tabsSection {
        width: 66.666%; /* 2/3 of the screen width on desktop */
        display: flex;
        flex-direction: column; /* Stack buttons and content vertically on desktop */
        justify-content: flex-start; /* Align the start of the tabsSection to the top */
    }

    nav ul {
        flex-direction: row; /* Lay out buttons in a row on desktop */
        justify-content: flex-start; /* Align buttons to the start on desktop */
        padding: 0 20px; /* Padding on the sides on desktop */
        flex-wrap: nowrap; /* No wrapping on desktop */
    }
}


.event-image {
    width: 100%; /* Adjust width as needed */
    height: auto; /* Maintain aspect ratio */
    object-fit: cover; /* Adjust this as per your design needs */
    max-width: 400px; /* Maximum width */
    max-height: 525px; /* Maximum height */
}

.centered-link a {
    color: white; /* White color for hyperlinks */
    text-align: center; /* Center align hyperlinks */
    display: block; /* Make the anchor tag a block element to enable centering */
    margin-top: 10px; /* Spacing above the link */
}
