/* GRID */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
}

.gallery-grid img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

/* LIGHTBOX */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    display: flex;
    justify-content: center;
    align-items: center; /* bilde centrā */
    z-index: 999;
    padding: 20px;
}

.lightbox.hidden {
    display: none !important;
}


.lightbox-inner {
    width: 1200px;
    max-width: 95vw;
    height: 90vh;
    display: flex;
    gap: 20px;
}

.image-wrapper {
    width: 65%;
    height: 90vh;
    position: relative;
    display: flex;
    flex-direction: column;
}


/* .image-wrapper img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
} */

/* BULTAS */
.nav-btn {
    background: rgba(255,255,255,0.08);
    border: 1px solid #555;
    color: #ddd;
    font-size: 26px;       /* ← mazākas */
    padding: 6px 18px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.nav-btn:hover {
    background: rgba(255,255,255,0.18);
    color: #fff;
}

#prev { left: 15px; }
#next { right: 15px; }

/* KOMENTĀRU PANELIS */
.comments-panel {
    width: 35%;
    min-width: 300px;
    max-width: 420px;
    background: #111;
    border-left: 2px solid #333; /* vertikālā līnija */
    padding: 18px 20px;
    color: #ddd;
    font-size: 15px;
    line-height: 1.5;
    overflow-y: auto;
    height: 90vh; /* ritinās kopā ar formu */
}

/* KOMENTĀRI */
.comment {
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px dashed #444;
}

.comment-author {
    font-weight: bold;
    color: #fff;
    margin-bottom: 2px;
}

.comment-date {
    font-size: 12px;
    color: #777;
    margin-bottom: 6px;
}

.comment-text {
    white-space: pre-line;
    color: #ccc;
}

.form-control {
    background-color: #2a2a2a !important;
    border-color: #555 !important;
    color: #eee !important;
}

.form-control:focus {
    background-color: #333 !important;
    border-color: #888 !important;
    box-shadow: none !important;
    color: #fff !important;
}

.form-control::placeholder {
    color: #aaa !important;   /* viegli pelēks teksts */
}

/* VIRSRKASTS + APRAKSTS KREISAJĀ AUGŠĒJĀ STŪRĪ */
.lb-meta {
    padding: 20px;
    color: #fff;
    z-index: 10;
}


#lb-gallery-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
}

#lb-image-desc {
    font-size: 15px;
    color: #ddd;
    line-height: 1.4;
}

.image-container {
    flex: 1; /* aizņem visu brīvo vietu starp virsrakstu un bultām */
    display: flex;
    justify-content: center; /* horizontāli centrē */
    align-items: center;     /* vertikāli centrē tikai konteinerī, nevis wrapperī */
    overflow: hidden;
}

.image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.image-nav {
    padding: 20px 0;
    display: flex;
    justify-content: center;
    gap: 16px;
}



