* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: url('IMG_6402.jpg') no-repeat center center fixed;
    background-size: cover;
    background-color: #1a1a1a; /* Siyaha yakın koyu gri */
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    color: white;
    overflow-x: hidden; /* Yatay kaydırmayı engeller */
}

.container {
    text-align: center;
    color: white;
}

.top-title {
    font-size: clamp(2rem, 5vw, 6rem); /* Dinamik font boyutu */
    position: fixed; /* Sabit konum */
    top: 10px; /* Sayfanın üstünden 10px boşluk */
    left: 50%; /* Ortalamak için */
    transform: translateX(-50%); /* Gerçek ortalama */
    font-family: 'Montserrat', sans-serif; /* Modern ve okunaklı font */
    color: #f5b041; /* Altın-turuncu renk */
    white-space: nowrap; /* Alt satıra geçmeyi önler */
    text-align: center; /* Ortalamayı sağlar */
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8); /* Gölge efekti */
    letter-spacing: 0.02em; /* Daha dar harf aralığı */
}

.social-media-buttons {
    position: fixed; /* Sabit konum */
    bottom: 20px; /* Alt kenara olan mesafe */
    left: 20px; /* Sol kenara olan mesafe */
    display: flex;
    gap: 15px; /* Butonlar arasındaki boşluk */
}

.social-button img, .contact-button img {
    width: clamp(60px, 10vw, 90px); /* Dinamik buton boyutu */
    height: clamp(60px, 10vw, 90px);
    transition: transform 0.2s; /* Gölgesiz hover efekti */
}

.social-button img:hover, .contact-button img:hover {
    transform: scale(1.2); /* Hover sırasında büyüme efekti */
}

.contact-button {
    position: fixed; /* Sabit konum */
    bottom: 20px; /* Alt kenara olan mesafe */
    right: 20px; /* Sağ kenara olan mesafe */
}

/* Responsive Design for Mobile Devices */
@media (max-width: 768px) {
    .top-title {
        font-size: 1.5rem; /* Daha küçük ekranlar için */
    }

    .social-media-buttons {
        flex-direction: row; /* Düğmeleri yatay sırala */
        justify-content: flex-start;
    }
}

/* Responsive Design for Tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    .social-media-buttons {
        flex-direction: row;
        justify-content: flex-start;
        gap: 20px; /* Orta düzey boşluk */
    }
}
