body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #121212;
    color: #ffffff;
    margin: 0;
    padding: 20px;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

h1 {
    font-size: 4em;
    border-bottom: 3px solid #444;
    padding-bottom: 15px;
    margin-bottom: 10px;
    color: #85a53d;
    font-weight: bold;
}

h2#tomorrow-date {
    font-size: 2.5em;
    color: #ccc;
    margin-top: 0;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 1px;
}

.date-section {
    margin-bottom: 30px;
    text-align: center;
}

.event-tile img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.image-slider {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.event-tile {
    background-color: #1e1e1e;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeIn 0.5s ease;
    border-left: 5px solid #85a53d;
    overflow: hidden;
}

.event-tile h2 {
    margin-top: 0;
    font-size: 1.5em;
    color: #85a53d;
    margin-bottom: 10px;
}

.reservations {
    font-size: 2em;
    font-weight: bold;
    color: #85a53d;
    text-align: right;
}

.reservations-label {
    font-size: 0.9em;
    color: #aaa;
    text-align: right;
    margin-bottom: 5px;
}

.event-tile p {
    margin: 10px 0;
    font-size: 1.1em;
    color: #85a53d;
}

.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slider-image.active {
    opacity: 1;
    z-index: 1;
}


.event-tile-content {
    padding: 20px;
}

#events-container {
    transition: opacity 1s ease-in-out;
    opacity: 1;
}

.event-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.event-tile.update {
    animation: pulse 0.6s ease;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}
