/*
Theme Name: Touryus Yamaç Paraşütü
Description: Özel HTML tasarımdan dinamik WordPress yapısına dönüştürülmüş tema.
Version: 1.0
Author: Touryus
*/

/* --- Alt Tarafa Çakılı 3'lü Butonların CSS Kodları --- */
.sticky-contact-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-wrap: nowrap; /* Asla alt alta inmesinler */
    z-index: 99999;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.15);
    background: #fff;
}

.sticky-btn {
    flex: 1 1 33.33%; /* Ekranı kusursuz olarak 3 eşit parçaya böler */
    padding: 14px 2px; /* Mobilde sığması için boşluklar optimize edildi */
    font-size: 15px; /* 3 buton için ideal metin boyutu */
    font-weight: 600;
    color: #ffffff !important;
    text-decoration: none;
    font-family: "Trebuchet MS", sans-serif;
    transition: background 0.3s ease;
    white-space: nowrap; /* Yazılar asla üst üste binmez veya alt satıra kaymaz */
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px; /* İkon ile metin arasındaki boşluk */
}

.sticky-btn i {
    font-size: 18px; /* İkonları biraz belirginleştirdik */
}

/* WhatsApp Butonu (Sol) */
.sticky-btn.whatsapp {
    background-color: #25D366;
}
.sticky-btn.whatsapp:hover {
    background-color: #1ebe57;
}

/* Rezervasyon Butonu (Orta - Kırmızı) */
.sticky-btn.reservation {
    background-color: #e63946 !important; /* Arka planı KESİNLİKLE kırmızı yap */
    color: #ffffff !important; /* Yazıyı KESİNLİKLE beyaz yap */
    border-left: 1px solid rgba(255,255,255,0.2); 
    border-right: 1px solid rgba(255,255,255,0.2);
}

.sticky-btn.reservation:hover {
    background-color: #d62828 !important; /* Üzerine gelince daha koyu kırmızı */
    color: #ffffff !important;
}

/* Arama Butonu (Sağ) */
.sticky-btn.call {
    background-color: #007bff;
}
.sticky-btn.call:hover {
    background-color: #0069d9;
}