/* --- TEMEL AYARLAR --- */
body { margin: 0; padding: 0; font-family: 'Arial', sans-serif; background-color: #fdfaf6; color: #5d4037; }

/* Header & Menu Düzenlemesi */
.main-header { background: white; padding: 15px 5%; border-bottom: 5px solid #b3e5fc; }
.header-container { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; }

/* Logo Güncellemesi */
.logo img { max-width: 150px; height: auto; display: block; }

/* --- İLETİŞİM BİLGİLERİ --- */
.iletisim-bilgi { text-align: right; font-size: 16px; font-weight: bold; padding: 10px 20px; border-radius: 15px; background: linear-gradient(90deg, #ffcdd2, #c8e6c9, #b3e5fc, #fff9c4); color: #5d4037; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
.iletisim-bilgi p { margin: 5px 0; }

/* --- MENÜ VE BUTON RENKLERİ --- */
.menu-toggle { display: none; background: #f8bbd0; color: #5d4037; font-size: 30px; padding: 10px; cursor: pointer; text-align: center; width: 100%; }
.ana-menu { background-color: #f8bbd0; padding: 10px 0; text-align: center; } 
.ana-menu ul { 
    list-style: none; 
    margin: 0; 
    padding: 0; 
    display: flex; 
    justify-content: center; 
    flex-wrap: wrap; 
}
.ana-menu ul li { margin: 0 5px; position: relative; }
.ana-menu ul li a { color: #5d4037; text-decoration: none; font-weight: bold; padding: 10px 8px; display: block; font-size: 14px; }
.ana-menu ul li a:hover { color: #ffffff; background: #b3e5fc; border-radius: 5px; }

/* --- GÜNCELLENMİŞ BANNER --- */
.banner { 
    width: 100%; 
    height: 350px; 
    background-image: url('../images/lionesspet.png'); 
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
    margin-bottom: 20px; 
    display: flex; 
    align-items: center; 
    justify-content: center;
}

/* Bölümler */
section { background: white; max-width: 95%; margin: 15px auto; padding: 25px; border-radius: 15px; box-shadow: 0 4px 10px rgba(0,0,0,0.03); }
section h2, section h3 { margin-top: 0; color: #d81b60; font-size: 24px; border-left: 5px solid #fff9c4; padding-left: 10px; }

/* Galeri & SSS */
.galeri-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; padding: 10px; }
.galeri-item img { width: 100%; height: 300px; object-fit: cover; border-radius: 15px; box-shadow: 0 4px 8px rgba(0,0,0,0.1); transition: transform 0.3s ease; }

/* --- RANDEVU BUTONLARI --- */
.randevu-btn { display: inline-block; background: #d81b60; color: #ffffff !important; padding: 15px 30px; border-radius: 30px; text-decoration: none; font-weight: bold; font-size: 1.1em; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(216, 27, 96, 0.3); border: none; cursor: pointer; }
.randevu-btn:hover { background: #ad1457; transform: translateY(-3px); }

/* WhatsApp Butonu: Sol altta, arama butonunun üstünde */
.whatsapp-btn { 
    position: fixed; 
    bottom: 110px; 
    left: 30px; 
    z-index: 1000; 
    transition: transform 0.3s; 
}
.whatsapp-btn:hover { transform: scale(1.1); }
.whatsapp-btn img { width: 65px; height: 65px; border-radius: 50%; box-shadow: 0 6px 15px rgba(0,0,0,0.3); }

/* Arama Butonu: Sol altta, en dipte */
.tel-container { 
    position: fixed; 
    bottom: 30px; 
    left: 30px; 
    z-index: 1000; 
}
.tel-link { 
    background-color: #25d366; 
    color: white !important; 
    padding: 15px 25px; 
    border-radius: 30px; 
    font-weight: bold; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.2); 
    text-decoration: none; 
}

/* --- MOBİL --- */
@media only screen and (max-width: 768px) {
    .header-container { flex-direction: column; text-align: center; }
    .iletisim-bilgi { text-align: center; margin-top: 15px; font-size: 14px; background: #fce4ec; }
    .menu-toggle { display: block; }
    .ana-menu { display: none; width: 100%; }
    .ana-menu ul { display: block; }
    .ana-menu ul li { display: block; width: 100%; }
    .banner { height: 180px; }
    .tel-container .tel-link { font-size: 16px !important; }
}

.instagram-box { display: flex; justify-content: center; align-items: center; width: 150px; }
.header-instagram { display: flex; align-items: center; gap: 8px; text-decoration: none; color: #5d4037; font-weight: bold; font-size: 13px; }
.header-instagram img { width: 30px; height: 30px; transition: transform 0.3s; }
.header-instagram:hover img { transform: scale(1.1); }