/* style.css - Ana Stil Dosyası */

/* --- 1. HAREKETLİ ARKA PLAN --- */
.hareketli-arkaplan {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: url('https://images.unsplash.com/photo-1555066931-4365d14bab8c?q=80&w=1920&auto=format&fit=crop') no-repeat center center;
    background-size: cover;
    animation: zoomEfekti 30s infinite alternate;
}

.karanlik-perde {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: -1;
}

@keyframes zoomEfekti {
    0% { transform: scale(1); }
    100% { transform: scale(1.2); }
}

/* --- 2. GENEL AYARLAR --- */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #e0e0e0;
    background-color: transparent;
}

a { text-decoration: none; }

/* --- 3. NAVBAR (MENÜ) --- */
.navbar {
    background-color: rgba(0, 0, 0, 0.95) !important;
    border-bottom: 1px solid #333;
}

.navbar-brand {
    font-weight: 700;
    color: #ffc107 !important;
}

.nav-link {
    color: #bbb !important;
    transition: 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: #ffc107 !important;
}

/* --- 4. KART TASARIMLARI --- */
.card {
    background-color: rgba(255, 255, 255, 0.95);
    color: #333;
    border: none;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.2);
}

/* --- 5. FOOTER --- */
footer {
    background-color: rgba(0, 0, 0, 0.95) !important;
    border-top: 1px solid #333;
    color: #888;
}

/* --- 6. GALERİ ÖZEL --- */
.galeri-foto {
    transition: transform 0.4s ease, filter 0.4s ease;
    cursor: pointer;
    border: 3px solid #fff;
}

.galeri-foto:hover {
    transform: scale(1.03);
    filter: brightness(1.1);
    border-color: #ffc107;
}