﻿.popup {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
}

.popup__content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
}

.popup__close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

    .popup__close:hover,
    .popup__close:focus {
        color: #bbb;
        text-decoration: none;
        cursor: pointer;
    }





/* Sabit ikonlar için stil */
.fixed-icons {
    position: fixed;
    right: 10px;
    top: 72%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
    /* İkonları en üstte göstermek için yüksek bir z-index değeri */
}

    .fixed-icons a {
        display: block;
        width: 50px;
        height: 50px;
        background-color: #25D366;
        /* WhatsApp için yeşil renk */
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: background-color 0.3s ease;
    }

        .fixed-icons a.instagram-icon {
            background-color: #E4405F;
            /* Instagram için pembe renk */
        }

        .fixed-icons a.map-icon {
            background-color: #4285F4;
            /* Google Maps için mavi renk */
        }

        .fixed-icons a.phone-icon {
            background-color: #FFA500;
            /* Telefon araması için turuncu renk */
        }

        .fixed-icons a:hover {
            background-color: #128C7E;
            /* WhatsApp için daha koyu yeşil */
        }

        .fixed-icons a.instagram-icon:hover {
            background-color: #C13584;
            /* Instagram için daha koyu pembe */
        }

        .fixed-icons a.map-icon:hover {
            background-color: #357AE8;
            /* Google Maps için daha koyu mavi */
        }

        .fixed-icons a.phone-icon:hover {
            background-color: #E59400;
            /* Telefon araması için daha koyu turuncu */
        }

/* Diğer stil ayarları */
.logo-container .logo img {
    width: 140px;
    height: 90px;
}

@media (max-width: 768px) {
    .logo-container {
        text-align: center;
        margin-top: 20px;
    }

        .logo-container .logo img {
            width: auto;
            height: auto;
            max-width: 100%;
        }

        .logo-container.page-header__logo .logo img {
            /* Mobil görünümde page-header__logo sınıfı için stil */
        }
}
