/* Genel Stil */
body {
    font-family: 'Roboto', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: linear-gradient(135deg, #ece9e6, #ffffff);
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}

/* Konteyner */
div {
    text-align: center;
    margin-bottom: 20px;
}

/* Logo */
.logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: logo-bounce 2s ;
    transition: transform 0.2s ease-in;
}

.logo:hover {
    transform: scale(1.1);
}

/* Başlık */
.name {
    font-size: 3em;
    font-family: Times New ROman;
    color: #333;
    margin: 10px 0;
    text-shadow: 2px 2px 0 gray;
    animation: text-fade-in 2s ease-in-out;
}

/* Açıklama */
.description {
    font-size: 1.5em;
    font-family: Courier;
    color: #666;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: text-fade-in 2s ease-in-out;
}

/* Linkler ve simgeler */
a {
    margin: 0 15px;
    display: inline-block;
    animation: icon-bounce 1s ease-in-out forwards;
    animation-delay: var(--delay);
    opacity: 0;
    transform: translateY(-100px);
    transition: transform 0.3s ease, opacity 0.3s ease, color 0.3s ease;
}

a:hover {
    transform: scale(1.1);
    opacity: 0.8;
    color: #007bff; /* Hover rengi */
}

a img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s ease;
}

a:hover img {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Animasyonlar */
@keyframes logo-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes text-fade-in {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes icon-bounce {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }
    50% {
        transform: translateY(10px);
        opacity: 1;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Medya Sorguları (Mobil Uyumluluk) */
@media (max-width: 600px) {
    .name {
        font-size: 2em;
    }
    
    .description {
        font-size: 1.2em;
    }
    
    .logo {
        width: 120px;
        height: 120px;
    }
    
    a img {
        width: 50px;
        height: 50px;
    }
}
