.events_section .container {
font-family: 'Roboto', sans-serif;
max-width: 1170px;
margin: 0 auto;
}
.events_section .event-slider {
display: flex;
overflow-x: hidden;
margin: 0 -10px;
padding: 20px;
}
.events_section .event-card {
flex: 0 0 calc(33.333% - 20px);
margin: 0 10px;
border: none;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease-in-out;
background-color: #fff;
height: 100%;
}
.events_section .event-card:hover {
transform: scale(1.05);
}
.events_section .event-image {
width: 100%;
height: 200px;
object-fit: cover;
border-radius: 15px 15px 0 0;
}
.events_section .event-details {
padding: 20px;
}
.events_section .event-name {
font-size: 1.5em;
margin-top: 10px;
color: #4CAF50;
font-weight: bold;
text-transform: uppercase;
font-family: 'Roboto', sans-serif;
background: linear-gradient(45deg, #3498db, #e74c3c);
-webkit-background-clip: text;
color: transparent;
}
.events_section .event-datetime,
.events_section .event-venue {
margin-bottom: 10px;
color: #555;
font-size: 1em;
}
.events_section .event-venue::before {
content: "\f041";
font-family: FontAwesome;
margin-right: 5px;
color: #FF5733;
}
.events_section .event-datetime::before {
content: "\f073";
font-family: FontAwesome;
margin-right: 5px;
color: #3498db;
}
.events_section .button-container {
display: flex;
justify-content: space-between;
}
.events_section .read-more-text a {
text-decoration: none;
color: #3498db;
transition: color 0.3s;
}
.events_section .read-more-text a:hover {
color: #217dbb;
}
.events_section .event-book {
background-color: #c6e5ee;
padding: 20px;
text-align: center;
}
.events_section .combine-book-button {
padding: 12px 25px;
font-weight: bold;
color: #333;
background-color: #FFD700;
border: none;
border-radius: 30px;
cursor: pointer;
transition: background-color 0.3s;
}
.events_section .combine-book-button:hover {
background-color: #e6c900;
}
.events_section .slider_navigation {
display: flex;
justify-content: center;
margin-top: 20px;
}
.events_section .prev_button,
.events_section .next_button {
font-size: 2em;
background-color: #3498db;
color: #fff;
border: none;
border-radius: 50%;
cursor: pointer;
padding: 10px 15px;
margin: 0 10px;
transition: background-color 0.3s;
}
.events_section .prev_button:hover,
.events_section .next_button:hover {
background-color: #217dbb;
}