/*
Theme Name: Uğur Havalandırma
Author: Polat
Description: Uğur Havalandırma İçin Özel Tema
Version: 1.0
*/

/* --- Footer Genel Yapısı --- */
.site-footer {
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: #ffffff;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    padding-top: 60px;
    padding-bottom: 40px;
}

/* Arka planın üzerine koyu bir overlay atarak yazıların okunmasını sağlıyoruz */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 10, 18, 0.85); /* Görseldeki koyu ton */
    z-index: 1;
}

.footer-top, .footer-main {
    position: relative;
    z-index: 2; /* Overlay'in üstünde kalması için */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Üst Kısım (Sosyal Medya Metni & Form) --- */
.footer-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.footer-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-cta-text h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

/* Form Giriş Alanı ve Buton */
.footer-subscribe-form form {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 5px 5px 5px 20px;
    min-width: 400px;
}

.footer-subscribe-form input[type="text"] {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 14px;
    outline: none;
    width: 100%;
}

.footer-subscribe-form input[type="text"]::placeholder {
    color: #888;
}

.footer-subscribe-form .btn-submit {
    background-color: #e30613; /* Tasarımdaki canlı kırmızı */
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.footer-subscribe-form .btn-submit:hover {
    background-color: #bd050f;
}

/* --- Alt Kısım (Grid Menüler) --- */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-col h3 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
}

/* Başlıkların altındaki kırmızı çizgiler */
.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #e30613;
}

/* Hakkımızda Bölümü */
.footer-logo img {
    max-width: 180px;
    height: auto;
    margin-bottom: 20px;
}

.about-text {
    font-size: 13px;
    color: #b0b5bc;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Sosyal Medya İkonları */
.footer-social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
    background: #e30613;
    color: #fff;
}

/* Link Listeleri */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: #b0b5bc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-links li a:hover {
    color: #e30613;
}

/* Çalışma Saatleri */
.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 25px;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #b0b5bc;
    margin-bottom: 10px;
}

/* İletişim Butonu */
.btn-contact-footer {
    display: inline-block;
    background-color: #ffffff;
    color: #000000;
    font-weight: 600;
    padding: 10px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-contact-footer:hover {
    background-color: #e30613;
    color: #ffffff;
}

/* --- Responsive Ayarlar (Mobil Uyum) --- */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .footer-top-row {
        flex-direction: column;
        text-align: center;
    }
    .footer-subscribe-form form {
        min-width: 100%;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .site-footer {
        text-align: center;
    }
    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-social-icons {
        justify-content: center;
    }
    .hours-list li {
        justify-content: space-around;
    }
}