/* Genel Stil */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

/* Navbar */
.navbar-brand {
    font-weight: 600;
}

.navbar-light .navbar-nav .nav-link {
    color: #555;
    font-weight: 500;
    transition: color 0.3s;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: #0d6efd;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('images/WhatsApp Görsel 2025-07-21 saat 15.39.53_75e82512.jpg') no-repeat center center;
    background-size: cover;
    height: 70vh; /* Yüksekliği biraz artırdım */
    color: white;
}

/* Sections */
section {
    padding: 60px 0;
}

section h2 {
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: #0d6efd;
}

/* Kart Stilleri */
.card {
    border: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* Galeri */
#gallery img {
    transition: transform 0.3s;
}

#gallery img:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    background-color: #f8f9fa;
    border-top: 1px solid #e7e7e7;
}

.footer-logo {
    height: 80px; /* Logo yüksekliği artırıldı */
    margin-bottom: 10px;
}
