/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Body Styling */
body {
    background-color: #f4f4f9;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

/* Header and Logo Styling */
.logo-container {
    text-align: center;
    margin: 20px 0;
}

.logo-container img {
    max-width: 150px;
    height: auto;
}

/* Menu Bar Styling */
.menu-bar {
    width: 100%;
    background-color: #466b68; /* Updated Background Color */
    padding: 10px 0;
}

.menu-bar ul {
    list-style: none;  /* Remove bullet points */
    display: flex;
    justify-content: center;  /* Center the menu items */
    gap: 30px;                /* Space between links */
    margin: 0;
    padding: 0;
}

.menu-bar ul li {
    display: inline-block;
    position: relative;
}

/* Dropdown Menu Styling */
.menu-bar ul li .dropdown-content {
    display: none;
    position: absolute;
    background-color: #466b68;
    min-width: 160px;
    z-index: 1;
}

.menu-bar ul li .dropdown-content a {
    color: #f4f4f9;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s ease;
    font-size: 0.9rem; /* Shrink text size to fit on one line */
}

.menu-bar ul li .dropdown-content a:hover {
    background-color: #2d2d2d;
}

/* Show Dropdown on Hover */
.menu-bar ul li:hover .dropdown-content {
    display: block;
}

.menu-bar ul li a {
    text-decoration: none;
    color: #f4f4f9;
    font-weight: bold;
    padding: 10px 15px;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.menu-bar ul li a:hover {
    color: #2d2d2d;
    background-color: #f4f4f9;
    border-radius: 5px;
}

/* Center content under the header */
main {
    width: 100%;
    max-width: 1000px;
    padding: 20px;
    text-align: center;
    margin-top: 20px;
}

/* Upcoming Shows Styling */
#upcoming-shows {
    margin-top: 20px;
}

.event {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.event-banner {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.event-details {
    text-align: left;
}

.join-show-button, .add-to-calendar-button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    color: #fff;
    background-color: #466b68;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.add-to-calendar-button {
    background-color: #2d2d2d;
    margin-left: 10px;
}

.join-show-button:hover {
    background-color: #2d2d2d;
}

.add-to-calendar-button:hover {
    background-color: #466b68;
}

/* Past Shows Link Styling */
#past-shows-link {
    margin-top: 20px;
}

#past-shows-link a {
    color: #466b68;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

#past-shows-link a:hover {
    color: #2d2d2d;
}

/* Footer Styling */
footer {
    margin-top: auto;
    text-align: center;
    padding: 10px;
    background-color: #222;
    color: #f4f4f9;
    width: 100%;
}

footer p {
    font-size: 0.9rem;
}
