/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #e0e0e0;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header Styles */
header {
    width: 100%;
    padding: 10px 20px;
    background-color: #000000;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Define the Futura font */
@font-face {
    font-family: 'Futura';
    src: url('../fonts/Futura.ttf') format('truetype'); /* Adjust the path as needed */
}

.logo {
    height: 27px;
    position: relative;
    left: 10px; /* Adjust the value as needed */
}

.menu-toggle {
    font-size: 24px;
    cursor: pointer;
    color: #ffffff;
    margin-left: auto;
}

.nav-menu {
    display: none; /* Hidden by default */
    position: absolute;
    top: 60px; /* Adjust based on header height */
    right: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-menu li {
    padding: 10px 20px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
}

.nav-menu a:hover {
    text-decoration: underline;
}

/* Poster Styles */
.poster {
    width: 80%;
    margin: 20px 0;
    padding: 20px;
    padding-bottom: 0;
    background-color: #fff;
    border-width: 2px;
    border-style: solid;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    cursor: pointer;
}

.poster-img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.poster-img:hover {
    transform: scale(1.05);
}

.poster-title {
    margin-top: 15px;
    font-size: 1.5em;
    color: #333;
    font-family: 'Futura', sans-serif;
}

/* Status Badge Styles */
.status {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 10px;
    border-radius: 5px;
    color: #fff;
    font-weight: bold;
}

.upcoming {
    background-color: #28a745;
}

.active {
    background-color: #ffc107;
}

.passed {
    background-color: #dc3545;
}

.upcoming-border {
    border-color: #28a745;
}

.active-border {
    border-color: #ffc107;
}

.passed-border {
    border-color: #dc3545;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 500px;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
}

/* Adjustments for header text */
#eventT {
    color: #ffffff;
    font-family: 'Futura', sans-serif;
    display: inline-block;
    transform: scale(1.6);
    transform-origin: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -120%) scale(1.6);
}

/* Button Styles */
.button-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
    justify-content: center;
}

.btn {
    display: block;
    width: 90%;
    height: 50px;
    padding: 12px 24px;
    background-color: white;
    color: #30cf30;
    border: 2px solid #30cf30;
    border-radius: 5px;
    font-size: 16px;
    font-family: 'Futura', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 10px;
}

.btn:hover {
    background-color: #eaffea;
    transform: scale(1.05);
}

.btn.selected {
    background-color: #30cf30;
    color: white;
}

.btn:active {
    transform: scale(0.95);
}

@media (max-width: 600px) {
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}