/* --- Genel Ayarlar --- */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #4a0e0e; /* Yazılar koyu bordo */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    
    /* DALGALANMA: Beyaz ve Belirgin Bordo Arasında Dinamik Geçiş */
    background: linear-gradient(-45deg, #ffffff, #800020, #ffffff, #4a0e0e);
    background-size: 400% 400%;
    animation: gradientAnimation 10s ease infinite;
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* --- Konteyner Tasarımı --- */
.container { 
    width: 90%;
    max-width: 400px;
    padding: 40px 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.5); /* Arka plan geçişini yumuşatır */
    border-radius: 25px;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(128, 0, 32, 0.1);
}

/* --- Profil Ayarları --- */
.profile-img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #800020; /* Rektörlük makamı ağırlığı için bordo çerçeve */
    box-shadow: 0 10px 25px rgba(128, 0, 32, 0.2);
    margin-bottom: 20px;
}

h1 {
    font-size: 1.5rem;
    color: #4a0e0e;
    margin: 0 0 5px 0;
    font-weight: 800;
}

header p {
    font-size: 1rem;
    color: #800020;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

/* --- Butonlar --- */
.links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 16px;
    border-radius: 15px;
    text-decoration: none;
    color: #4a0e0e;
    font-weight: 600;
    border: 1.5px solid #800020;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 12px;
    transition: all 0.3s ease;
}

.link-card:hover {
    background: #800020;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(128, 0, 32, 0.2);
}

/* Hover durumunda ikonların beyaz olması */
.link-card:hover i {
    color: #ffffff !important;
}

/* --- İkon Renkleri --- */
.instagram i { color: #E1306C; }
.linkedin i { color: #0077B5; }
.twitter i { color: #000000; }
.whatsapp i { color: #25D366; }
.mail i, .website i, .highlight i, .vcard i { color: #800020; }

/* --- Alt Bilgi --- */
footer {
    margin-top: 40px;
    font-size: 0.75rem;
    color: #4a0e0e;
    opacity: 0.8;
}