/* Enqueue Montserrat UltraLight font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100&display=swap'); /* UltraLight weight */

/* Basic Styles for the Event Posts */
.event-posts-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.event-post {
    width: 100%;
    max-width: 350px; /* Updated grid item width to 350px */
    border: 1px solid #ddd;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    font-family: 'Abei', sans-serif; /* Apply Abei font */
}

.event-post:hover {
    transform: translateY(-5px);
}

.event-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.event-title {
    font-size: 1.25em;
    margin-top: 10px;
    font-weight: bold;
}

.event-date, .event-price {
    color: #888;
    font-size: 19px; /* Set font size for time and price */
    margin: 5px 0;
    font-family: 'Montserrat', sans-serif; /* Apply Montserrat UltraLight font */
}

.event-price {
    font-weight: bold;
}

/* Style for the More Info and Buy Tickets Buttons */
.button-container {
    display: flex;
    gap: 10px; /* Add space between the buttons */
    margin-top: 10px;
}

/* More Info Button Styles */
.more-info a {
    color: white; /* Text color for the More Info button */
    text-decoration: none; /* Remove underline */
    display: inline-block; /* Make it inline block */
    font-weight: bold; /* Bold text */
    text-align: center; /* Center text */
    padding: 10px 20px; /* Add padding */
    border-radius: 5px; /* Round corners */
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth background and text color transitions */
    font-family: 'Montserrat', sans-serif; /* Apply Montserrat font */
    background-color: #93aeaf; /* More Info button background color */
}

/* Buy Tickets Button Styles */
.buy-tickets a {
    color: white; /* Text color for Buy Tickets button */
    text-decoration: none; /* Remove underline */
    display: inline-block; /* Make it inline block */
    font-weight: bold; /* Bold text */
    text-align: center; /* Center text */
    padding: 10px 20px; /* Add padding */
    border-radius: 5px; /* Round corners */
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth background and text color transitions */
    font-family: 'Montserrat', sans-serif; /* Apply Montserrat font */
    background-color: black; /* Set Buy Tickets button background to black */
}

/* Hover Effect for Both Buttons: Invert Colors */
.more-info a:hover {
    background-color: white; /* Set background color to white */
    color: #93aeaf; /* Set text color to original More Info background color */
}

 
div#page-title {
    display: none;
}


/* Button styles */
button, .button-container p a {
    display: inline-block;
    font-weight: bold;
    text-align: center;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    color: #fff; /* Default text color */
	text-transform: uppercase;
}

/* Buy Ticket Button - Black background */
.buy-tickets a {
    background-color: #000; /* Black background */
    color: #fff; /* White text */
}

/* More Info Button */
.more-info a {
    background-color: #93aeaf; /* Light gray background */
    color: #fff; /* White text */
}

/* Hover effect for both buttons  
.buy-tickets a:hover, .more-info a:hover {
    background-color: rgba(0, 0, 0, 0.7); /* Slightly faded black for buy button */
    /* For More Info button, we make the background slightly faded */
    background-color: rgba(147, 174, 175, 0.8); /* Faded background color for the More Info button */
    color: #fff; /* Keep the text color white */
}
*/

/* Button styles */
button, .button-container p a {
    display: inline-block;
    font-weight: bold;
    text-align: center;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    color: #fff; /* Default text color */
	    text-transform: uppercase !important;
}

/* Buy Ticket Button - Black background */
.buy-tickets a {
    background-color: #000; /* Black background */
    color: #fff; /* White text */
}

/* More Info Button */
.more-info a {
    background-color: #93aeaf; /* Light gray background */
    color: #fff; /* White text */
}

/* Hover effect for both buttons */
  .more-info a:hover {
    background-color: rgba(0, 0, 0, 0.7); /* Slightly faded black for buy button */
    background-color: rgba(147, 174, 175, 0.8); /* Faded background color for the More Info button */
    color: #fff; /* Keep the text color white */
}


 
.buy-tickets a:hover  {
    background-color: rgba(0, 0, 0, 0.7); /* Slightly faded black for buy button */
    
    color: #fff; /* Keep the text color white */
}
/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .event-post {
        width: 100%;
    }

    .event-post {
        max-width: 100%;
    }

    .button-container {
        flex-direction: column; /* Stack buttons vertically on small screens */
    }
	p.more-info {
    margin-top: 11px;
}
	p.more-info {
    margin: 0px;
}
	
	button, .button-container p a {
    display: inline-block;
    font-weight: bold;
    text-align: center;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3sease;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    width: 75%;
    margin: auto;
    display: block;
}
	
	.block-content {
    padding-top: 55px;
}
}


.event-post {
    width: 100%;
    max-width: 850px;
    border: 1px solid #ddd;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
    transition: all 0.3s ease;
    font-family: 'Abei', sans-serif;
    margin: auto;
}




.date-format {
    position: absolute;
    top: 10px;
    left: 10px;
     
    color: #fff;
    padding: 5px 8px;
    text-align: center;
    font-size: 12px;
    border-radius: 3px;
    z-index: 10;
}

.date-format .day {
    font-size: 18px;
    font-weight: bold;
    display: block;
	color:white !important;
}

.date-format .month {
    font-size: 12px;
    text-transform: uppercase;
}

.event-posts-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
    margin: auto;
}

span.month{
	color:white !important;
}
