/* Genel Ayarlar */
body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background-color: #f8f8f8;
    color: #333;
}

/* Başlık */
header {
    background-color: #111;
    color: #fff;
    padding: 20px;
    text-align: center;
}
header h1 {
    margin: 0;
    font-size: 28px;
}
header p {
    margin: 5px 0 0;
}

/* Hero Bölümü */
.hero {
    background: url('images/arac1.jpeg') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}
.hero h2 {
    font-size: 32px;
    margin-bottom: 10px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}
.hero p {
    font-size: 18px;
    margin-bottom: 20px;
}
.btn {
    background: #ffcc00;
    color: #000;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

/* Hizmetler */
.section {
    padding: 50px 20px;
    max-width: 1000px;
    margin: auto;
}
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.service {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.service h3 {
    color: #ffcc00;
}

/* Galeri */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    padding: 20px;
}
.gallery img {
    width: 100%;
    border-radius: 8px;
}

/* Alt Bilgi */
footer {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 20px;
}
footer a {
    color: #ffcc00;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h2 { font-size: 28px; }
    header h1 { font-size: 24px; }
}
