/* GENEL AYARLAR */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #fff;
    background-color: #111;
}

/* Link alt çizgilerini kaldırma */
a {
    text-decoration: none;
    color: #fff;
}

/* HERO SECTION (Arka Plan Resmi) */
.hero {
    height: 100vh; /* Ekranın tamamını kapla */
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/foto5.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
}

/* NAVBAR TASARIMI */
/* NAVBAR GÜNCELLEMESİ (Sticky/Yapışkan Menü) */
.navbar {
    position: fixed; /* Menüyü ekrana sabitler */
    top: 0;          /* En tepede dursun */
    left: 0;         /* En soldan başlasın */
    width: 100%;     /* Ekranı tam kaplasın */
    z-index: 1000;   /* Diğer tüm elementlerin üstünde dursun (Resimlerin altında kalmasın) */
    
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px; /* Biraz daha kompakt olsun */
    
    background-color: rgba(0, 0, 0, 0.8); /* Arka planı biraz daha koyulaştırdık */
    backdrop-filter: blur(10px); /* Buzlu cam efekti verir (Modern görünüm) */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Altına ince bir çizgi */
}

.logo {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.highlight {
    /*color: #ff5722; /* Neon Turuncu Rengimiz */
    color: #f80000;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ff5722;
}

/* ORTA ALAN (HERO CONTENT) */
.hero-content {
    flex: 1; /* Kalan boşluğu doldur */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* Hem yatay hem dikey ortalama */
    text-align: center;
    padding: 0 20px;
}

.hero-content h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    color: #ddd;
}

/* BUTON TASARIMI */
.btn {
    background-color: #ff5722;
    color: #fff;
    padding: 15px 40px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s, transform 0.2s;
}

.btn:hover {
    background-color: #e64a19;
    transform: scale(1.05); /* Üzerine gelince hafif büyüsün */
}
/* ORTAK AYARLAR */
.section-padding {
    padding: 80px 20px;
}

.container {
    max-width: 1100px;
    margin: 0 auto; /* Ortalamak için */
}

.bg-dark {
    background-color: #1a1a1a; /* Biraz daha açık siyah arka plan */
}

.section-title {
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #fff;
}

/* HAKKIMIZDA BÖLÜMÜ */
.about-row {
    display: flex;
    align-items: center;
    gap: 50px; /* İki kutu arası boşluk */
    flex-wrap: wrap; /* Mobilde alt alta geçsin */
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(255, 87, 34, 0.3); /* Hafif turuncu gölge */
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.features-list {
    list-style: none;
    margin-top: 20px;
}

.features-list li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* DERSLER / KARTLAR BÖLÜMÜ */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background-color: #222;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, background 0.3s;
    border-bottom: 3px solid transparent;
}

.card:hover {
    transform: translateY(-10px); /* Yukarı doğru hafif hareket */
    background-color: #2a2a2a;
    border-bottom: 3px solid #ff5722; /* Altına turuncu çizgi gelir */
}

.card h3 {
    color: #f80000;
    margin-bottom: 15px;
    font-family: 'Oswald', sans-serif;
}

/* FOOTER BÖLÜMÜ */
footer {
    background-color: #000;
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid #333;
}

.footer-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-family: 'Oswald', sans-serif;
}

.footer-info p {
    color: #888;
    margin-bottom: 5px;
}

.copyright {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #222;
    font-size: 0.9rem;
    color: #555;
}

/* RESPONSIVE (MOBİL UYUMLULUK) İÇİN KÜÇÜK BİR DOKUNUŞ */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }

    .about-row {
        flex-direction: column;
    }
}
/* İLETİŞİM BÖLÜMÜ DÜZENİ */
.contact-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px; /* İki kutu arasındaki boşluk */
    flex-wrap: wrap; /* Mobilde sığmazsa alt satıra geçsin */
}

.contact-info {
    flex: 1; /* Mevcut alanın yarısını kapla */
    background-color: #222;
    padding: 40px;
    border-radius: 10px;
    border-left: 5px solid #ff5722; /* Sol tarafa turuncu çizgi */
}

.contact-info h3 {
    color: #ff5722;
    margin-bottom: 20px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
}

.contact-info p {
    margin-bottom: 15px;
    color: #ddd;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* HARİTA KUTUSU */
.map-container {
    flex: 1; /* Mevcut alanın diğer yarısını kapla */
    height: 300px;
    border-radius: 10px;
    overflow: hidden; /* Köşelerin yuvarlak kalması için */
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

/* Haritayı siyah-beyaz yapmak için (İsteğe bağlı havalı efekt) */
.map-container iframe {
    filter: grayscale(100%) invert(90%); 
    /* Not: Haritayı normal renkli istiyorsan üstteki satırı silebilirsin */
}

/* FOOTER GÜNCELLEMESİ (Sadece telif hakkı kaldı) */
footer {
    margin-top: 0; /* Önceki ayarlardan kalan boşluğu sıfırla */
    background-color: #000;
    padding: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}
/* SOSYAL MEDYA İKONLARI */
.social-media {
    margin-top: 25px;
    border-top: 1px solid #333; /* Üstüne ince bir çizgi çekelim */
    padding-top: 15px;
}

.social-media p {
    margin-bottom: 10px;
    color: #fff;
    font-size: 1rem;
}

.social-icon {
    font-size: 2rem; /* İkon boyutu */
    color: #fff; /* Varsayılan renk beyaz */
    margin-right: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

/* Instagram'a özel hover (üzerine gelme) efekti */
.social-icon.instagram:hover {
    color: #E1306C; /* Instagram'ın orijinal pembe rengi */
    transform: scale(1.2) rotate(5deg); /* Hafif büyüsün ve dönsün */
    text-shadow: 0 0 15px rgba(225, 48, 108, 0.6); /* Arkasına neon ışık verelim */
}
/* --- MOBİL MENÜ AYARLARI --- */

/* Masaüstünde Hamburger Menü GİZLİ olsun */
.menu-toggle {
    display: none;
}

/* SADECE MOBİL CİHAZLAR İÇİN (768px ve altı) */
@media (max-width: 768px) {
    
    /* Hamburger menü ikonunu göster */
    .menu-toggle {
        display: block;
        font-size: 1.8rem;
        cursor: pointer;
        color: #fff;
    }

    /* Menü linklerini başlangıçta gizle ve şekillendir */
    .nav-links {
        position: absolute;
        top: 100%; /* Navbar'ın tam altından başlasın */
        right: -100%; /* Ekranın sağ dışına itelim (Gizli dursun) */
        width: 100%; /* Tüm genişliği kaplasın */
        height: 100vh; /* Ekran boyu kadar uzasın */
        background-color: rgba(0, 0, 0, 0.95); /* Koyu arka plan */
        
        flex-direction: column; /* Linkler alt alta dizilsin */
        align-items: center;
        justify-content: start; /* Üstten başlasın */
        padding-top: 60px;
        
        transition: right 0.4s ease; /* Kayma efekti hızı */
    }

    /* Menü Açıldığında Devreye Girecek Sınıf */
    .nav-links.active {
        right: 0; /* Ekranın içine geri gelsin */
    }

    .nav-links li {
        margin: 20px 0; /* Linkler arası boşluk */
    }

    .nav-links a {
        font-size: 1.5rem; /* Mobilde yazılar daha büyük olsun */
    }
}
/* GALERİ BÖLÜMÜ TASARIMI */

/* Biraz daha koyu bir arka plan tonu ekleyelim */
.bg-darker {
    background-color: #111; 
}

.section-subtitle {
    text-align: center;
    color: #888;
    margin-bottom: 40px;
    margin-top: -30px; /* Başlığa biraz yaklaştıralım */
}

/* Galeri Izgarası (Grid) */
.gallery-grid {
    display: grid;
    /* Mobilde 1, tablette 2, masaüstünde 3 sütun otomatik ayarlanır */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px; /* Resimler arası boşluk */
}

/* Galeri Elemanı Çerçevesi */
.gallery-item {
    position: relative; /* İçindeki overlay'i konumlandırmak için gerekli */
    overflow: hidden; /* Resim büyüyünce taşmasın */
    border-radius: 10px; /* Köşeleri yuvarlatalım */
    height: 250px; /* Sabit bir yükseklik verelim */
    cursor: pointer;
}

/* Resim Ayarları */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Resmi kutuya sığdır, gerekirse kırp ama bozma */
    transition: transform 0.5s ease; /* Yumuşak büyüme efekti */
}

/* Üzerine Gelince Resim Efekti */
.gallery-item:hover img {
    transform: scale(1.1); /* Resmi %10 büyüt */
}

/* Overlay (Üzerine gelince çıkan koyu katman ve ikon) */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 87, 34, 0.7); /* Yarı saydam turuncu/kırmızı */
    display: flex;
    justify-content: center; /* İkonu ortala */
    align-items: center;
    opacity: 0; /* Başlangıçta görünmez */
    transition: opacity 0.3s ease;
}

.overlay i {
    color: #fff;
    font-size: 3rem;
    transform: translateY(20px); /* İkon biraz aşağıdan gelsin */
    transition: transform 0.3s ease;
}

/* Üzerine Gelince Overlay Efekti */
.gallery-item:hover .overlay {
    opacity: 1; /* Görünür yap */
}

.gallery-item:hover .overlay i {
    transform: translateY(0); /* İkon yerine otursun */
}
/* --- LIGHTBOX EFEKTİ --- */

/* Lightbox Ana Kutusu (Başlangıçta Gizli) */
.lightbox {
    display: none; /* Normalde görünmez */
    position: fixed; /* Ekrana sabitlenir, scroll ile kaymaz */
    z-index: 2000; /* En üstte durması için çok yüksek bir sayı (Navbar'ın üstünde) */
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Resim çok büyükse kaydırma çubuğu çıksın */
    background-color: rgba(0, 0, 0, 0.9); /* %90 siyah arka plan */
    
    /* İçeriği ortalamak için Flexbox */
    justify-content: center;
    align-items: center;
}

/* Lightbox Açıldığında Devreye Girecek Sınıf */
.lightbox.active {
    display: flex; /* Görünür yap ve ortala */
    animation: fadeIn 0.3s ease; /* Açılırken yumuşak geçiş efekti */
}

/* --- EKSİK GALERİ VE LIGHTBOX AYARLARI --- */

/* Lightbox Ana Ekranı */
.lightbox {
    display: none; /* Başlangıçta gizli */
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex; /* JS ile aktif olduğunda görünür */
}

/* Büyük Resim */
#lightbox-img {
    max-width: 85%;
    max-height: 80vh;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(255, 87, 34, 0.3);
    z-index: 2050;
}

/* KAPATMA BUTONU (X) - Senin tasarımına uygun sağ üst konum */
#close-lightbox {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2110;
    line-height: 1;
    transition: 0.3s;
}

#close-lightbox:hover {
    color: #ff5722;
    transform: scale(1.1);
}

/* SAĞ VE SOL OKLAR */
.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    font-size: 2.5rem;
    padding: 20px 15px;
    cursor: pointer;
    transition: 0.3s;
    z-index: 2100;
    border-radius: 5px;
}

.prev-btn:hover, .next-btn:hover {
    background: rgba(255, 87, 34, 0.8);
}

.prev-btn { left: 20px; }
.next-btn { right: 20px; }

/* Galeri açıkken arka plan kaymasın diye */
body.no-scroll {
    overflow: hidden;
}

/* --- MOBİL MENÜ İÇİN NAVBAR DÜZELTMESİ --- */
@media (max-width: 768px) {
    /* Navbar'ın mobil halini senin düzenine göre sabitleyelim */
    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: -100%; /* Başlangıçta gizli */
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.95);
        padding-top: 50px;
        transition: 0.4s ease;
    }

    .nav-links.active {
        right: 0; /* Menü açıldığında içeri girer */
    }

    .nav-links li {
        margin: 20px 0;
        text-align: center;
    }
}
.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;    /* Navbar yüksekliğine göre ayarla (ideal 40px-60px) */
    width: auto;      /* Oranı bozmaması için otomatik bırak */
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.45); /* Üzerine gelince hafif büyüme efekti */
}

/* Mobilde logoyu biraz küçültmek istersen */
@media (max-width: 768px) {
    .logo-img {
        height: 40px;
    }
}
/* İletişim İçindeki Satır Düzeni */
.contact-row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap; /* Mobilde alt alta geçmesi için */
}

.contact-column {
    flex: 1;
    min-width: 250px; /* Mobilde çok daralmaması için */
}

.contact-column h3 {
    color: #ff5722;
    margin-bottom: 20px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
}

/* Çalışma Saatleri Liste Düzeni */
.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
}

.hours-list li span {
    font-weight: bold;
    color: #bbb;
}

.hours-list li:last-child {
    border-bottom: none;
}

/* Mobilde başlıkların çok ayrık durmaması için */
@media (max-width: 480px) {
    .contact-row {
        flex-direction: column;
    }
}
@media (max-width: 768px) {
    /* İletişim kutusunun genel devliğini alalım */
    .contact-info {
        padding: 20px; /* 40px olan boşluğu yarıya indirdik */
        margin-top: 20px;
    }

    .contact-row {
        gap: 15px; /* Sütunlar arası boşluğu daralttık */
    }

    .contact-column h3 {
        font-size: 1.2rem; /* Başlıkları biraz küçülttük */
        margin-bottom: 10px;
        margin-top: 15px;
    }

    .contact-column p, 
    .hours-list li {
        font-size: 0.85rem; /* Yazı boyutlarını okunaklı ama küçük yaptık */
        padding: 5px 0;    /* Satır aralarını daralttık */
    }

    /* İkonları ve gün isimlerini biraz daha zarif yapalım */
    .hours-list li span {
        font-size: 0.85rem;
    }
}