/* Genel Stiller */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    margin-top: -1.5rem;
}

.hero-section h1 {
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Features Section */
.features-section .card {
    transition: transform 0.3s ease;
    border: none;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.features-section .card:hover {
    transform: translateY(-5px);
}

.features-section .card-body {
    padding: 2rem;
}

/* How It Works Section */
.step-number {
    width: 50px;
    height: 50px;
    background-color: #007bff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

/* Footer */
footer {
    background-color: #f8f9fa;
    padding: 3rem 0;
}

footer h5 {
    font-weight: 600;
    margin-bottom: 1.5rem;
}

footer ul li {
    margin-bottom: 0.5rem;
}

footer a {
    color: #333;
    text-decoration: none;
}

footer a:hover {
    color: #007bff;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 50px 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .features-section .card {
        margin-bottom: 1rem;
    }
}

/* Custom Components */
.btn-primary {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
}

.btn-outline-primary {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
}

/* Profile Page */
.profile-header {
    background: #f8f9fa;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.profile-info h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.profile-info p {
    color: #6c757d;
    margin-bottom: 1rem;
}

/* Reviews */
.review-card {
    border: none;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.review-card .card-header {
    background-color: white;
    border-bottom: 1px solid #eee;
}

.review-rating {
    color: #ffc107;
}

/* Forms */
.form-control {
    padding: 0.75rem;
    border-radius: 0.5rem;
}

.form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Utilities */
.text-primary {
    color: #007bff !important;
}

.bg-primary {
    background-color: #007bff !important;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-out;
} 