/* LIMB Weekend Calendar - Elegant Styling */

.limb-weekend-calendar {
    --primary-color: #C9A963;
    --bg-color: #1a1a1a;
    --text-light: #ffffff;
    --text-muted: #b8b8b8;
    --accent-gradient: linear-gradient(135deg, #C9A963 0%, #B89344 50%, #9F7928 100%);
    font-family: 'Montserrat', 'Arial', sans-serif;
    padding: 40px 20px;
    background: var(--bg-color);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

    .limb-weekend-calendar::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, transparent 48%, rgba(201, 169, 99, 0.03) 49%, rgba(201, 169, 99, 0.03) 51%, transparent 52%), linear-gradient(-45deg, transparent 48%, rgba(201, 169, 99, 0.03) 49%, rgba(201, 169, 99, 0.03) 51%, transparent 52%);
        background-size: 30px 30px;
        pointer-events: none;
        opacity: 0.5;
    }

.limb-calendar-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.95) 0%, rgba(0, 0, 0, 0.98) 100%);
    border: 2px solid var(--primary-color);
    border-radius: 16px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(201, 169, 99, 0.2), 0 0 60px rgba(201, 169, 99, 0.1);
}

/* Header Section */
.limb-calendar-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.limb-calendar-ornament {
    width: 60px;
    height: 60px;
    position: relative;
    flex-shrink: 0;
}

    .limb-calendar-ornament::before,
    .limb-calendar-ornament::after {
        content: '';
        position: absolute;
        background: var(--accent-gradient);
        clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    }

.limb-ornament-left::before {
    width: 50px;
    height: 50px;
    top: 5px;
    left: 5px;
}

.limb-ornament-right::after {
    width: 50px;
    height: 50px;
    top: 5px;
    right: 5px;
}

.limb-calendar-title-block {
    text-align: center;
}

.limb-calendar-title {
    font-size: 72px;
    font-weight: 900;
    letter-spacing: 12px;
    margin: 0;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(201, 169, 99, 0.3);
    line-height: 1;
}

.limb-calendar-tagline {
    font-size: 16px;
    letter-spacing: 4px;
    margin: 10px 0 0;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 600;
}

/* Month Section */
.limb-calendar-month {
    text-align: center;
    margin: 40px 0;
    padding: 20px 0;
    border-top: 1px solid rgba(201, 169, 99, 0.2);
    border-bottom: 1px solid rgba(201, 169, 99, 0.2);
}

    .limb-calendar-month h2 {
        font-size: 42px;
        font-weight: 700;
        letter-spacing: 8px;
        margin: 0 0 10px;
        color: var(--primary-color);
        text-transform: uppercase;
    }

.limb-calendar-subtitle {
    font-size: 14px;
    letter-spacing: 3px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin: 0;
    font-weight: 500;
}

/* Events Grid */
.limb-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 50px 0;
}

.limb-event-item {
    background: linear-gradient(135deg, rgba(201, 169, 99, 0.08) 0%, rgba(0, 0, 0, 0.4) 100%);
    border: 1px solid rgba(201, 169, 99, 0.3);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
    color: inherit;
}

/* === EVENT CARDS: horizontal, all equal size === */

.limb-event-item {
    background: linear-gradient(135deg, rgba(201, 169, 99, 0.08) 0%, rgba(0, 0, 0, 0.4) 100%);
    border: 1px solid rgba(201, 169, 99, 0.3);
    border-radius: 12px;
    padding: 20px 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 18px;
    text-decoration: none;
    color: inherit;
    min-height: 90px;
}

    .limb-event-item.limb-event-clickable {
        cursor: pointer;
    }

    .limb-event-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(201, 169, 99, 0.1), transparent);
        transition: left 0.6s ease;
    }

    .limb-event-item:hover {
        transform: translateY(-4px);
        border-color: var(--primary-color);
        box-shadow: 0 10px 25px rgba(201, 169, 99, 0.2), inset 0 1px 0 rgba(201, 169, 99, 0.3);
    }

        .limb-event-item:hover::before {
            left: 100%;
        }

/* Thumbnail: small, fixed, non-disruptive */
.limb-event-image {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    background: rgba(201, 169, 99, 0.1);
}

    .limb-event-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
    }

        .limb-event-image img[loading="lazy"] {
            min-height: 100%;
        }

        .limb-event-image img:not([src]) {
            visibility: hidden;
        }

.limb-event-item:hover .limb-event-image img {
    transform: scale(1.1);
}

.limb-event-image-overlay {
    display: none;
}

/* Content */
.limb-event-content {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 2;
}

.limb-event-day {
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 6px;
    font-weight: 600;
}

.limb-event-name {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-color);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.limb-event-icon {
    font-size: 20px;
    flex-shrink: 0;
}

/* CTA hidden — space recovered */
.limb-event-cta {
    display: none;
}

/* Footer Section */
.limb-calendar-footer {
    text-align: center;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(201, 169, 99, 0.2);
}

.limb-tickets-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--accent-gradient);
    color: #000000;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 6px 25px rgba(201, 169, 99, 0.3);
    position: relative;
    overflow: hidden;
}

    .limb-tickets-button::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        transform: translate(-50%, -50%);
        transition: width 0.6s ease, height 0.6s ease;
    }

    .limb-tickets-button:hover::before {
        width: 300px;
        height: 300px;
    }

    .limb-tickets-button:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 35px rgba(201, 169, 99, 0.5);
    }

.limb-button-icon {
    font-size: 20px;
    position: relative;
    z-index: 1;
}

.limb-button-url {
    font-size: 12px;
    font-weight: 600;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.limb-address {
    margin-top: 25px;
    font-size: 14px;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .limb-calendar-container {
        padding: 30px 20px;
    }

    .limb-calendar-title {
        font-size: 48px;
        letter-spacing: 8px;
    }

    .limb-calendar-month h2 {
        font-size: 32px;
        letter-spacing: 5px;
    }

    .limb-events-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .limb-event-name {
        font-size: 20px;
    }

    .limb-calendar-header {
        gap: 20px;
    }

    .limb-calendar-ornament {
        width: 40px;
        height: 40px;
    }

    .limb-ornament-left::before,
    .limb-ornament-right::after {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .limb-calendar-title {
        font-size: 36px;
        letter-spacing: 6px;
    }

    .limb-calendar-tagline {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .limb-tickets-button {
        padding: 15px 30px;
        font-size: 14px;
        flex-direction: column;
        gap: 8px;
    }
}

/* Animation on load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.limb-event-item {
    animation: fadeInUp 0.6s ease-out backwards;
}

    .limb-event-item:nth-child(1) {
        animation-delay: 0.1s;
    }

    .limb-event-item:nth-child(2) {
        animation-delay: 0.2s;
    }

    .limb-event-item:nth-child(3) {
        animation-delay: 0.3s;
    }

    .limb-event-item:nth-child(4) {
        animation-delay: 0.4s;
    }

    .limb-event-item:nth-child(5) {
        animation-delay: 0.5s;
    }

    .limb-event-item:nth-child(6) {
        animation-delay: 0.6s;
    }

    .limb-event-item:nth-child(7) {
        animation-delay: 0.7s;
    }

    .limb-event-item:nth-child(8) {
        animation-delay: 0.8s;
    }
