.sticky-menu {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 0; /* Çok yüksek bir değer veriyoruz */
    background: #ffffff !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    padding: 5px 0 !important; /* Biraz daraltmak şık durur */
    transition: all 0.3s ease-in-out;
}
/* --- GENEL AYARLAR --- */


/* --- TOP HEADER (ÜST ÇUBUK) --- */
.top-header { background-color: #2c3e50; color: #fff; padding: 10px 0; font-size: 14px; }
.top-header-inner { display: flex; justify-content: space-between; align-items: center; }

/* İletişim Bilgileri */
.contact-info a { color: #ecf0f1; margin-right: 20px; transition: color 0.3s ease; display: inline-flex; align-items: center; }
.contact-info a i { margin-right: 8px; color: #ffc107; /* İkon rengi */ }
.contact-info a:hover { color: #ffc107; }

/* Sosyal Medya İkonları */
.social-media a { color: #ecf0f1; margin-left: 15px; font-size: 16px; transition: all 0.3s ease; }
.social-media a:hover { color: #ffc107; transform: scale(1.1); }

/* --- MAIN HEADER (ANA MENÜ) --- */
.main-header { background-color: #ffffff; box-shadow: 0 2px 10px rgba(0,0,0,0.1); padding: 15px 0; position: sticky; top: 0; z-index: 1000; }
.main-header-inner { display: flex; justify-content: space-between; align-items: center; }

/* Logo */
.logo a h2 { color: #2c3e50; font-weight: 800; font-size: 26px; letter-spacing: 1px; }

/* Menü Linkleri */
.main-menu ul { display: flex; gap: 25px; }
.main-menu a { color: #333; font-weight: 600; font-size: 15px; transition: color 0.3s ease; position: relative; }
.main-menu a:hover { color: #ffc107; }

/* Bilgi Al Butonu */
.btn-primary { background-color: #e74c3c; color: white; padding: 10px 24px; border-radius: 6px; font-weight: 700; font-size: 15px; transition: background-color 0.3s ease; }
.btn-primary:hover { background-color: #c0392b; }

/* --- MOBİL UYUMLULUK (RESPONSIVE) --- */
@media (max-width: 992px) {
    .top-header-inner, .main-header-inner { flex-direction: column; gap: 15px; text-align: center; }
    .contact-info { display: flex; flex-direction: column; gap: 10px; }
    .contact-info a { margin-right: 0; justify-content: center; }
    .main-menu ul { flex-wrap: wrap; justify-content: center; gap: 15px; }
    .social-media { margin-top: 10px; }
}

   /* Mesafe Kartı Tasarımı */
.distance-item {
    background: #ffffff;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.distance-item:hover {
    transform: translateY(-10px);
    border-bottom: 3px solid #f04e45; /* Kurumsal Kırmızı */
}

/* İkon Alanı */
.dist-icon {
    width: 70px;
    height: 70px;
    background: #fdf2f1;
    color: #f04e45;
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.distance-item:hover .dist-icon {
    background: #f04e45;
    color: #ffffff;
}

/* Metin Stilleri */
.distance-item h4 {
    font-size: 28px;
    font-weight: 700;
    color: #2b2b2b;
    margin-bottom: 5px;
}

.distance-item p {
    font-size: 16px;
    color: #666;
    margin-bottom: 0;
    font-weight: 500;
}


    /* Gizli Galeri Öğeleri İçin Sınıf */
.hidden-gallery-item {
    display: none;
}

/* Tüm Görselin Tıklanabilir Olması İçin Overlay Ayarları */
.gallery-item a.popup-image {
    display: block;
    overflow: hidden;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(43, 43, 43, 0.7); /* Antrasit yarı saydam */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    cursor: pointer; /* Fare imlecini el şekline getirir */
}

/* Hover Efektleri */
.gallery-item:hover .gallery-overlay {
    opacity: 1;
    visibility: visible;
}

.gallery-item img {
    transition: all 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Büyüteç İkonu (Tıklanabilir buton hissi vermek için) */
.gallery-overlay i {
    color: #ffffff;
    font-size: 30px;
    background-color: #f04e45; /* Kurumsal kırmızı */
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay i {
    transform: translateY(0);
}

