/**
 * Calendar Page Styles (/my/calendar)
 * 
 * Page-specific styles only. Card styles come from card.css,
 * design system from design-system.css, layout from scaffold.
 * 
 * SHARED WITH HOMEPAGE: .events-container, .date-header, .no-results
 * When copying to homepage, these stay the same.
 */

/* === PAGE HERO === */
/* HOMEPAGE: Replace with .info-bar (location/radius display) or remove entirely */
.page-hero {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 1rem 2rem;
}

.page-hero-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--neon-teal) 0%, var(--neon-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero-subtitle {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin: 0;
}

.page-hero-count {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* === EVENTS CONTAINER === */
.events-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem 4rem;
}

/* === STICKY DATE HEADERS === */
.date-header {
    position: sticky;
    top: 0;
    z-index: 98;
    background: rgba(15, 15, 20, 0.95);
    backdrop-filter: blur(16px) saturate(180%);
    color: var(--neon-gold);
    padding: 1rem 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5), 0 0 30px var(--neon-gold-glow);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px var(--neon-gold-glow);
}

.date-header span {
    color: var(--neon-gold-bright);
}

/* === NO RESULTS / EMPTY STATE === */
/* HOMEPAGE: Change messaging to location-based ("No events near you") */
.no-results {
    max-width: 600px;
    margin: 4rem auto;
    padding: 3rem 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.no-results-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.no-results h2 {
    margin: 0 0 1rem;
    font-size: 1.75rem;
    color: var(--text-primary);
}

.no-results > p {
    margin: 0 0 2rem;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.no-results-suggestions {
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

.no-results-suggestions h3 {
    margin: 0 0 0.75rem;
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.no-results-suggestions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.no-results-suggestions li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.link-button {
    background: none;
    border: none;
    color: var(--neon-teal);
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
}

.link-button:hover {
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink-glow);
}

/* === CLOSEST EVENT HINT === */
/* HOMEPAGE: Used for radius suggestion when no events found */
.closest-event-hint {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(100, 255, 218, 0.05);
    border: 1px solid rgba(100, 255, 218, 0.2);
    border-radius: 8px;
    text-align: left;
}

.hint-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.hint-content {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.hint-content strong {
    color: var(--text-primary);
}

.hint-distance {
    color: var(--neon-teal);
    font-weight: 600;
}

.btn-suggest-radius {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, var(--neon-teal), var(--neon-blue));
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-suggest-radius:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(100, 255, 218, 0.3);
}
