/*
Theme Name: Music Events Manager
Theme URI: https://webdesign.jermesa.com
Author: Jermesa Studio
Author URI: https://webdesign.jermesa.com
Description: A premium, dark-themed WordPress theme for Music Events management.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: music-events-manager
Tags: black, dark, events-manager, music, responsive-layout, theme-options
Copyright: 2026 JERMESA STUDIO

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/* Basic Reset & Base Styles */
:root {
    --primary: #ff2d55;
    --accent-blue: #00f2ff;
    --accent-pink: #ff00e5;
    --background-dark: #050505;
    --surface-dark: #121212;
    --text-white: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--background-dark);
    color: var(--text-white);
    font-family: 'Spline Sans', sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Glass Card */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.neon-glow-pink {
    box-shadow: 0 0 20px rgba(255, 0, 229, 0.4);
}

.neon-glow-blue {
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.4);
}

.text-neon-gradient {
    background: linear-gradient(to right, #00f2ff, #ff00e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--surface-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-pink);
}

/* Utility Classes matching Tailwinds (minimal subset) */
.max-7xl {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-4 {
    gap: 1rem;
}

.grid {
    display: grid;
}

/* Premium Event Ribbon */
.event-ribbon-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 130px;
    height: 130px;
    overflow: hidden;
    z-index: 30;
    pointer-events: none;
}

.footer-readable-text {
    font-family: 'Inter', sans-serif !important;
    font-weight: 500 !important;
    letter-spacing: 0.05em !important;
}

.event-ribbon {
    position: absolute;
    top: 32px;
    left: -40px;
    width: 180px;
    padding: 10px 0;
    background: linear-gradient(135deg, var(--primary), var(--accent-pink));
    color: white;
    font-size: 10px;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    transform: rotate(-45deg);
    letter-spacing: 0.15em;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.event-ribbon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: ribbon-shine 3s infinite;
}

@keyframes ribbon-shine {
    0% {
        transform: translateX(-100%);
    }

    20%,
    100% {
        transform: translateX(100%);
    }
}

/* Mobile Scaling for Ribbons */
@media (max-width: 768px) {
    .event-ribbon-wrapper {
        width: 90px;
        height: 90px;
    }

    .event-ribbon {
        top: 22px;
        left: -30px;
        width: 130px;
        padding: 7px 0;
        font-size: 8px;
    }
}

/* Map Interactivity */
.leaflet-container {
    cursor: pointer !important;
}