/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --blue: #1a3a8a;
    --blue-dark: #0f2460;
    --blue-light: #e8edf7;
    --red: #c0392b;
    --red-dark: #a93226;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray: #666;
    --gray-dark: #333;
    --text: #222;
    --shadow: 0 2px 8px rgba(0,0,0,0.1);
    --radius: 6px;
}

html { font-size: 16px; scroll-behavior: smooth; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* === TOP BAR === */
.top-bar {
    background: var(--blue-dark);
    color: var(--white);
    font-size: 0.85rem;
    padding: 6px 0;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.ministry-link {
    color: var(--white);
    opacity: 0.9;
}
.ministry-link:hover { opacity: 1; text-decoration: underline; }

.vision-toggle {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.5);
    color: var(--white);
    padding: 4px 12px;
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 4px;
}
.vision-toggle:hover { background: rgba(255,255,255,0.1); }

/* === HEADER === */
.site-header {
    background: var(--blue);
    color: var(--white);
    padding: 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
}
.logo { color: var(--white); text-decoration: none; }
.logo:hover { text-decoration: none; }
.logo-title { display: block; font-size: 1.25rem; font-weight: 700; }
.logo-subtitle { display: block; font-size: 0.8rem; opacity: 0.8; }

/* Navigation */
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > a, .nav-dropdown > a {
    color: var(--white);
    padding: 8px 14px;
    border-radius: var(--radius);
    font-size: 0.95rem;
    white-space: nowrap;
    transition: background 0.2s;
}
.main-nav > a:hover, .nav-dropdown > a:hover,
.main-nav > a.active, .nav-dropdown > a.active {
    background: rgba(255,255,255,0.15);
    text-decoration: none;
}

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 280px;
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    padding: 8px 0;
    z-index: 200;
}
.nav-dropdown:hover .dropdown-content { display: block; }
.dropdown-content a {
    display: block;
    padding: 8px 16px;
    color: var(--text);
    font-size: 0.9rem;
}
.dropdown-content a:hover {
    background: var(--blue-light);
    text-decoration: none;
}

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: 0.3s;
}
.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* === MAIN === */
.site-main { flex: 1; padding: 30px 0; }

/* === PAGE TITLES === */
h1 { font-size: 1.8rem; color: var(--blue); margin-bottom: 20px; }
h2 { font-size: 1.4rem; color: var(--blue); margin: 24px 0 12px; }
h3 { font-size: 1.15rem; color: var(--blue-dark); margin: 16px 0 8px; }

/* === HERO === */
.hero {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    color: var(--white);
    padding: 50px 30px;
    border-radius: var(--radius);
    margin-bottom: 30px;
    text-align: center;
}
.hero h1 { color: var(--white); font-size: 2rem; margin-bottom: 12px; }
.hero p { font-size: 1.1rem; opacity: 0.9; max-width: 700px; margin: 0 auto 8px; }

/* === CTA BLOCK === */
.cta-block {
    background: var(--red);
    color: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    margin: 30px 0;
}
.cta-block h2 { color: var(--white); margin-top: 0; }
.cta-block a { color: var(--white); font-weight: 700; font-size: 1.3rem; }

/* === CARDS GRID === */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin: 20px 0; }
.card {
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
}
.card h3 { margin-top: 0; }

/* === INFO SECTIONS === */
.info-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--blue-light);
}
.info-nav a {
    padding: 6px 14px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    background: var(--gray-light);
    color: var(--text);
}
.info-nav a:hover, .info-nav a.active {
    background: var(--blue);
    color: var(--white);
    text-decoration: none;
}

/* Tables */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
}
.info-table th, .info-table td {
    padding: 10px 14px;
    border: 1px solid #ddd;
    text-align: left;
}
.info-table th {
    background: var(--blue);
    color: var(--white);
    font-weight: 600;
}
.info-table tr:nth-child(even) { background: var(--gray-light); }

.table-wrapper { overflow-x: auto; margin: 16px 0; }

/* Document list */
.doc-list { list-style: none; padding: 0; }
.doc-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 8px;
}
.doc-list a { font-weight: 500; }
.doc-date { color: var(--gray); font-size: 0.85rem; margin-left: auto; }

/* === GALLERY === */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 16px; margin: 20px 0; }
.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--white);
}
.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
.gallery-item .caption {
    padding: 8px 12px;
    font-size: 0.9rem;
    color: var(--gray-dark);
}

/* === CONTACTS === */
.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 20px 0;
}
.contact-item { margin-bottom: 12px; }
.contact-label { font-weight: 600; color: var(--blue); font-size: 0.9rem; }
.contact-value { font-size: 1.05rem; }
.map-image { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }

/* === FOOTER === */
.site-footer {
    background: var(--blue-dark);
    color: var(--white);
    padding: 30px 0 20px;
    margin-top: auto;
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.footer-title { font-weight: 700; font-size: 1.1rem; margin-bottom: 8px; }
.footer-info p { margin: 4px 0; font-size: 0.9rem; opacity: 0.9; }
.footer-info a { color: var(--white); }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: var(--white); opacity: 0.9; font-size: 0.9rem; }
.footer-links a:hover { opacity: 1; }
.footer-copy {
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.7;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 16px;
}
.footer-dev {
    text-align: center;
    font-size: 0.7rem;
    opacity: 0.4;
    margin-top: 6px;
}
.footer-dev a { color: var(--white); }

/* === ADMIN === */
.admin-header {
    background: var(--blue);
    color: var(--white);
    padding: 16px 0;
    margin-bottom: 24px;
}
.admin-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.admin-header a { color: var(--white); }
.admin-header h1 { color: var(--white); font-size: 1.3rem; margin: 0; }

.login-form {
    max-width: 400px;
    margin: 60px auto;
    padding: 30px;
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.login-form h1 { text-align: center; font-size: 1.5rem; }

.form-group { margin-bottom: 16px; }
.form-group label { display: block; margin-bottom: 4px; font-weight: 600; font-size: 0.9rem; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: var(--radius);
    font-size: 1rem;
}
.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 2px rgba(26,58,138,0.2);
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
}
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue-dark); text-decoration: none; }
.btn-danger { background: var(--red); color: var(--white); }
.btn-danger:hover { background: var(--red-dark); text-decoration: none; }
.btn-sm { padding: 6px 14px; font-size: 0.85rem; }

.alert {
    padding: 12px 16px;
    border-radius: var(--radius);
    margin-bottom: 16px;
    font-size: 0.95rem;
}
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

.admin-section {
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: var(--shadow);
}
.admin-section h2 { margin-top: 0; }

.file-list { list-style: none; padding: 0; }
.file-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    gap: 12px;
}
.file-list li:last-child { border-bottom: none; }
.file-info { flex: 1; }
.file-info .file-title { font-weight: 600; }
.file-info .file-meta { font-size: 0.8rem; color: var(--gray); }

/* === ACCESSIBILITY PANEL === */
.a11y-panel {
    background: #fff;
    border-bottom: 2px solid #000;
    padding: 12px 0;
}
.a11y-panel-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}
.a11y-group {
    display: flex;
    align-items: center;
    gap: 6px;
}
.a11y-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #000;
}
.a11y-btn {
    padding: 4px 12px;
    border: 2px solid #000;
    background: #fff;
    color: #000;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.9rem;
}
.a11y-btn.active {
    background: #000;
    color: #fff;
}
.a11y-btn[data-font="small"] { font-size: 0.75rem; }
.a11y-btn[data-font="medium"] { font-size: 0.9rem; }
.a11y-btn[data-font="large"] { font-size: 1.1rem; }
.a11y-scheme-wb { background: #000; color: #fff; border-color: #fff; }
.a11y-scheme-wb.active { background: #333; color: #ff0; }
.a11y-scheme-bb { background: #9dd1ff; color: #063; border-color: #063; }
.a11y-scheme-bb.active { background: #063; color: #9dd1ff; }

/* === VISION MODE — общие стили === */
body.vision-mode {
    line-height: 1.8;
}
body.vision-mode * {
    font-family: Arial, Helvetica, sans-serif !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    text-shadow: none !important;
    transition: none !important;
}
body.vision-mode .hero,
body.vision-mode .cta-block,
body.vision-mode .card,
body.vision-mode .admin-section,
body.vision-mode .login-form,
body.vision-mode .gallery-item {
    border: 2px solid currentColor !important;
}
body.vision-mode a { text-decoration: underline !important; }
body.vision-mode .gallery-item img { filter: grayscale(100%) contrast(120%); }

/* Размеры шрифта */
body.vision-mode.font-small { font-size: 18px; }
body.vision-mode.font-medium { font-size: 22px; }
body.vision-mode.font-large { font-size: 26px; }

/* Скрыть изображения */
body.vision-mode.no-images img,
body.vision-mode.no-images svg,
body.vision-mode.no-images .gallery,
body.vision-mode.no-images .map-image { display: none !important; }

/* === Схема: чёрный на белом (по умолчанию) === */
body.vision-mode.scheme-bw {
    background: #fff !important;
    color: #000 !important;
}
body.vision-mode.scheme-bw a { color: #000 !important; }
body.vision-mode.scheme-bw .site-header,
body.vision-mode.scheme-bw .top-bar,
body.vision-mode.scheme-bw .site-footer,
body.vision-mode.scheme-bw .admin-header {
    background: #000 !important;
    color: #fff !important;
}
body.vision-mode.scheme-bw .main-nav > a,
body.vision-mode.scheme-bw .nav-dropdown > a,
body.vision-mode.scheme-bw .footer-info a,
body.vision-mode.scheme-bw .footer-links a,
body.vision-mode.scheme-bw .ministry-link,
body.vision-mode.scheme-bw .admin-header a,
body.vision-mode.scheme-bw .logo,
body.vision-mode.scheme-bw .logo-title,
body.vision-mode.scheme-bw .logo-subtitle {
    color: #fff !important;
}
body.vision-mode.scheme-bw .hero,
body.vision-mode.scheme-bw .cta-block {
    background: #000 !important;
    color: #fff !important;
}
body.vision-mode.scheme-bw .hero h1,
body.vision-mode.scheme-bw .cta-block h2,
body.vision-mode.scheme-bw .cta-block a { color: #fff !important; }
body.vision-mode.scheme-bw h1,
body.vision-mode.scheme-bw h2,
body.vision-mode.scheme-bw h3 { color: #000 !important; }
body.vision-mode.scheme-bw .card,
body.vision-mode.scheme-bw .admin-section,
body.vision-mode.scheme-bw .login-form {
    background: #fff !important;
}
body.vision-mode.scheme-bw .info-nav a {
    background: #ddd !important;
    color: #000 !important;
    border: 2px solid #000 !important;
}
body.vision-mode.scheme-bw .info-nav a.active {
    background: #000 !important;
    color: #fff !important;
}
body.vision-mode.scheme-bw .dropdown-content {
    background: #fff !important;
    border: 2px solid #000 !important;
}
body.vision-mode.scheme-bw .dropdown-content a { color: #000 !important; }
body.vision-mode.scheme-bw .info-table th {
    background: #000 !important;
    color: #fff !important;
}
body.vision-mode.scheme-bw .a11y-panel { background: #eee !important; border-color: #000 !important; }

/* === Схема: белый на чёрном === */
body.vision-mode.scheme-wb {
    background: #000 !important;
    color: #fff !important;
}
body.vision-mode.scheme-wb a { color: #ff0 !important; }
body.vision-mode.scheme-wb .site-header,
body.vision-mode.scheme-wb .top-bar,
body.vision-mode.scheme-wb .site-footer,
body.vision-mode.scheme-wb .admin-header {
    background: #222 !important;
    color: #fff !important;
}
body.vision-mode.scheme-wb .main-nav > a,
body.vision-mode.scheme-wb .nav-dropdown > a,
body.vision-mode.scheme-wb .footer-info a,
body.vision-mode.scheme-wb .footer-links a,
body.vision-mode.scheme-wb .ministry-link,
body.vision-mode.scheme-wb .admin-header a,
body.vision-mode.scheme-wb .logo,
body.vision-mode.scheme-wb .logo-title,
body.vision-mode.scheme-wb .logo-subtitle {
    color: #fff !important;
}
body.vision-mode.scheme-wb .hero,
body.vision-mode.scheme-wb .cta-block {
    background: #222 !important;
    color: #fff !important;
}
body.vision-mode.scheme-wb .hero h1,
body.vision-mode.scheme-wb .cta-block h2,
body.vision-mode.scheme-wb .cta-block a { color: #ff0 !important; }
body.vision-mode.scheme-wb h1,
body.vision-mode.scheme-wb h2,
body.vision-mode.scheme-wb h3 { color: #ff0 !important; }
body.vision-mode.scheme-wb .card,
body.vision-mode.scheme-wb .admin-section,
body.vision-mode.scheme-wb .login-form {
    background: #111 !important;
    border-color: #fff !important;
}
body.vision-mode.scheme-wb .info-nav a {
    background: #333 !important;
    color: #fff !important;
    border: 2px solid #fff !important;
}
body.vision-mode.scheme-wb .info-nav a.active {
    background: #fff !important;
    color: #000 !important;
}
body.vision-mode.scheme-wb .dropdown-content {
    background: #111 !important;
    border: 2px solid #fff !important;
}
body.vision-mode.scheme-wb .dropdown-content a { color: #fff !important; }
body.vision-mode.scheme-wb .info-table th {
    background: #333 !important;
    color: #fff !important;
}
body.vision-mode.scheme-wb .info-table td { border-color: #444 !important; }
body.vision-mode.scheme-wb .info-table tr:nth-child(even) { background: #1a1a1a !important; }
body.vision-mode.scheme-wb .a11y-panel { background: #222 !important; border-color: #fff !important; }
body.vision-mode.scheme-wb .a11y-label { color: #fff !important; }
body.vision-mode.scheme-wb .a11y-btn { border-color: #fff !important; background: #000 !important; color: #fff !important; }
body.vision-mode.scheme-wb .a11y-btn.active { background: #fff !important; color: #000 !important; }
body.vision-mode.scheme-wb .form-group input,
body.vision-mode.scheme-wb .form-group select,
body.vision-mode.scheme-wb .form-group textarea {
    background: #222 !important;
    color: #fff !important;
    border-color: #fff !important;
}

/* === Схема: тёмно-синий на голубом === */
body.vision-mode.scheme-bb {
    background: #9dd1ff !important;
    color: #063 !important;
}
body.vision-mode.scheme-bb a { color: #063 !important; }
body.vision-mode.scheme-bb .site-header,
body.vision-mode.scheme-bb .top-bar,
body.vision-mode.scheme-bb .site-footer,
body.vision-mode.scheme-bb .admin-header {
    background: #063 !important;
    color: #9dd1ff !important;
}
body.vision-mode.scheme-bb .main-nav > a,
body.vision-mode.scheme-bb .nav-dropdown > a,
body.vision-mode.scheme-bb .footer-info a,
body.vision-mode.scheme-bb .footer-links a,
body.vision-mode.scheme-bb .ministry-link,
body.vision-mode.scheme-bb .admin-header a,
body.vision-mode.scheme-bb .logo,
body.vision-mode.scheme-bb .logo-title,
body.vision-mode.scheme-bb .logo-subtitle {
    color: #9dd1ff !important;
}
body.vision-mode.scheme-bb .hero,
body.vision-mode.scheme-bb .cta-block {
    background: #063 !important;
    color: #9dd1ff !important;
}
body.vision-mode.scheme-bb .hero h1,
body.vision-mode.scheme-bb .cta-block h2,
body.vision-mode.scheme-bb .cta-block a { color: #9dd1ff !important; }
body.vision-mode.scheme-bb h1,
body.vision-mode.scheme-bb h2,
body.vision-mode.scheme-bb h3 { color: #063 !important; }
body.vision-mode.scheme-bb .card,
body.vision-mode.scheme-bb .admin-section,
body.vision-mode.scheme-bb .login-form {
    background: #b8e0ff !important;
    border-color: #063 !important;
}
body.vision-mode.scheme-bb .info-nav a {
    background: #b8e0ff !important;
    color: #063 !important;
    border: 2px solid #063 !important;
}
body.vision-mode.scheme-bb .info-nav a.active {
    background: #063 !important;
    color: #9dd1ff !important;
}
body.vision-mode.scheme-bb .dropdown-content {
    background: #b8e0ff !important;
    border: 2px solid #063 !important;
}
body.vision-mode.scheme-bb .dropdown-content a { color: #063 !important; }
body.vision-mode.scheme-bb .info-table th {
    background: #063 !important;
    color: #9dd1ff !important;
}
body.vision-mode.scheme-bb .info-table td { border-color: #063 !important; }
body.vision-mode.scheme-bb .info-table tr:nth-child(even) { background: #b8e0ff !important; }
body.vision-mode.scheme-bb .a11y-panel { background: #b8e0ff !important; border-color: #063 !important; }
body.vision-mode.scheme-bb .a11y-label { color: #063 !important; }
body.vision-mode.scheme-bb .form-group input,
body.vision-mode.scheme-bb .form-group select,
body.vision-mode.scheme-bb .form-group textarea {
    background: #b8e0ff !important;
    color: #063 !important;
    border-color: #063 !important;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .burger { display: flex; }
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--blue);
        flex-direction: column;
        padding: 12px;
        box-shadow: var(--shadow);
    }
    .main-nav.open { display: flex; }
    .nav-dropdown .dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        background: rgba(255,255,255,0.1);
        min-width: auto;
        padding: 0;
    }
    .nav-dropdown.open .dropdown-content { display: block; }
    .dropdown-content a { color: var(--white) !important; padding-left: 32px; }
    .contacts-grid { grid-template-columns: 1fr; }
    .hero { padding: 30px 20px; }
    .hero h1 { font-size: 1.5rem; }
    .logo-image { width: 150px; height: 150px; }
    .footer-inner { flex-direction: column; gap: 16px; }
    h1 { font-size: 1.4rem; }
}

/* Логотип на главной */
.hero-logo {
    margin: 20px 0;
}
.logo-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
}
.hero-club-name {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 8px;
}
.hero-motto {
    font-style: italic;
    font-size: 1.2rem;
    margin-top: 8px;
}

/* Карточки педагогического состава */
.staff-card {
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 16px;
    box-shadow: var(--shadow);
}
.staff-card p {
    margin: 4px 0;
}
.staff-card strong {
    font-size: 1.05rem;
}

/* Лайтбокс */
.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}
.lightbox-overlay.active {
    display: flex;
}
.lightbox-img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
}
.lightbox-close {
    position: absolute;
    top: 16px;
    right: 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    line-height: 1;
    z-index: 10001;
}
.lightbox-close:hover {
    color: #ccc;
}
.gallery-item img {
    cursor: pointer;
}
