/* MAVEG Events – Deep Blue Glassmorphism, fully responsive */
.maveg-events-filter {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.maveg-events-filter input,
.maveg-events-filter select {
    flex: 1 1 200px;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(10, 25, 49, 0.2);
    background: rgba(255,255,255,0.7);
    color: #0a1931;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
}
.maveg-events-filter button {
    background: transparent;
    border: 2px solid #0a1931;
    color: #0a1931;
    padding: 12px 24px;
    border-radius: 30px;
    cursor: pointer;
    font-family: inherit;
    font-size: 16px;
    transition: 0.3s;
    white-space: nowrap;
}
.maveg-events-filter button:hover {
    background: #0a1931;
    color: #fff;
}

/* Single event page */
.maveg-single-event {
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    color: #0a1931;
    font-family: 'Cormorant Garamond', serif;
}
.maveg-event-featured img {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 20px;
}
.maveg-event-content h1 {
    color: #0a1931;
    margin-bottom: 15px;
    font-size: 2rem;
}
.maveg-event-desc {
    margin: 20px 0;
    line-height: 1.6;
}

/* Registration form */
.maveg-event-registration {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255,255,255,0.5);
    border-radius: 16px;
    border: 1px solid rgba(10,25,49,0.1);
}
.maveg-event-registration h3 {
    margin-top: 0;
    color: #0a1931;
}
.maveg-event-form input[type="text"],
.maveg-event-form input[type="email"],
.maveg-event-form input[type="tel"],
.maveg-event-form select {
    display: block;
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 1px solid rgba(10,25,49,0.2);
    border-radius: 10px;
    background: rgba(255,255,255,0.9);
    color: #0a1931;
    font-family: inherit;
    font-size: 16px;
    box-sizing: border-box;
}
.maveg-tier-selector label {
    display: block;
    margin-bottom: 8px;
    color: #0a1931;
    font-weight: 500;
}
.maveg-terms-note {
    font-size: 0.85em;
    color: #0a1931;
    opacity: 0.8;
    margin-bottom: 15px;
}
.maveg-event-submit {
    background: transparent;
    border: 2px solid #0a1931;
    color: #0a1931;
    padding: 14px 32px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 18px;
    font-family: inherit;
    transition: 0.3s;
    display: inline-block;
    width: auto;
}
.maveg-event-submit:hover {
    background: #0a1931;
    color: #fff;
}
.maveg-signup-response {
    display: inline-block;
    margin-left: 15px;
    font-weight: bold;
}

/* Linked bookings */
.maveg-linked-bookings {
    margin-top: 30px;
}
.maveg-linked-bookings h3 {
    color: #0a1931;
}
.maveg-linked-booking-card {
    background: rgba(255,255,255,0.5);
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 15px;
    border: 1px solid rgba(10,25,49,0.1);
}
.maveg-linked-booking-card h4 {
    margin: 0 0 10px;
    color: #0a1931;
}
.maveg-btn-outline {
    background: transparent;
    border: 2px solid #0a1931;
    color: #0a1931;
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
    font-family: inherit;
    font-size: 16px;
}
.maveg-btn-outline:hover {
    background: #0a1931;
    color: #fff;
}

/* Events list shortcode cards */
.maveg-events-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.maveg-event-card {
    display: flex;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(10,25,49,0.1);
    color: #0a1931;
    font-family: 'Cormorant Garamond', serif;
}
.maveg-event-img {
    flex: 0 0 200px;
}
.maveg-event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.maveg-event-info {
    padding: 20px;
    flex: 1;
}
.maveg-event-info h3 {
    margin-top: 0;
    color: #0a1931;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .maveg-single-event {
        margin: 15px;
        padding: 15px;
    }
    .maveg-event-card {
        flex-direction: column;
    }
    .maveg-event-img {
        flex: 0 0 auto;
        height: 200px;
    }
    .maveg-events-filter input,
    .maveg-events-filter select {
        flex: 1 1 100%;
    }
    .maveg-event-form input,
    .maveg-event-form select {
        font-size: 15px;
    }
    .maveg-event-submit {
        width: 100%;
        text-align: center;
    }
    .maveg-btn-outline {
        display: block;
        text-align: center;
        margin-top: 10px;
    }
}