.event-details-container {
    padding: 30px;
    font-family: 'Poppins', sans-serif;
}


/* ---------- Main Layout ---------- */

.event-main-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-top: 20px;
}


/* Left Image */

.event-left {
    width: 45%;
}


/* Slider Styling */

.slider-container {
    position: relative;
    width: 100%;
}

.slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slide {
    display: none;
}

.slide img {
    width: 100%;
    border-radius: 12px;
}


/* Slider Buttons */

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #00000080;
    color: #fff;
    border: none;
    padding: 10px 14px;
    cursor: pointer;
    border-radius: 50%;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}


/* ---------- Right Content ---------- */

.event-right {
    width: 55%;
}

.event-title {
    font-size: 32px;
    margin-bottom: 8px;
}

.event-date {
    font-size: 18px;
    color: #444;
    margin-bottom: 15px;
}

.event-description {
    font-size: 17px;
    line-height: 1.7;
    text-align: justify;
    color: #333;
}


/* Watch Video Button */

.event-video-btn {
    margin-top: 20px;
    display: inline-block;
    background: #007bff;
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
}

.event-video-btn:hover {
    background: #0056b3;
}


/* ---------- Responsive ---------- */

@media (max-width: 950px) {
    .event-main-wrapper {
        flex-direction: column;
    }
    .event-left,
    .event-right {
        width: 100%;
    }
}


/* Quick Links Section */

.quick-links-title {
    margin-top: 50px;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
}

.quick-links-wrapper {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    padding: 20px 60px;
    flex-wrap: wrap;
}

.quick-link-card {
    display: flex;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    width: 260px;
    border: 1px solid #eee;
    text-decoration: none;
    color: #000;
    transition: 0.3s ease;
}

.quick-link-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.quick-link-image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.quick-link-info {
    padding: 10px;
}

.quick-link-info h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.quick-link-info p {
    margin: 3px 0 0;
    font-size: 13px;
    color: #777;
}


/* Social Links */

.event-social {
    margin-top: 22px;
    display: flex;
    gap: 14px;
}

.event-social .social {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
    transition: all 0.25s ease;
}

.event-social .social:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}


/* Colors */

.facebook {
    background: #1877f2;
}

.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.twitter {
    background: #000;
}

.youtube {
    background: #ff0000;
}
