body {
    font-family: "Times New Roman", "Century Schoolbook L", "Times New Roman", serif, ;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #000;
    color: #fff;
}

.header_box {
    position: relative;
    padding: 30px;
    max-width: 800px;
    height: 160px;
    margin: auto;
    align-self: center;
    z-index: 1;
}

.header_text {
    font-family: "Times New Roman", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
    font-size: 80px;
    text-align: center;
}

.header_sub_text {
    padding: 0 0 10px;
    font-family: "Times New Roman", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
    font-size: 20px;
    font-weight: normal;
    color: #6B6B6B;
    text-align: center;
}

.gigs_clubs_menu {
    margin: auto;
    position: relative;
    text-align: center;
    font-family: "Times New Roman", "Bahnschrift", "Century Schoolbook L",  serif, ;
    padding: 10px;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 20px;
}

.white-link {
    color: #fff;
    text-decoration: none;
}

.white-link:hover {
    text-decoration: underline;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px 16px;
    padding: 16px;
    max-width: 1600px;
    margin: 0 auto;
    font-family: "Caprasimo", "Futura", "Hoefler Text", "Times New Roman", Arial, sans-serif;
    text-space-collapse: 1;
}

.grid-item, .grid-item-club {
    display: flex;
    flex-direction: column;
    border: 1px solid #333;
    padding: 16px;
    border-radius: 8px;
    background-color: #1a1a1a;
}

.event-title {
	font-family: "Caprasimo", "Futura", "Hoefler Text", "Times New Roman", Arial, sans-serif;
	font-size: 20px;
	
}
.event-date {
	font-family: "arial", "gill sans";
	font-size: 14px;
	padding-bottom: 7px;
}

.image-container {
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* Creates a square aspect ratio */
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 16px;
}

.image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.image-container:hover img {
    transform: scale(1.05);
    filter: brightness(0.8);
}

.club-label, .gig-label {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 1em;
    font-weight: bold;
    z-index: 2;
}

.club-label {
    color: #ffa500;
}

.gig-label {
    color: #ff0000;
}

.grid-item h2 {
    margin: 0 0 8px;
    font-size: 1.5em;
    color: #fff;
    min-height: 3em;
}

.grid-item h4 {
    margin: 0 0 8px;
    font-size: 1.2em;
    color: #ccc;
}

.grid-item p {
    margin: 0 0 16px;
    font-size: 0.9em;
    color: #999;
    flex-grow: 1;
}

.link-box, .ticket-box {
    display: inline-block;
    padding: 8px 16px;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
}

.link-box:hover, .ticket-box:hover {
    background-color: #0056b3;
}

.ticket-box {
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 2;
	background-color: rgba(0, 0, 0, 0.8);
}

.empty {
    visibility: hidden;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header_text {
        font-size: 60px;
    }
    
    .header_sub_text {
        font-size: 16px;
    }
    
    .gigs_clubs_menu {
        font-size: 16px;
    }
    
    .grid-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .header_text {
        font-size: 40px;
    }
    
    .header_box {
        height: auto;
        padding: 20px;
    }
    
    .header_sub_text {
        font-size: 14px;
    }
    
    .gigs_clubs_menu {
        font-size: 14px;
    }
}/* CSS Document */
