/* Joint Rolling Contest 2026 – DREHMOMENT */

.jrc-page {
    --jrc-gold: #ffb347;
    --jrc-gold-soft: rgba(255, 179, 71, 0.15);
    --jrc-green: #68ff9d;
    --jrc-green-soft: rgba(104, 255, 157, 0.12);
    --jrc-card: rgba(8, 24, 15, 0.88);
    --jrc-border: rgba(104, 255, 157, 0.22);
}

/* Hero */
.jrc-hero {
    position: relative;
    padding: 4.5rem 0 5rem;
    overflow: hidden;
}

.jrc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(104, 255, 157, 0.2), transparent 70%),
        radial-gradient(ellipse 50% 40% at 90% 80%, rgba(255, 179, 71, 0.15), transparent 60%);
    pointer-events: none;
}

.jrc-hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.jrc-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    background: var(--jrc-gold-soft);
    border: 1px solid rgba(255, 179, 71, 0.35);
    color: var(--jrc-gold);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.jrc-hero__title {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    line-height: 1.12;
    margin: 0 0 1rem;
    color: var(--color-text);
}

.jrc-hero__title::before {
    content: 'DREHMOMENT';
    display: block;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    line-height: 1.05;
    margin-bottom: 0.35rem;
    background: linear-gradient(135deg, #fff 0%, var(--jrc-green) 55%, var(--jrc-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.jrc-hero__lead {
    font-size: 1.15rem;
    color: var(--color-text-soft);
    max-width: 36rem;
    margin: 0 0 1.75rem;
}

.jrc-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.jrc-hero__meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
    border-radius: 12px;
    background: var(--jrc-card);
    border: 1px solid var(--jrc-border);
    font-size: 0.92rem;
    color: var(--color-text-soft);
}

.jrc-hero__meta-item strong {
    color: var(--jrc-green);
}

.jrc-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.jrc-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.jrc-btn:hover {
    transform: translateY(-2px);
}

.jrc-btn--primary {
    background: linear-gradient(135deg, var(--jrc-green), #3dd68c);
    color: #04130a;
    box-shadow: 0 12px 32px -8px rgba(104, 255, 157, 0.45);
}

.jrc-btn--secondary {
    background: var(--jrc-card);
    border: 1px solid var(--jrc-border);
    color: var(--color-text);
}

.jrc-btn--gold {
    background: linear-gradient(135deg, var(--jrc-gold), #e89a2e);
    color: #1a0f00;
    box-shadow: 0 12px 32px -8px rgba(255, 179, 71, 0.4);
}

.jrc-hero__visual {
    position: relative;
}

.jrc-hero__logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border-radius: 50%;
    aspect-ratio: 1;
    max-width: 420px;
    margin: 0 auto;
    background:
        radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.08), transparent 70%),
        var(--jrc-card);
    border: 2px solid var(--jrc-border);
    box-shadow:
        var(--shadow-glow),
        0 0 0 12px rgba(104, 255, 157, 0.06),
        0 0 80px -20px rgba(104, 255, 157, 0.25);
}

.jrc-hero__logo {
    width: 100%;
    max-width: 340px;
    height: auto;
    display: block;
    border-radius: 50%;
    object-fit: contain;
}

.jrc-hero__poster-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    background: rgba(4, 19, 10, 0.88);
    backdrop-filter: blur(8px);
    border: 1px solid var(--jrc-border);
    text-align: center;
    font-weight: 600;
    color: var(--jrc-green);
}

/* Schedule */
.jrc-schedule {
    padding: 4rem 0;
}

.jrc-section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.jrc-section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.4rem);
    margin: 0.5rem 0 0.75rem;
}

.jrc-section-header p {
    color: var(--color-muted);
    max-width: 36rem;
    margin: 0 auto;
}

.jrc-schedule__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.jrc-schedule-card {
    padding: 1.75rem;
    border-radius: 18px;
    background: var(--jrc-card);
    border: 1px solid var(--jrc-border);
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.jrc-schedule-card:hover {
    border-color: rgba(104, 255, 157, 0.45);
    transform: translateY(-4px);
}

.jrc-schedule-card--highlight {
    border-color: rgba(255, 179, 71, 0.4);
    background: linear-gradient(160deg, rgba(255, 179, 71, 0.08), var(--jrc-card));
}

.jrc-schedule-card__day {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--jrc-gold);
    margin-bottom: 0.5rem;
}

.jrc-schedule-card h3 {
    font-size: 1.2rem;
    margin: 0 0 0.5rem;
}

.jrc-schedule-card__date {
    font-size: 0.95rem;
    color: var(--jrc-green);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.jrc-schedule-card p {
    margin: 0;
    color: var(--color-text-soft);
    font-size: 0.92rem;
}

.jrc-schedule-card__extra {
    margin-top: 1rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--jrc-border);
    font-size: 0.85rem;
    color: var(--jrc-gold);
}

/* Live Scores */
.jrc-live {
    padding: 3.5rem 0;
    background: linear-gradient(180deg, transparent, rgba(104, 255, 157, 0.04), transparent);
}

.jrc-live__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.jrc-live-card {
    padding: 1.75rem;
    border-radius: 18px;
    background: var(--jrc-card);
    border: 1px solid var(--jrc-border);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.jrc-live-card h3 {
    margin: 0;
    font-size: 1.15rem;
}

.jrc-live-card__status {
    font-size: 0.88rem;
    color: var(--color-muted);
}

.jrc-live-card__status time {
    color: var(--jrc-green);
    font-weight: 600;
}

/* Features */
.jrc-features {
    padding: 4rem 0;
}

.jrc-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.jrc-feature {
    padding: 1.75rem;
    border-radius: 18px;
    background: var(--jrc-card);
    border: 1px solid var(--jrc-border);
}

.jrc-feature__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--jrc-green-soft);
    color: var(--jrc-green);
    margin-bottom: 1rem;
}

.jrc-feature h3 {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
}

.jrc-feature p {
    margin: 0;
    color: var(--color-text-soft);
    font-size: 0.92rem;
}

/* Videos */
.jrc-videos {
    padding: 4rem 0;
}

.jrc-videos__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.jrc-video-card {
    border-radius: 16px;
    overflow: hidden;
    background: var(--jrc-card);
    border: 1px solid var(--jrc-border);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.jrc-video-card:hover {
    transform: translateY(-4px);
    border-color: rgba(104, 255, 157, 0.4);
}

.jrc-video-card__thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.jrc-video-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.jrc-video-card:hover .jrc-video-card__thumb img {
    transform: scale(1.05);
}

.jrc-video-card__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.jrc-video-card:hover .jrc-video-card__play {
    opacity: 1;
}

.jrc-video-card__play svg {
    width: 56px;
    height: 56px;
    color: #fff;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

.jrc-video-card__label {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.25rem 0.65rem;
    border-radius: 6px;
    background: rgba(4, 19, 10, 0.85);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--jrc-gold);
}

.jrc-video-card__body {
    padding: 1rem 1.15rem 1.25rem;
}

.jrc-video-card__body h3 {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.jrc-video-card__body a {
    color: inherit;
    text-decoration: none;
}

.jrc-video-card__body a:hover {
    color: var(--jrc-green);
}

/* Gallery */
.jrc-gallery {
    padding: 4rem 0;
}

.jrc-gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
}

.jrc-gallery__item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border: 1px solid var(--jrc-border);
    cursor: pointer;
}

.jrc-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.jrc-gallery__item:hover img {
    transform: scale(1.08);
}

.jrc-gallery__caption {
    position: absolute;
    inset: auto 0 0 0;
    padding: 2rem 1rem 1rem;
    background: linear-gradient(transparent, rgba(4, 19, 10, 0.92));
    font-size: 0.88rem;
    font-weight: 600;
}

/* Links */
.jrc-links {
    padding: 3.5rem 0 5rem;
}

.jrc-links__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.jrc-link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    padding: 1.5rem 1rem;
    border-radius: 16px;
    background: var(--jrc-card);
    border: 1px solid var(--jrc-border);
    text-decoration: none;
    color: var(--color-text);
    text-align: center;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.jrc-link-card:hover {
    border-color: var(--jrc-green);
    transform: translateY(-3px);
    color: var(--jrc-green);
}

.jrc-link-card svg {
    width: 32px;
    height: 32px;
}

.jrc-link-card span {
    font-size: 0.88rem;
    font-weight: 600;
}

/* CTA */
.jrc-cta {
    padding: 3rem 0 5rem;
}

.jrc-cta__box {
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
    background: linear-gradient(135deg, rgba(104, 255, 157, 0.1), rgba(255, 179, 71, 0.08));
    border: 1px solid var(--jrc-border);
}

.jrc-cta__logo {
    width: 140px;
    height: auto;
    border-radius: 50%;
    margin: 0 auto 1.25rem;
    display: block;
    box-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.45);
}

.jrc-cta__box h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin: 0 0 1rem;
}

.jrc-cta__box p {
    color: var(--color-text-soft);
    max-width: 32rem;
    margin: 0 auto 1.75rem;
}

/* Mary Jane Berlin Promo */
.jrc-maryjane {
    padding: 3rem 0;
}

.jrc-maryjane__card {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr;
    gap: 2rem;
    padding: 2.5rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(104, 255, 157, 0.08) 0%, rgba(8, 24, 15, 0.95) 45%, rgba(255, 179, 71, 0.06) 100%);
    border: 1px solid var(--jrc-border);
}

.jrc-maryjane__content h2 {
    margin: 0.5rem 0 1rem;
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.jrc-maryjane__content p {
    color: var(--color-text-soft);
    margin: 0 0 1.25rem;
    max-width: 38rem;
}

.jrc-maryjane__facts {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.jrc-maryjane__facts li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(104, 255, 157, 0.1);
    color: var(--color-text-soft);
    font-size: 0.95rem;
}

.jrc-maryjane__facts li strong {
    color: var(--jrc-green);
}

.jrc-maryjane__aside {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 16px;
    background: var(--jrc-card);
    border: 1px solid rgba(255, 179, 71, 0.25);
}

.jrc-maryjane__badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: var(--jrc-gold-soft);
    color: var(--jrc-gold);
    font-size: 0.85rem;
    font-weight: 700;
    width: fit-content;
}

.jrc-maryjane__aside p {
    margin: 0;
    color: var(--color-text-soft);
}

/* Spotlight Posters (Standort & Meet & Greet) */
.jrc-spotlight {
    padding: 3.5rem 0;
}

.jrc-spotlight--standort {
    background: rgba(4, 13, 9, 0.5);
}

.jrc-spotlight--meet {
    background: linear-gradient(180deg, transparent 0%, rgba(104, 255, 157, 0.04) 50%, transparent 100%);
}

.jrc-spotlight__figure {
    margin: 0 auto;
    max-width: 520px;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(255, 179, 71, 0.35);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.jrc-spotlight__figure--poster {
    max-width: 640px;
    border-color: rgba(104, 255, 157, 0.3);
}

.jrc-spotlight__figure img {
    display: block;
    width: 100%;
    height: auto;
}

.jrc-spotlight__details {
    text-align: center;
    margin-top: 1.5rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.jrc-spotlight__details p {
    margin: 0.35rem 0;
}

/* Lightbox */
.jrc-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(4, 19, 10, 0.94);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.jrc-lightbox.is-open {
    display: flex;
}

.jrc-lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 12px;
    object-fit: contain;
}

.jrc-lightbox__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

/* Responsive */
@media (max-width: 1024px) {
    .jrc-hero__inner {
        grid-template-columns: 1fr;
    }

    .jrc-maryjane__card {
        grid-template-columns: 1fr;
    }

    .jrc-schedule__grid,
    .jrc-features__grid,
    .jrc-videos__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .jrc-links__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .jrc-hero {
        padding: 3rem 0;
    }

    .jrc-schedule__grid,
    .jrc-live__grid,
    .jrc-features__grid,
    .jrc-videos__grid,
    .jrc-gallery__grid,
    .jrc-links__grid {
        grid-template-columns: 1fr;
    }

    .jrc-cta__box {
        padding: 2rem 1.25rem;
    }
}

/* Nav highlight for long label */
.site-nav a[href="/joint-rolling-contest-2026"] {
    font-size: 0.82rem;
    white-space: nowrap;
}

@media (max-width: 1200px) {
    .site-nav a[href="/joint-rolling-contest-2026"] {
        font-size: 0.75rem;
    }
}
