/* Genel Stil */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
    background-color: #f4f4f4;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

header {
    background: #fff;
    color: #333;
    padding-top: 10px;
    min-height: 70px;
    border-bottom: #007bff 3px solid;
}

header a {
    color: #333;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}

header ul {
    padding: 0;
    list-style: none;
}

header li {
    display: inline;
    padding: 0 20px 0 20px;
}

header #branding {
    float: left;
}

header #branding h1 {
    margin: 0;
}

header nav {
    float: right;
    margin-top: 10px;
}

/* Logo */
.logo {
    height: 50px;
    vertical-align: middle;
    margin-right: 10px;
}

/* Ana Sayfa Hero Alanı */
#hero {
    background: url('../images/ev-temizligi.jpg') no-repeat 0 -400px;
    background-size: cover;
    color: #fff;
    min-height: 400px;
    text-align: center;
    padding-top: 100px;
    position: relative;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

#hero h1, #hero p {
    position: relative;
    z-index: 1;
}

#hero h1 {
    margin-top: 0;
    font-size: 55px;
    margin-bottom: 10px;
}

#hero p {
    font-size: 20px;
}

.button_1 {
    height: 38px;
    background: #007bff;
    border: 0;
    padding: 0 20px;
    color: #fff;
    cursor: pointer;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    line-height: 38px;
    border-radius: 5px;
    margin-top: 20px;
}

/* Hizmetler Bölümü */
#services {
    padding: 20px 0;
    text-align: center;
}

#services .box {
    float: left;
    width: 30%;
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
}

#services .box img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

/* Footer */
footer {
    padding: 20px;
    margin-top: 20px;
    color: #fff;
    background-color: #333;
    text-align: center;
}

/* WhatsApp Butonu */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-float i {
    margin-top: 5px;
}

/* Diğer Sayfalar için Başlık */
#page-title {
    background: #007bff;
    color: #fff;
    padding: 20px 0;
    margin-bottom: 20px;
}

#page-title h1 {
    margin: 0;
}

/* İletişim Formu */
.contact-form input[type="text"], .contact-form input[type="email"], .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.contact-form button {
    display: block;
    width: 100%;
    padding: 10px;
    background: #007bff;
    color: #fff;
    border: 0;
    cursor: pointer;
}

/* S.S.S. */
.faq-item {
    background: #fff;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: #007bff;
    margin-top: 0;
}

/* Blog */
.blog-post {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.blog-post h2 a {
    color: #007bff;
}

/* Hizmet Detay Sayfaları */
.service-detail-content {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.service-detail-content img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 5px;
}

/* Responsive Tasarım */
@media(max-width: 768px) {
    header #branding,
    header nav,
    header nav li {
        float: none;
        text-align: center;
        width: 100%;
    }

    header nav ul {
        margin-top: 10px;
    }

    header nav li {
        display: block;
        padding: 5px 0;
    }

    #hero h1 {
        font-size: 40px;
    }

    #services .box {
        width: 100%;
        float: none;
        margin-bottom: 20px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}
