/* Next Level Illusion - public UI (non-admin) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #8b0000;
    --dark-red: #660000;
    --accent-gold: #d4af37;
    --dark-bg: #0a0a0a;
    --dark-gray: #1a1a1a;
    --medium-gray: #2a2a2a;
    --light-gray: #3a3a3a;
    --text-white: #ffffff;
    --text-gray: #cccccc;
}

html, body {
    height: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-white);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

.nl-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

a.btn,
button.btn {
    border-radius: 999px;
}

/* Legacy classes still used in some views */
.btn-default.btn-sm-field,
.btn.btn-default.btn-sm-field {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    border: 0;
    color: var(--text-white);
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 12px 18px;
    box-shadow: 0 5px 26px rgba(139, 0, 0, 0.35);
}

.btn-default.btn-sm-field:hover,
.btn.btn-default.btn-sm-field:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 34px rgba(0, 0, 0, 0.35);
}

.text-muted {
    color: var(--text-gray) !important;
}

/* Header (index.html ile uyumlu sınıflar) */
.main-header {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-gray) 100%);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(139, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.logo {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--text-white);
    text-transform: uppercase;
}

.logo span {
    color: var(--primary-red);
    text-shadow: 0 0 20px rgba(139, 0, 0, 0.8);
}

.main-nav {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-red);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-lang-tools {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-left: 12px;
}

.nl-lang {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nl-header-instagram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--medium-gray);
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 18px;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.nl-header-instagram:hover {
    color: #fff;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 4px 14px rgba(188, 24, 136, 0.35);
    transform: translateY(-1px);
}

.nl-header-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--medium-gray);
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 18px;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.nl-header-whatsapp:hover {
    color: #fff;
    background: #25d366;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
    transform: translateY(-1px);
}

.nl-lang select {
    background: var(--medium-gray);
    color: var(--text-white);
    border: 1px solid var(--light-gray);
    border-radius: 10px;
    padding: 8px 10px;
    font-size: 13px;
}

/* Hero (optional) */
/* Hero Section (index.html benzeri) */
.hero-section {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background:
        linear-gradient(135deg, rgba(139, 0, 0, 0.3) 0%, rgba(10, 10, 10, 0.9) 100%);
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(10, 10, 10, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 18px;
}

.nl-hero {
    padding: 48px 0 28px;
}

.nl-hero .nl-container {
    text-align: center;
}

.nl-hero__title {
    font-size: 44px;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 10px;
    background: linear-gradient(45deg, var(--text-white), var(--primary-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nl-hero__subtitle {
    color: var(--text-gray);
    font-size: 16px;
    font-weight: 300;
    max-width: 840px;
    margin: 0 auto;
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    letter-spacing: 5px;
    margin-bottom: 20px;
    text-transform: uppercase;
    background: linear-gradient(45deg, var(--text-white), var(--primary-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 20px rgba(139, 0, 0, 0.5); }
    to { text-shadow: 0 0 40px rgba(139, 0, 0, 0.9); }
}

.hero-subtitle {
    font-size: 24px;
    color: var(--text-gray);
    margin-bottom: 40px;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: var(--text-white);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 30px rgba(139, 0, 0, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(139, 0, 0, 0.6);
}

.cta-button i { margin-right: 10px; }

/* Tables Section (index.html benzeri) */
.tables-section {
    padding: 80px 0;
    background: var(--dark-gray);
}

.section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 15px;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.nl-selected-event-panel {
    background: var(--medium-gray);
    border: 2px solid rgba(255,255,255,0.08);
    border-radius: 16px;
}

.nl-selected-event-layout {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
}

.nl-selected-event-cover-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.12);
    background: #141414;
}

.nl-selected-event-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Kapak üzeri — nl-event-date / event-date ile uyumlu başlangıç tarihi rozeti */
.nl-selected-event-date {
    position: absolute;
    left: 12px;
    bottom: 12px;
    z-index: 2;
    background: linear-gradient(145deg, var(--primary-red) 0%, var(--dark-red) 100%);
    padding: 11px 14px 12px;
    border-radius: 14px;
    text-align: center;
    min-width: 76px;
    max-width: calc(100% - 24px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.12);
    pointer-events: none;
}

.nl-selected-event-date__day {
    display: block;
    font-size: 30px;
    font-weight: 900;
    line-height: 0.95;
    color: #fff;
    letter-spacing: -0.02em;
}

.nl-selected-event-date__month {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.94);
}

.nl-selected-event-title {
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    font-weight: 700;
}

.nl-selected-event-name {
    font-size: 22px;
    font-weight: 900;
    margin-top: 6px;
}

.nl-selected-event-meta {
    margin-top: 8px;
    font-size: 13px;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px 14px;
}

.nl-event-dates-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(139, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-weight: 700;
}

.nl-selected-event-datetime-range {
    display: inline-flex;
    align-items: flex-start;
    gap: 8px;
    padding: 6px 0 0;
    max-width: 100%;
    font-size: 12px;
    line-height: 1.45;
    color: var(--text-gray);
    font-weight: 600;
}

.nl-selected-event-datetime-range i {
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 11px;
}

.nl-home-event-list {
    max-width: 1000px;
    margin: 0 auto 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.nl-home-event-list-card {
    margin: 0;
}

.nl-home-event-list-card.is-active {
    border-color: var(--primary-red);
    box-shadow: 0 8px 26px rgba(139, 0, 0, 0.25);
}

.nl-home-selected-reservation {
    margin: 4px 0 18px;
}

.nl-event-actions {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.nl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.nl-btn i { font-size: 14px; opacity: 0.95; }

/* Masa rezervasyonu — soğuk mavi (kırmızı temadan ayrışır) */
.nl-btn-masa {
    color: #f8fafc;
    background: linear-gradient(155deg, #2563eb 0%, #1d4ed8 42%, #1e40af 100%);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow:
        0 4px 16px rgba(37, 99, 235, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.nl-btn-masa:hover {
    color: #fff;
    transform: translateY(-1px);
    background: linear-gradient(155deg, #3b82f6 0%, #2563eb 45%, #1d4ed8 100%);
    box-shadow:
        0 8px 22px rgba(37, 99, 235, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

/* Bilet al — terracotta / kiremit (altın yerine sıcak ama ayrı ton) */
.nl-btn-bilet {
    color: #fff8f5;
    background: linear-gradient(155deg, #c2410c 0%, #9a3412 45%, #7c2d12 100%);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow:
        0 4px 16px rgba(154, 52, 18, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.nl-btn-bilet:hover {
    color: #fff;
    transform: translateY(-1px);
    background: linear-gradient(155deg, #ea580c 0%, #c2410c 48%, #9a3412 100%);
    box-shadow:
        0 8px 22px rgba(234, 88, 12, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.nl-btn-bilet.nl-btn-bilet-needs-prices {
    border-style: dashed;
    opacity: 0.94;
}

.nl-btn-bilet-disabled,
.nl-btn-bilet[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    filter: grayscale(0.15);
}

.nl-standing-checkout {
    max-width: 1000px;
    margin: 0 auto 18px;
    padding: 18px 20px;
}

.nl-standing-title {
    font-size: 18px;
    font-weight: 900;
    margin: 0 0 8px;
    color: var(--text-white);
}

.nl-standing-rows { display: grid; gap: 10px; margin-bottom: 12px; }

.nl-standing-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.nl-standing-label { color: var(--text-white); font-weight: 700; font-size: 14px; }

.nl-standing-row-controls {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nl-standing-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.nl-standing-total {
    color: var(--text-white);
    font-weight: 800;
    font-size: 15px;
}

.nl-btn-bilet-submit {
    cursor: pointer;
}

.nl-standing-modal-content {
    background-color: #1a1a1a;
    color: #f7f7f7;
    border-radius: 14px;
    border: 1px solid #333;
}

#standingTicketModal .nl-standing-checkout.nl-panel {
    background: transparent;
    border: none;
    padding: 0;
}

.nl-event-sales-warning {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #ffe08a;
    background: rgba(255, 176, 32, 0.12);
    border: 1px solid rgba(255, 176, 32, 0.35);
}

/* Legend */
.legend {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin: 0 auto 24px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-white);
}

.legend-color {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255,255,255,0.12);
}

/* Stage wrapper */
.table-layout-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    background: var(--dark-bg);
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.stage-zoom-container {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
    touch-action: none;
    cursor: grab;
    border-radius: 12px;
}

.stage-zoom-container:active { cursor: grabbing; }

#public-stage-svg .public-stage-item { transition: filter 0.2s ease; }
#public-stage-svg .public-stage-item:hover .public-stage-item-inner { filter: brightness(1.25); }
#public-stage-svg .public-stage-item.reserved { cursor: not-allowed; }
#public-stage-svg .public-stage-item.reserved .public-stage-item-inner { opacity: 0.7; }

/* Events Section (index.html benzeri) */
.events-section {
    padding: 80px 0;
    background: var(--dark-bg);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.nl-home-event-card {
    background: var(--medium-gray);
    padding: 16px;
    border-radius: 15px;
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 14px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.nl-home-event-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.3);
}

.nl-home-event-image-wrap {
    width: 100%;
    height: 160px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.12);
    background: #141414;
}

.nl-home-event-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nl-home-event-content {
    display: flex;
    gap: 14px;
    min-width: 0;
}

.event-date {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
    min-width: 80px;
    align-self: flex-start;
}

.event-date .day {
    display: block;
    font-size: 32px;
    font-weight: 900;
}

.event-date .month {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--text-white);
    font-weight: 900;
}

.event-info p {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 0;
}

/* Contact Section (index.html benzeri) */
.contact-section {
    padding: 80px 0;
    background: var(--dark-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.contact-item {
    text-align: center;
    padding: 40px 20px;
    background: var(--medium-gray);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.3);
}

.contact-item i {
    font-size: 40px;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 900;
}

.contact-item p { color: var(--text-gray); margin-bottom: 0; }

/* Sections */
.nl-section {
    padding: 56px 0;
}

.nl-section--alt {
    background: var(--dark-gray);
}

.nl-section__title {
    text-align: center;
    font-size: 34px;
    font-weight: 900;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nl-section__subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 15px;
    margin-bottom: 26px;
}

/* Events grid */
.nl-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.nl-event-card {
    background: linear-gradient(180deg, rgba(58,58,58,0.25) 0%, rgba(42,42,42,0.85) 35%, rgba(26,26,26,0.95) 100%);
    border-radius: 18px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 168px 1fr;
    border: 1px solid rgba(255,255,255,0.08);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.nl-event-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-red);
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.25);
}

.nl-event-media {
    position: relative;
    height: 100%;
    min-height: 168px;
    background: var(--medium-gray);
    overflow: hidden;
    display: block;
}

.nl-event-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    transition: transform 0.35s ease, filter 0.35s ease;
    filter: contrast(1.02) saturate(1.05);
}

.nl-event-card:hover .nl-event-media img {
    transform: scale(1.06);
    filter: contrast(1.06) saturate(1.15);
}

.nl-event-date {
    position: absolute;
    left: 14px;
    bottom: 14px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    padding: 12px 14px;
    border-radius: 14px;
    text-align: center;
    min-width: 78px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.45);
    border: 1px solid rgba(255,255,255,0.10);
}

.nl-event-date__day {
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
}

.nl-event-date__month {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.95;
}

.nl-event-body {
    padding: 16px 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nl-event-code {
    display: inline-flex;
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    color: var(--text-gray);
}

.nl-event-title {
    font-size: 18px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0.2px;
    color: var(--text-white);
    display: inline-block;
}

.nl-event-title:hover {
    color: var(--primary-red);
}

.nl-event-meta {
    color: var(--text-gray);
    font-size: 13px;
    line-height: 1.45;
}

.nl-event-dates {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.nl-event-dates__row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    color: var(--text-gray);
    font-size: 13px;
}

.nl-event-dates__row strong {
    color: rgba(255,255,255,0.88);
    font-weight: 800;
}

.nl-event-desc {
    color: rgba(255,255,255,0.78);
}

.nl-event-actions {
    margin-top: 6px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Sadece etkinlik kartı (grid) — şeffaf halka; #tables masa/bilet ile çakışmasın */
.nl-event-card .nl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: transparent;
    color: var(--text-white);
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.nl-event-card .nl-btn--primary {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    border-color: transparent;
    box-shadow: 0 5px 26px rgba(139, 0, 0, 0.35);
}

.nl-event-card .nl-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 34px rgba(0, 0, 0, 0.35);
}

/* Event detail */
.nl-event-detail {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 18px;
    align-items: stretch;
}

.nl-cover {
    background: var(--medium-gray);
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.06);
}

.nl-cover img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    display: block;
}

.nl-panel {
    background: var(--medium-gray);
    border-radius: 16px;
    padding: 18px;
    border: 2px solid rgba(255,255,255,0.06);
}

.nl-panel h1,
.nl-panel h2,
.nl-panel h3,
.nl-panel h4,
.nl-panel h5 {
    margin: 0;
}

.nl-muted {
    color: var(--text-gray);
}

.nl-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.10);
    margin: 12px 0;
}

/* Footer */
.nl-footer {
    background: var(--dark-bg);
    padding: 44px 0 18px;
    border-top: 2px solid var(--primary-red);
}

.nl-footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
    margin-bottom: 18px;
}

.nl-footer h3,
.nl-footer h4 {
    margin-bottom: 10px;
}

.nl-footer h3 {
    color: var(--primary-red);
    font-size: 20px;
}

.nl-footer p,
.nl-footer a {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 14px;
}

.nl-footer__bottom {
    border-top: 1px solid var(--medium-gray);
    padding-top: 14px;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.nl-social {
    display: flex;
    gap: 10px;
}

.nl-social a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--medium-gray);
    border-radius: 50%;
    transition: background 0.2s ease, transform 0.2s ease;
}

.nl-social a:hover {
    background: var(--primary-red);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 900px) {
    .nl-event-detail {
        grid-template-columns: 1fr;
    }
    .nl-cover img {
        min-height: 200px;
        max-height: 320px;
    }
}

@media (max-width: 768px) {
    .hero-title { font-size: 42px; letter-spacing: 2px; }
    .hero-subtitle { font-size: 18px; }

    .main-header {
        padding: 14px 0 16px;
    }

    .header-content {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 14px;
        text-align: center;
    }

    .logo {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        text-align: center;
    }

    .logo img {
        display: block;
        margin: 0 auto;
    }

    .main-nav {
        justify-content: center;
        width: 100%;
        gap: 12px;
    }

    .header-lang-tools {
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }

    .nl-lang select {
        max-width: 100%;
    }
    .nl-event-card { grid-template-columns: 132px 1fr; }
    .section-title { font-size: 32px; }
    .events-grid { grid-template-columns: 1fr; }
    .nl-home-event-card {
        grid-template-columns: 1fr;
    }
    .nl-home-event-image-wrap {
        height: 190px;
    }
    .nl-home-event-content {
        gap: 12px;
    }
    .nl-selected-event-layout {
        grid-template-columns: 1fr;
    }

    .nl-selected-event-date__day {
        font-size: 26px;
    }

    .nl-selected-event-date__month {
        font-size: 12px;
    }
    .contact-grid { grid-template-columns: 1fr; }
}

