/* İletişim sayfası stili */
.contact {
    padding: 60px 20px;
    background-color: #f7f7f7;
    text-align: center;
}

.contact .container {
    max-width: 800px;
    margin: 0 auto;
}

.contact h2 {
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 40px;
}

.contact-info {
    display: flex;
    justify-content: space-around;
    margin-bottom: 40px;
    text-align: left;
    flex-wrap: wrap; /* Mobilde hizalama bozulmaması için */
}

.contact-info div {
    flex: 1;
    margin: 0 10px;
    text-align: center;
}

.contact-info i {
    font-size: 1.5rem;
    color: #8B4513;
    margin-right: 10px;
}

.contact-info p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Google Maps stil */
.map-container {
    text-align: center;
    margin-top: 40px;
}

.map-container iframe {
    width: 100%;
    max-width: 800px;
    height: 450px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* WhatsApp butonu */
.custom-whatsapp-button {
    display: inline-flex;
    align-items: center;
    background-color: #25D366;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    max-width: 200px;
}

.custom-whatsapp-button i {
    margin-right: 8px;
    font-size: 20px;
}

.custom-whatsapp-button:hover {
    background-color: #1DA851;
}

/* Mobil için medya sorgusu */
@media (max-width: 768px) {
    .contact h2 {
        font-size: 2rem; /* Başlık boyutu küçültüldü */
    }

    .contact-info {
        flex-direction: column; /* Dikey hizalama */
        align-items: center;
    }

    .contact-info div {
        margin: 20px 0; /* Üst-alt boşluk eklendi */
        width: 100%;
        max-width: 300px; /* İletişim bilgileri kutuları genişletildi */
    }

    .custom-whatsapp-button {
        width: 100%; /* Buton genişliği mobilde tamamına yayıldı */
        max-width: 300px;
        font-size: 14px;
        padding: 8px 12px;
    }
}

/* Daha küçük ekranlar için medya sorgusu */
@media (max-width: 480px) {
    .contact h2 {
        font-size: 1.8rem;
    }

    .contact-info p {
        font-size: 0.9rem; /* Metin boyutları küçültüldü */
    }

    .custom-whatsapp-button {
        font-size: 14px;
        padding: 8px 12px;
    }

    .map-container iframe {
        height: 350px; /* Harita yüksekliği küçültüldü */
    }
}
