


@charset "UTF-8";





/* Genel Gövde */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-image: url('arka-plan.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: #000;
}

/* Sayfa içeriğini okunabilir yapmak için zemin */
main, header, footer {
    background-color: rgba(255, 255, 255, 0.92);
    padding: 20px;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 1200px;
}

/* Logo */
.logo img {
    max-width: 200px;
    height: auto;
}

/* Menü */
nav.menu {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
    flex-wrap: wrap;
}

nav.menu a {
    text-decoration: none;
    color: #003366;
    font-weight: bold;
    padding: 10px;
    transition: background 0.3s ease;
}

nav.menu a:hover {
    background-color: #f0f0f0;
    border-radius: 5px;
}

/* Başlıklar */
h1, h2, h3 {
    color: #003366;
}

/* Hizmetler Listesi */
ul {
    padding-left: 20px;
}

/* İletişim Formu */
form input, form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    background-color: #003366;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

form button:hover {
    background-color: #0055aa;
}

/* Harita */
.harita iframe {
    width: 100%;
    height: 180px;
    border: 0;
    border-radius: 10px;
}

/* WhatsApp Butonu Sağ Altta */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    background-color: #25D366;
    color: white;
    font-size: 48px;
    text-align: center;
    line-height: 80px;
    border-radius: 50%;
    z-index: 1000;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
    text-decoration: none;
    transition: transform 0.2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Footer */
footer {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    color: #333;
}
