/* Genel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: url('https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?q=80&w=2000') no-repeat center center fixed;
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8); /* Koyu arka plan efekti */
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
    max-width: 800px;
}

/* Başlık Alanı */
header h1 {
    font-size: 3rem;
    letter-spacing: 2px;
    color: #97863e; /* Fren lambası kırmızısı */
    margin-bottom: 10px;
}
header h2 {
    font-size: 3rem;
    letter-spacing: 2px;
    color: #ffff; /* Fren lambası kırmızısı */
    margin-bottom: 10px;
}

.divider {
    height: 4px;
    width: 80px;
    background-color: #343A40;
    margin: 0 auto 30px;
}

/* İçerik */
main h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 300;
}

main p {
    font-size: 1.1rem;
    color: #bdc3c7;
    margin-bottom: 40px;
}

/* İletişim Kartları */
.contact-info {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #97863e;
    min-width: 200px;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    background: rgba(231, 76, 60, 0.1);
}

.contact-card i {
    font-size: 1.5rem;
    color: #97863e;
    margin-bottom: 10px;
}

.contact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-card a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

/* Footer */
footer p {
    font-size: 0.9rem;
    color: #7f8c8d;
}

/* Mobil Uyumluluk */
@media (max-width: 600px) {
    header h1 { font-size: 2rem; }
    .contact-info { flex-direction: column; align-items: center; }
    .contact-card { width: 100%; }
}