
/* Set the aspect ratio you desire (e.g., 16:9) */
.aspect-ratio-container {
    position: relative;
    text-align: center;
    padding-top: 56.25%; /* 16:9 aspect ratio (9 / 16 * 100) */
    width: 100%;
    overflow: hidden;
}

/* Style the image slider */
.image-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;

}

.image-slider img {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
}

.image-slider img.active {
    display: block;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 36px;
    color: #fff;
    padding: 10px;
    border-radius: 50%;
    z-index: 2;
    transition: background-color 0.3s;
    margin: 20px;
}

.slider-arrow:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.left-arrow {
    left: 20px;
}

.right-arrow {
    right: 20px;
}


/* Social Media Section */
.social-media-overlay {
    margin-top: -20vh;
    position: relative;
    left: 0;
    height: 25vh;
    width: 100%;
    padding-bottom: 0;
    background-color: #141414;
}

.social-media-section {
    padding: 0;
    text-align: center;
    color: white;
}

.circles-background {
    position: relative;
}

.quote {
    position: relative;
    text-align: center;
    color: white;
}

/* Style the quote text */
.quote-text {
    font-size: 36px; /* Adjust the font size as needed */
    font-weight: bold;
    font-family: "Montserrat", sans-serif;
    margin: 0;
}
@media (max-width: 768px) {
    .quote-text {
        font-size: 24px;
    }
    
}
.news-title {
    padding: 0px 15px 0px;
    background-color: #141414;
    margin: 5px;
    text-align: left;
    color: white;
    font-size: 48px;
    font-family: "Montserrat", sans-serif;
}
@media (max-width: 768px) {
    .news-title {
        font-size: 36px;
    }
}

/* Container for event cards */
.upcoming-events {
    padding: 0px 15px 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    background-color: #141414; /* Grey background color */

}
.background {
    background-color: #141414;
}
/* Individual event card */
.event-card {
    width: 262px;
    max-width: 300px;
    background-color: #222;
    border: 1px solid #222;
    overflow: hidden;
    transition: color 2.5s;
    color: white;
}

.event-card:hover {
    background-color: rgba(201, 200, 200, 0.3);
    cursor: pointer;
}

.event-image-container {
    max-width: 100%; /* Take up the full width of the event card */
    width: 100%;
    max-height: fit-content;
    position: relative;
    overflow: hidden;
}

/* Event image */
.event-card img {
    width: 100%;
    
}

/* Event details container */
.event-details {
    inline-size: 200px;
    height: 250px;
    overflow-wrap: break-word;
    padding: 5px;
    text-align: left;

}

/* Event date */
.event-date {
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
}

/* Event title */
.event-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: white;
}

.ticket-title {
    display: flex;
    font-size: 36px;
    margin-bottom: 10px;
    color: black;
    background-color: yellow;
    justify-content: center;
    border-radius: 20%;
    align-items: center;
}

/* Event description */
.event-description {
    text-align: justify;
    color: white;
}

.instagram-title {
    padding: 0px 15px 0px;
    background-color: white;
    margin: 5px;
    text-align: left;
    color: black;
    font-size: 48px;
    font-family: "Montserrat", sans-serif;
}
@media (max-width: 768px) {
    .instagram-title {
        font-size: 36px;
    }
}
.instagram-container {
    padding: 0px 15px 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.instagram-gallery {
    padding: 0px 15px;
}
@media (max-width: 768px) {
    .event-card {
        width: 100%; /* For tablet screens, 3 columns with 20px spacing */
    }
}
@media (min-width: 768px) (max-width: 1024px) {
    .event-card {
        width: 100%; 
        display: flex;
        flex-wrap: wrap;
    }
    .event-image-container{
        width: 180px;
        height: 180px;
    }
    .event-details{
        width: calc(100% - 190px);
        height: 180px;
    }
    .ticket-title{
        margin: 0px;
    }
}

@media (min-width: 1024px) {
    .event-card {
        width: calc(25% - 20px); /* For laptop screens, 4 columns with 20px spacing */
    }
    .event-details {
        width: 100%;
    }
}

