﻿body {
    
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

h1 {
    text-align: center;
    margin-top: 100px;
}

/* Social Bar */
.social-bar {
    position: fixed;
    top: 50%;
    left: 10px; /* Sol kenardan biraz içeride */
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 9999;
  
}

    .social-bar a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        border-radius: 50%; /* Yuvarlak ikon */
        color: white;
        text-decoration: none;
        font-size: 28px; /* Büyük ikon */
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        background-color: #333;
    }

        .social-bar a:hover {
            transform: scale(1.2);
            box-shadow: 0 6px 20px rgba(0,0,0,0.4);
            filter: brightness(1.2); /* Hafif parlaklık efekti */
        }

        /* Renkler */
        .social-bar a.fb {
            background: #3b5998;
        }

        .social-bar a.tw {
            background: #1da1f2;
        }

        .social-bar a.ig {
            background: #e4405f;
        }

        .social-bar a.ln {
            background: #0077b5;
        }
        .social-bar a.whatsapp {
            background: #25D366;
        }

        .social-bar a.map {
            background: #DB4437;
        }

  

        .social-bar a.mail {
            background: #EA4335;
        }


@media (max-width: 768px) {
    .social-bar {
        top: auto !important;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: row;
        gap: 15px;
    }

        .social-bar a {
            width: 50px;
            height: 50px;
            font-size: 22px;
        }
}