/**
 * Theme Name: Rey Child
 * Theme URI: http://reytheme.com/
 * Description: This is a child theme of Rey.
 * Author: Marius H.
 * Author URI:  https://twitter.com/mariushoria
 * Template: rey
 * Version: 1.0.0
 * License: General Public License
 * License URI: http://www.gnu.org/licenses/gpl.html
 * Text Domain: rey-child
 */
/* Sticky Baloncuklar */
#sticky-bubbles {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
    transition: opacity 0.3s ease, transform 0.3s ease; /* Yumuşak geçiş ekleniyor */
    opacity: 1; /* Başlangıçta tam opak */
    transform: translateY(0); /* Başlangıçta normal pozisyonda */
}

#sticky-bubbles.hidden {
    opacity: 0; /* Gizli hale gelir */
    transform: translateY(20px); /* Hafifçe aşağı kayar */
    pointer-events: none; /* Tıklanamaz yapar */
}

.bubble {
    width: 60px;
    height: 60px;
    border-radius: 30px; /* Kenar yuvarlaklığı */
    background-color: #5F8F66; /* Arka plan rengi */
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    border: none;
    overflow: hidden;
    opacity: 0.5; 
    transition: transform 0.2s ease, opacity 0.3s ease; /* Hover için geçiş efekti */
}

.bubble:hover {
    transform: scale(1.1); /* Hoverda baloncuk büyür */
    opacity: 1; /* Hoverda tam opaklık */
}

.bubble img {
    width: 36px;
    height: 36px;
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

#mail-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
}

#popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

#popup-content {
    position: relative;
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 400px;
    max-width: 90%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#close-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

.wpcf7-submit {
    background-color: #5F8F66;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s ease; /* Hover için geçiş efekti */
    position: relative;
}

.wpcf7-submit:hover {
    text-decoration: underline; /* Hoverda alt çizgi ekler */
    text-decoration-thickness: 3px; /* Alt çizgiyi kalınlaştır */
    text-decoration-offset: 5px; /* Alt çizgi ile yazı arasına offset (boşluk) ekler */
}

@media (max-width: 768px) {
    #sticky-bubbles {
        display: none;
    }
}



