/* Genel Stiller */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: #2c3e50 !important;
}

.nav-link {
    font-weight: 500;
    color: #34495e !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #3498db !important;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 0;
    margin-bottom: 3rem;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.hero-banner h1 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 800;
    font-size: 3.5rem;
}

.hero-banner .lead {
    color: #34495e;
    margin-bottom: 2rem;
    font-size: 1.25rem;
}

.hero-banner .btn-primary {
    background-color: #3498db;
    border-color: #3498db;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.hero-banner .btn-primary:hover {
    background-color: #2980b9;
    border-color: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* Ürün Kartları */
.card {
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.card-img-top {
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.card-text {
    color: #7f8c8d;
}

/* İletişim Sayfası */
.contact-info {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.contact-info:hover {
    transform: translateY(-5px);
}

.contact-info h3 {
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-details p {
    margin-bottom: 15px;
    color: #666;
}

.contact-details i {
    width: 25px;
    color: #007bff;
    margin-right: 10px;
}

.contact-details a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #0056b3;
}

#map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

#map {
    height: 400px;
    width: 100%;
}

#map-loading {
    background: rgba(255, 255, 255, 0.9);
    z-index: 1000;
}

.form-control {
    border: 1px solid #ddd;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.25);
}

.btn-primary {
    padding: 12px 25px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,123,255,0.3);
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 0;
    margin-top: 5rem;
}

footer h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

footer p {
    color: #bdc3c7;
}

/* Admin Panel */
.navbar-dark {
    background-color: #2c3e50 !important;
}

.navbar-dark .navbar-brand,
.navbar-dark .nav-link {
    color: #ecf0f1 !important;
}

.navbar-dark .nav-link:hover {
    color: #3498db !important;
}

.table {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.table thead th {
    background-color: #f8f9fa;
    border-bottom: 2px solid #e9ecef;
    color: #2c3e50;
    font-weight: 600;
}

.table img {
    max-width: 100px;
    height: auto;
    border-radius: 5px;
}

.btn-warning {
    background-color: #f39c12;
    border-color: #f39c12;
    border-radius: 30px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-warning:hover {
    background-color: #d35400;
    border-color: #d35400;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
}

.btn-danger {
    background-color: #e74c3c;
    border-color: #e74c3c;
    border-radius: 30px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-danger:hover {
    background-color: #c0392b;
    border-color: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .hero-banner {
        padding: 3rem 0;
    }
    
    .hero-banner h1 {
        font-size: 2.5rem;
    }
    
    .card-img-top {
        height: 200px;
    }
    
    #map {
        height: 300px;
    }
    
    .contact-info {
        margin-bottom: 30px;
    }
    
    .btn-primary {
        width: 100%;
    }
} 