/* Ümumi sıfırlama */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f3f3f3;
}

/* Header */
header {
    background-color: #ca1016; /* Turbo.az qırmızısı */
    color: white;
    padding: 1rem 5%;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.highlight {
    font-weight: 300;
}

.btn-login {
    background: white;
    color: #ca1016;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

/* Main */
main {
    padding: 2rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    margin-bottom: 20px;
    color: #333;
}

/* Grid Sistemi */
.ads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

/* Elan Kartı */
.ad-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.2s;
    cursor: pointer;
}

.ad-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.ad-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.ad-content {
    padding: 15px;
}

.ad-price {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.ad-title {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

.ad-details {
    font-size: 14px;
    color: #888;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #eee;
    padding-top: 10px;
}