/* GENEL AYARLAR */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Arial, Helvetica, sans-serif; background-color: #111; color: #fff; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
.container { width: 90%; max-width: 1200px; margin: auto; }

/* HEADER */
.header { background: #000; padding: 15px 0; border-bottom: 1px solid #222; }
.header-ic { width: 90%; max-width: 1200px; margin: auto; display: flex; justify-content: space-between; align-items: center; }
.logo-area { display: flex; align-items: center; gap: 15px; }
.site-logo img { width: 55px; height: 55px; object-fit: contain; }
.logo-text h1 { font-size: 22px; margin-bottom: 3px; font-weight: bold; }
.logo-text span { font-size: 12px; color: #aaa; }
.menu { display: flex; gap: 25px; align-items: center; }
.menu a { font-size: 14px; color: #ddd; transition: 0.3s; }
.menu a:hover { color: #f7df1e; }
.ilan-btn { background: #f7df1e; color: #000 !important; padding: 8px 14px; border-radius: 5px; font-weight: bold; transition: 0.3s; }
.ilan-btn:hover { background: #ffd000; }

/* HERO */
.hero { background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../uploads/hero.jpg') center/cover no-repeat; padding: 100px 20px; text-align: center; }
.hero h2 { font-size: 36px; margin-bottom: 15px; }
.hero p { font-size: 16px; color: #ccc; }

/* ARAÇ KARTLARI */
.araclar { padding: 60px 0; }
.arac-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
.arac-kart { background: #1a1a1a; border-radius: 8px; overflow: hidden; transition: 0.3s; border: 1px solid #222; }
.arac-kart:hover { transform: translateY(-5px); border-color: #f7df1e; }
.arac-kart img { width: 100%; height: 200px; object-fit: cover; }
.arac-bilgi { padding: 15px; }
.arac-bilgi h3 { font-size: 18px; margin-bottom: 8px; }
.arac-bilgi p { font-size: 14px; color: #aaa; }
.fiyat { margin-top: 10px; font-weight: bold; color: #f7df1e; }

/* FOOTER */
.footer { background: #000; padding: 20px; text-align: center; font-size: 13px; border-top: 1px solid #222; margin-top: 60px; }

/* SOSYAL BAR */
.social-bar { position: fixed; bottom: 20px; right: 20px; display: flex; flex-direction: column; gap: 12px; z-index: 9999; }
.social-bar a { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 20px; transition: 0.3s; }
.social-bar a:hover { transform: scale(1.1); opacity: 0.9; }
.social-bar a.instagram { background: #E1306C; }
.social-bar a.facebook  { background: #1877F2; }
.social-bar a.youtube   { background: #FF0000; }
.social-bar a.whatsapp  { background: #25D366; }
.social-bar a.phone     { background: #0A9396; }
.social-bar a.email     { background: #FFB703; }

/* İLAN EKLE FORMU */
.sayfa-baslik { font-size: 24px; margin-bottom: 10px; color: #f7df1e; }
.sayfa-aciklama { margin-bottom: 20px; color: #ccc; font-size: 14px; }

.ilan-form {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #222;
    box-shadow: 0 0 15px rgba(247, 223, 30, 0.2);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.ilan-form .form-grup {
    display: flex;
    flex-direction: column;
}

.ilan-form label {
    margin-bottom: 6px;
    font-weight: bold;
    color: #ddd;
}

.ilan-form input,
.ilan-form select,
.ilan-form textarea {
    padding: 10px;
    border: 1px solid #444;
    border-radius: 5px;
    background: #222;
    color: #fff;
    font-size: 14px;
}

.ilan-form textarea {
    min-height: 100px;
    resize: vertical;
}

.ilan-form input[type="url"] {
    margin-top: 8px;
}

/* BUTON */
.btn-gonder {
    margin-top: 20px;
    background: #f7df1e;
    color: #111;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-gonder:hover { background: #ffd000; color: #000; }

/* MOBİL UYUM */
@media (max-width: 768px) {
    .header-ic { flex-direction: column; gap: 15px; }
    .menu { flex-wrap: wrap; justify-content: center; gap: 15px; }
    .hero h2 { font-size: 24px; }
    .social-bar a { width: 42px; height: 42px; font-size: 18px; }
    .form-grid { grid-template-columns: 1fr; }
    .btn-gonder { width: 100%; justify-content: center; font-size: 15px; padding: 14px; }
}