/* RESET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0f172a;
    color: #e2e8f0;
    overflow: hidden;
    position: relative;
}

/* ARKA PLAN GRADIENT LAYER */

body::before {
    content: "";
    position: fixed;
    top: -20%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37,99,235,0.25), transparent 70%);
    z-index: -2;
    filter: blur(120px);
}

/* CANVAS */

canvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

/* WRAPPER */

.wrapper {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* HERO */

.hero {
    text-align: center;
    max-width: 700px;
}

/* PROFIL FOTO */

.profile img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 30px;
    border: 2px solid rgba(37,99,235,0.4);
    box-shadow: 0 0 40px rgba(37,99,235,0.5);
    transition: 0.4s ease;
}

.profile img:hover {
    transform: scale(1.05);
}

/* BAŞLIK */

.hero h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.hero h2 {
    font-size: 20px;
    font-weight: 500;
    color: #2563eb;
    margin-bottom: 24px;
}

/* AÇIKLAMA */

.description {
    font-size: 16px;
    color: #94a3b8;
    margin-bottom: 40px;
    line-height: 1.7;
}

/* SOSYAL ALAN */

.socials {
    display: flex;
    justify-content: center;
    gap: 22px;
    margin-bottom: 30px;
}

/* İKON STİLİ */

.socials a {
    width: 42px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(8px);
    transition: 0.3s ease;
    color: #94a3b8; /* SVG rengi buradan gelir */
}

.socials a svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
}

.socials a:hover {
    background: rgba(37,99,235,0.15);
    color: #2563eb;
    transform: translateY(-4px);
    box-shadow: 0 0 20px rgba(37,99,235,0.4);
}

/* MAIL */

.mail-description {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 10px;
}

.mail {
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    color: #2563eb;
    transition: 0.3s ease;
}

.mail:hover {
    opacity: 0.8;
}

/* RESPONSIVE */

@media (max-width: 768px) {

    .hero h1 {
        font-size: 32px;
    }

    .profile img {
        width: 130px;
        height: 130px;
    }

}

.language-switcher {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    color: #94a3b8;
    padding: 8px 12px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    transition: 0.3s ease;
}

.lang-btn img {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    object-fit: cover;
}

.lang-btn:hover,
.lang-btn.active {
    color: #2563eb;
    background: rgba(37,99,235,0.15);
    box-shadow: 0 0 18px rgba(37,99,235,0.25);
}