/* ============================
   Gallery Intro - Tam Ekran
   ============================ */
.gallery-intro {
    width: 100%;
    height: 30vh;
    background: #fff;
    display: flex;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    box-sizing: border-box;
    flex-wrap: nowrap;
    align-content: center;
    flex-direction: row;
    align-items: center;
}

.gallery-intro h1 {
    font-size: 3rem;
    color: #d4af37;              /* Sitenin gold rengi */
    margin-bottom: 15px;
    font-weight: 700;
}

.gallery-intro p {
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

/* ============================
   Filtre Butonları
   ============================ */
.media-filters {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border: 1px solid rgba(212,175,55,0.45);
    border-radius: 6px;
    background: #fff;
    color: #d4af37;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #d4af37;
    color: #fff;
}

/* ============================
   Media Gallery Grid
   ============================ */
.media-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 40px 20px;
}

.media-item {
    flex: 1 1 45%; /* Yan yana iki kutu PC'de */
    max-width: 45%;
    background: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.2s;
}

.media-item img,
.media-item video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.media-item:hover {
    transform: scale(1.03);
}

/* ============================
   Lightbox Overlay
   ============================ */
.lightbox-overlay {
    position: fixed;
    top:0; left:0;
    width:100%; height:100%;
    background: rgba(0,0,0,0.85);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.lightbox-overlay img,
.lightbox-overlay video {
    max-width:90%;
    max-height:90%;
    border-radius:8px;
}

/* ============================
   Responsive
   ============================ */
@media (max-width: 1200px) {
    .media-item { flex: 1 1 48%; max-width: 48%; }
}

@media (max-width: 992px) {
    .media-item { flex: 1 1 48%; max-width: 48%; }
}

@media (max-width: 768px) {
    .gallery-intro h1 { font-size: 2rem; }
    .gallery-intro p { font-size: 1rem; }
    .filter-btn { padding: 8px 15px; font-size: 0.9rem; }
    .media-item { flex: 1 1 100%; max-width: 100%; }
}

@media (max-width: 480px) {
    .gallery-intro h1 { font-size: 1.5rem; }
    .gallery-intro p { font-size: 0.9rem; }
    .filter-btn { padding: 6px 12px; font-size: 0.85rem; }
}
