body {
    background-color: #f8f9fa;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary-color: #FF3C4A;
    --secondary-color: #333;
    --light-gray: #f8f9fa;
    --border-radius: 8px;
}

/* Header ve Logo Stili */
.navbar {
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    padding: 20px 0;
    background-color: #fff !important;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    object-fit: contain;
    max-width: 100%;
    transition: transform 0.3s ease;
}

.navbar-brand:hover .logo-img {
    transform: scale(1.05);
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color) !important;
    font-size: 2rem;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link {
    color: var(--secondary-color) !important;
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

/* Arama Kutusu */
.search-box {
    border-radius: 30px;
    border: 1px solid #e5e5e5;
    padding: 8px 20px;
    width: 100%;
    max-width: 400px;
}

/* Butonlar */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 30px;
    padding: 8px 25px;
    font-weight: 500;
}

.btn-primary:hover {
    background-color: #e62836;
    border-color: #e62836;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 30px;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Hero Banner */
.hero-banner {
    background-color: #f5f5f5;
    padding: 40px 0;
    margin-bottom: 30px;
    background-size: cover;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Carousel Ayarları */
.carousel {
    margin-bottom: 30px;
}

.carousel-indicators {
    bottom: 20px;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 60, 74, 0.7);
    border: none;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 60, 74, 0.7);
    border-radius: 50%;
    background-size: 50%;
}

.carousel-item img {
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Kategori Butonları */
.category-btn {
    background-color: #fff;
    border: 1px solid #e5e5e5;
    border-radius: var(--border-radius);
    padding: 10px 30px;
    margin-right: 10px;
    font-weight: 500;
    transition: all 0.3s;
}

.category-btn.active, .category-btn:hover {
    background-color:  #8e8903;
    color: white;
    border-color:  #8e8903;
}

/* Araç Kartları */
.card {
    transition: transform 0.2s, box-shadow 0.3s;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border: none;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.card-img-top {
    height: 160px;
    object-fit: contain;
    padding: 10px;
    background-color: #fff;
}

.card-title {
    font-size: 1rem;
    font-weight: 600;
}

.card-body {
    padding: 15px;
}

.badge {
    font-weight: 500;
    padding: 5px 10px;
}

.badge-red {
    background-color: var(--primary-color);
}

.badge-blue {
    background-color: #007bff;
}

.badge-green {
    background-color: #28a745;
}

.badge-gold {
    background-color: #DAA520;
    color: #fff;
}

.rounded-circle-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e5e5;
    margin-bottom: 5px;
}

.icon-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 500;
}

.price-tag {
    font-size: 1.3rem;
    font-weight: 700;
    color:#8e8903;
}

.price-period {
    font-size: 0.7rem;
    color: #999;
}

/* Form Elemanları */
.form-select, .form-control {
    border-radius: var(--border-radius);
    border: 1px solid #e5e5e5;
    padding: 8px 12px;
    font-size: 0.9rem;
}

.form-select:focus, .form-control:focus {
    border-color: #8e8903;
    box-shadow: 0 0 0 0.2rem rgba(255, 60, 74, 0.25);
}

/* Telefon numarası */
.phone-number {
    color:#8e8903;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Mobil Ayarlar */
@media (max-width: 768px) {
    .card-img-top {
        height: 140px;
    }
    
    .category-btn {
        margin-bottom: 10px;
        width: 100%;
    }
} 