/* PAMS Events Shortcode Styles */

.pams-events-container {
    max-width: 400px;
    margin: 0 auto;
    padding: 15px;
    border-radius: 15px;
    box-shadow: none;
    background: transparent;
    font-family: 'Arial', sans-serif;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: center;
}

.pams-events-container:hover {
    transform: none;
    box-shadow: none;
}

/* Header Styles */
.pams-events-header {
    text-align: center;
    margin-bottom: 25px;
}

.events-title {
    font-size: 28px;
    font-weight: bold;
    margin: 0 0 8px 0;
    color: transparent;
    -webkit-text-stroke: 2px white;
    text-stroke: 2px white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
    text-transform: uppercase;
}

.title-icon {
    display: none;
}

.events-subtitle {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Current Event Card */
.current-event-card {
    background: transparent;
    border-radius: 10px;
    padding: 15px;
    position: relative;
    overflow: hidden;
    border: none;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    text-align: center;
}

.current-event-card:hover {
    transform: scale(1.02);
}

.event-day {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.event-name {
    font-size: 26px;
    font-weight: bold;
    color: white;
    margin-bottom: 15px;
    line-height: 1.2;
    text-transform: uppercase;
}

.event-time {
    font-size: 22px;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
}

.event-description {
    font-size: 20px;
    font-weight: bold;
    color: white;
    line-height: 1.3;
    margin-bottom: 0;
}

.event-timezone {
    display: none;
}

/* Animation Background Elements */
.event-animation-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.1;
    overflow: hidden;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hide live indicator */
.live-indicator {
    display: none !important;
}

.music-notes {
    font-size: 20px;
}

.sound-waves {
    font-size: 24px;
}

.game-pieces {
    font-size: 16px;
}

.vinyl-records {
    font-size: 22px;
}

.party-lights {
    font-size: 18px;
}

.zen-elements {
    font-size: 20px;
}

/* Upcoming Event Preview */
.upcoming-event-preview {
    background: transparent;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.upcoming-label {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.upcoming-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.upcoming-day {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.upcoming-name {
    font-size: 14px;
    font-weight: bold;
    color: white;
}

.upcoming-time {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

/* Footer */
.events-footer {
    text-align: center;
}

.visit-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-style: italic;
}

/* Theme-specific backgrounds - removed for transparent design */
.music-quiz,
.live-lounge,
.games-bubbles,
.sunset-vibes,
.night-out,
.yoga-healing {
    background: transparent;
}

/* Today's Event Compact Version */
.pams-events-today {
    max-width: 350px;
    margin: 0 auto;
    padding: 15px;
    border-radius: 10px;
    box-shadow: none;
    background: transparent;
    border: none;
    transition: all 0.3s ease;
    text-align: center;
}

.pams-events-today.compact {
    padding: 10px;
    max-width: 280px;
}

.today-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
}

.today-icon {
    display: none;
}

.today-title {
    font-size: 18px;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
}

.today-content {
    padding-left: 0;
}

.today-event-name {
    font-size: 16px;
    font-weight: bold;
    color: white;
    margin-bottom: 6px;
}

.today-event-time {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 6px;
}

.today-event-description {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.3;
}

/* Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes wave {
    0%, 100% {
        transform: translateY(-50%) scaleY(1);
    }
    50% {
        transform: translateY(-50%) scaleY(1.2);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0.1;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(1.1);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.1;
        transform: scale(1);
    }
    50% {
        opacity: 0.2;
        transform: scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .pams-events-container {
        max-width: 95%;
        margin: 0 auto;
        padding: 15px;
    }
    
    .events-title {
        font-size: 24px;
    }
    
    .event-name {
        font-size: 20px;
    }
    
    .event-time {
        font-size: 16px;
    }
    
    .upcoming-info {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .pams-events-container {
        padding: 12px;
    }
    
    .current-event-card {
        padding: 20px;
    }
    
    .events-title {
        font-size: 22px;
        flex-direction: column;
        gap: 5px;
    }
    
    .event-name {
        font-size: 18px;
    }
}

/* Print Styles */
@media print {
    .pams-events-container {
        box-shadow: none;
        background: white !important;
        color: black !important;
    }
    
    .event-animation-bg {
        display: none;
    }
} 