/* ============================================
   Org Microsite Styles
   Dark-themed pages for /{slug}/* routes
   ============================================ */

:root {
    --org-primary: #00C870;
    --org-bg: #020E0A;
    --org-surface: #0A1F16;
    --org-surface-light: #0D2A1F;
    --org-border: rgba(26, 58, 42, 0.5);
    --org-text: #E8E0C8;
    --org-text-muted: #5A9A7A;
    --org-text-soft: #8BC9A3;
    --org-text-body: #B8C9BB;
    --org-heading-font: 'Space Grotesk', sans-serif;
    --org-body-font: 'Inter', sans-serif;
    --org-border-radius: 12px;
    --org-font-size: 16px;
}

/* Root */
.org-root {
    min-height: 100vh;
    background-color: var(--org-bg);
    color: var(--org-text);
    font-family: var(--org-body-font);
    font-size: var(--org-font-size);
    display: flex;
    flex-direction: column;
}

/* Content */
.org-content {
    flex: 1;
    padding: 24px 40px;
}

/* Navigation */
.org-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 52px;
    padding: 0 24px;
    background-color: var(--org-surface);
    border-bottom: 1px solid var(--org-border);
    z-index: 100;
}

.org-nav-sticky {
    position: sticky;
    top: 0;
}

.org-nav-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--org-heading-font);
    font-size: 16px;
    font-weight: 700;
    color: var(--org-text);
    text-decoration: none;
}

.org-nav-brand:hover {
    color: var(--org-text);
}

.org-nav-logo {
    height: 28px;
    border-radius: 4px;
}

.org-nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.org-nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.org-nav-links a {
    font-size: 12px;
    font-weight: 500;
    color: var(--org-text-soft);
    text-decoration: none;
    transition: color 0.2s;
}

.org-nav-links a:hover,
.org-nav-links a.active {
    color: var(--org-primary);
    font-weight: 600;
}

.org-nav-social {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Hero */
.org-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 40px;
    height: 220px;
    background: linear-gradient(180deg, var(--org-surface-light) 0%, var(--org-bg) 100%);
    text-align: center;
}

.org-hero-name {
    font-family: var(--org-heading-font);
    font-size: 32px;
    font-weight: 700;
    color: var(--org-text);
    margin: 0;
}

.org-hero-tagline {
    font-size: 14px;
    color: var(--org-text-muted);
    margin: 0;
}

.org-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 24px;
    border-radius: 20px;
    background-color: var(--org-primary);
    color: var(--org-bg);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
}

.org-hero-btn:hover {
    opacity: 0.9;
    color: var(--org-bg);
}

/* Body Layout */
.org-body {
    display: flex;
    gap: 40px;
    padding: 32px 40px;
    flex: 1;
}

.org-body-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.org-body-right {
    width: 280px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Section Labels */
.org-section-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--org-primary);
    text-transform: uppercase;
    margin: 0;
}

.org-body-text {
    font-size: 12px;
    line-height: 1.6;
    color: var(--org-text-body);
    margin: 0;
}

/* Contact Info */
.org-contact-item {
    font-size: 11px;
    color: var(--org-text-soft);
    line-height: 1.5;
    margin: 0;
}

/* Social Links */
.org-social-links {
    display: flex;
    gap: 12px;
}

.org-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 16px;
    background-color: var(--org-surface-light);
    border: 1px solid var(--org-border);
    color: var(--org-text-soft);
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.2s;
}

.org-social-link:hover {
    background-color: var(--org-surface);
}

/* Upcoming Shows */
.org-upcoming {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.org-upcoming-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 36px;
    padding: 0 10px;
    border-radius: 6px;
    background-color: var(--org-surface-light);
    border: 1px solid var(--org-border);
}

.org-upcoming-date {
    font-size: 11px;
    color: var(--org-text-soft);
}

.org-upcoming-price {
    font-size: 11px;
    font-weight: 600;
    color: #FF9800;
}

/* Page Header */
.org-page-header {
    padding: 28px 40px 20px 40px;
}

.org-page-title {
    font-family: var(--org-heading-font);
    font-size: 24px;
    font-weight: 700;
    color: var(--org-text);
    margin: 0;
}

.org-page-subtitle {
    font-size: 12px;
    color: var(--org-text-muted);
    margin: 4px 0 0;
}

/* Event Cards Grid */
.org-events-grid {
    display: flex;
    gap: 20px;
    padding: 0 40px 24px 40px;
    flex: 1;
    flex-wrap: wrap;
}

.org-event-card {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    border-radius: 12px;
    background-color: var(--org-surface);
    border: 1px solid var(--org-border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s;
}

.org-event-card:hover {
    border-color: var(--org-primary);
}

.org-event-card-img {
    height: 140px;
    background: linear-gradient(135deg, #143D28 0%, var(--org-surface) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.org-event-card-body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.org-event-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--org-text);
    margin: 0;
}

.org-event-venue {
    font-size: 10px;
    color: var(--org-text-muted);
    margin: 0;
}

.org-event-dates {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.org-event-date-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.org-event-date-text {
    font-size: 11px;
    color: var(--org-text-soft);
}

.org-event-date-price {
    font-size: 11px;
    font-weight: 600;
    color: #FF9800;
}

.org-event-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    border-radius: 6px;
    background-color: var(--org-primary);
    color: var(--org-bg);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    width: 100%;
    transition: opacity 0.2s;
}

.org-event-btn:hover {
    opacity: 0.9;
    color: var(--org-bg);
}

.org-event-btn-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    border-radius: 6px;
    background: transparent;
    color: var(--org-text-soft);
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid #2A4A3A;
    cursor: pointer;
    width: 100%;
    transition: border-color 0.2s;
}

.org-event-btn-outline:hover {
    border-color: var(--org-primary);
    color: var(--org-primary);
}

.org-badge-coming-soon {
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    height: 20px;
    border-radius: 10px;
    background-color: rgba(255, 152, 0, 0.13);
    color: #FF9800;
    font-size: 10px;
    font-weight: 600;
    width: fit-content;
}

/* Footer */
.org-footer {
    border-top: 1px solid var(--org-border);
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: var(--org-surface);
}

.org-footer-columns {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.org-footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.org-footer-col-heading {
    font-family: var(--org-heading-font);
    font-size: 14px;
    font-weight: 700;
    color: var(--org-text);
}

.org-footer-col-link {
    font-size: 12px;
    color: var(--org-text-soft);
    text-decoration: none;
    transition: color 0.2s;
}

.org-footer-col-link:hover {
    color: var(--org-primary);
}

.org-footer-divider {
    height: 1px;
    background: var(--org-border);
}

.org-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.org-footer-brand {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--org-text-muted);
}

.org-footer-brand a {
    color: var(--org-primary);
    text-decoration: none;
    font-weight: 600;
}

.org-footer-copy {
    font-size: 11px;
    color: var(--org-text-muted);
}

/* Not Found */
.org-not-found {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    gap: 16px;
    text-align: center;
}

.org-not-found h2 {
    font-family: var(--org-heading-font);
    font-size: 24px;
    color: var(--org-text);
    margin: 0;
}

.org-not-found p {
    font-size: 14px;
    color: var(--org-text-muted);
    margin: 0;
}

/* Loading */
.org-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

/* Coming Soon (Store stub) */
.org-coming-soon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    gap: 12px;
    text-align: center;
}

.org-coming-soon h2 {
    font-family: var(--org-heading-font);
    font-size: 28px;
    color: var(--org-text);
    margin: 0;
}

.org-coming-soon p {
    font-size: 14px;
    color: var(--org-text-muted);
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .org-body {
        flex-direction: column;
        padding: 24px 20px;
    }

    .org-body-right {
        width: 100%;
    }

    .org-hero-name {
        font-size: 24px;
    }

    .org-events-grid {
        padding: 0 20px 24px 20px;
    }

    .org-event-card {
        min-width: 100%;
    }

    .org-page-header {
        padding: 20px 20px 16px 20px;
    }

    .org-nav {
        padding: 0 16px;
    }

    .org-content {
        padding: 16px 20px;
    }

    .org-footer {
        padding: 24px 20px;
    }

    .org-footer-columns {
        flex-direction: column;
        gap: 24px;
    }

    .org-footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .org-nav-social {
        display: none;
    }
}
