/* 🌟 GEM EVENTS - LUXURY GOLD THEME 🌟 */

.events-section {
    position: relative;
    max-width: 1200px;
    width: 80%;
    margin: 50px auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #faf8f3; /* soft ivory background for contrast */
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.event_wrapper {
    overflow: hidden;
    width: 100%;
}

.events-container {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    scroll-behavior: smooth;
    padding-bottom: 10px;
}
.events-container::-webkit-scrollbar {
    height: 10px;
}
.events-container::-webkit-scrollbar-thumb {
    background: #c6a34f;
    border-radius: 5px;
}
.events-container::-webkit-scrollbar-track {
    background: #f4eede;
}

/* ✨ Event Card ✨ */
.event-card {
    flex: 0 0 320px;
    background: #fffdf7;
    border-radius: 20px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid #e6d9b4;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* 📸 Image Section */
.event-image {
    background: linear-gradient(135deg, #d4af37, #f1e1a6);
    height: 160px;
    position: relative;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    overflow: hidden;
}

.event-date-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #fffaf0dd;
    color: #b58a1b;
    padding: 8px 12px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* 📝 Event Details */
.event-content {
    padding: 20px;
}

.event-title {
    font-size: 1.3rem;
    color: #2c2c2c;
    font-weight: 600;
    margin-bottom: 8px;
}

.event-location {
    display: flex;
    align-items: center;
    color: #5f5f5f;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.location-icon {
    width: 18px;
    height: 18px;
    margin-right: 6px;
    color: #b68f2b;
}

.event-description {
    color: #4d4d4d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* 🕒 Time + Button */
.event-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.event-time {
    display: flex;
    align-items: center;
    color: #b68f2b;
    font-weight: 500;
}

.time-icon {
    width: 18px;
    height: 18px;
    margin-right: 6px;
}

/* ✨ CTA Button */
.event-cta {
    background: linear-gradient(135deg, #c6a34f, #e4c879);
    color: #fff;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 12px;
    font-weight: 500;
    transition: 0.3s ease;
    box-shadow: 0 3px 10px rgba(198, 163, 79, 0.3);
}
.event-cta:hover {
    background: linear-gradient(135deg, #b68f2b, #d4af37);
    transform: translateY(-2px);
}

/* ⬅️➡️ Scroll Buttons */
.scroll-btn {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d4af37, #b68f2b);
    color: #fff;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}
.scroll-btn:hover {
    transform: translateY(-50%) scale(1.1);
    background: linear-gradient(135deg, #b68f2b, #8b6b20);
}
.scroll-btn.left { left: -25px; }
.scroll-btn.right { right: -25px; }

/* 📜 No Events */
.no-events {
    text-align: center;
    font-size: 1.1rem;
    color: #777;
    width: 100%;
    margin-top: 20px;
}

/* 📱 Responsive */
@media (max-width: 768px) {
    .event-card {
        flex: 0 0 260px;
    }
}
@media (max-width: 480px) {
    .event-card {
        flex: 0 0 200px;
    }
}
