@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
}

.navbar-shadow {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.vehicle-card {
    transition: all 0.3s ease;
    border-radius: 12px;
}

.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.btn-primary {
    background: linear-gradient(90deg, #e53e3e 0%, #c53030 100%);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(90deg, #c53030 0%, #9b2c2c 100%);
    transform: translateY(-2px);
}

.btn-secondary {
    background: linear-gradient(90deg, #ffed4e 0%, #f6e05e 100%);
    color: #1a202c;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: linear-gradient(90deg, #f6e05e 0%, #ecc94b 100%);
    transform: translateY(-2px);
}

.filter-btn {
    transition: all 0.2s ease;
}

.filter-btn:hover {
    background-color: #e2e8f0;
}

/* Owl Carousel Custom Styles */
.hero-slider {
    position: relative;
}

.hero-slide {
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
}

.owl-nav button {
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.3) !important;
    border: 2px solid rgba(255, 255, 255, 0.6) !important;
    border-radius: 50% !important;
    color: white !important;
    font-size: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    pointer-events: all;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.owl-nav button:hover {
    background: rgba(0, 0, 0, 0.5) !important;
    border-color: rgba(255, 255, 255, 0.8) !important;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Owl Carousel dots styling */
.owl-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.owl-dots .owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4) !important;
    border: none !important;
    transition: all 0.3s ease !important;
    margin: 0 5px;
}

.owl-dots .owl-dot.active {
    background: white !important;
    transform: scale(1.2);
}

.owl-dots .owl-dot:hover {
    background: rgba(255, 255, 255, 0.7) !important;
}
.owl-dots .owl-dot span {
    display: none !important;
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-slide {
        height: 400px;
        padding: 2rem 0;
    }
    
    /* Mobilde okları gizle */
    .owl-nav {
        display: none !important;
    }
    
    /* Mobilde dot'ları göster */
    .owl-dots {
        display: flex !important;
        bottom: 15px;
    }
    
    .owl-dots .owl-dot {
        width: 10px;
        height: 10px;
    }
}

/* Desktop'ta dot'ları gizle */
@media (min-width: 769px) {
    .owl-dots {
        display: none !important;
    }
}

.notification-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #e53e3e;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
}

.logo-container {
    position: relative;
    display: inline-block;
}

.logo-container::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #e53e3e 0%, #ffed4e 100%);
    border-radius: 2px;
}

.footer-link:hover {
    color: #e53e3e;
}

.social-icon {
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.form-input:focus {
    border-color: #e53e3e;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.2);
}

#userDropdown:hover div {
    opacity: 1;
    visibility: visible;
}

.login-modal {
    animation: modalFade 0.3s ease-out forwards;
}

@keyframes modalFade {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
