/* assets/css/style.css */

/* Modern Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: #334155; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-color); }


:root {
    --primary-color: #0f172a;
    --accent-color: #38bdf8; /* Cyan/Light Blue */
    --text-color: #cbd5e1;
    --bg-dark: #020617;
    --card-bg: #1e293b;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigasyon */
/* Glassmorphism Güçlendirme */
.navbar, .terminal-window, .service-card {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.nav-link:hover { color: var(--accent-color) !important; }

/* Hero & Terminal */
.hero-section {
    padding: 120px 0 80px;
    background: radial-gradient(circle at top right, #1e293b 0%, transparent 40%),
                radial-gradient(circle at bottom left, #0f172a 0%, transparent 40%);
}
/* Animasyonlu Gradient Text */
.hero-title {
    background-size: 200% auto;
    animation: shine 5s linear infinite;
}
.terminal-window {
    background: #1e1e1e;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid #333;
    font-family: 'JetBrains Mono', monospace;
}
.terminal-header { background: #2d2d2d; padding: 10px; display: flex; gap: 8px; }
.dot { width: 12px; height: 12px; border-radius: 50%; }
.red { background: #ff5f56; } .yellow { background: #ffbd2e; } .green { background: #27c93f; }
.terminal-body { padding: 20px; color: #d4d4d4; font-size: 0.9rem; }
.path { color: var(--accent-color); }
.command { color: #fff; }

/* Kartlar */
.service-card {
    background-color: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 30px;
    transition: 0.3s;
    height: 100%;
}
.service-card:hover { transform: translateY(-5px); border-color: var(--accent-color); }
.icon-box { font-size: 2rem; color: var(--accent-color); margin-bottom: 20px; }

/* Skill Badge */
.skill-badge {
    background: rgba(56, 189, 248, 0.1);
    color: var(--accent-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin: 5px;
    display: inline-block;
    border: 1px solid rgba(56, 189, 248, 0.2);
}
@keyframes shine {
    to { background-position: 200% center; }
}
/* İletişim Kutuları (Sol Taraf) */
.contact-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-box:hover {
    transform: translateX(10px); /* Sağa doğru kayma efekti */
    background: rgba(56, 189, 248, 0.1);
    border-color: var(--accent-color);
}

.icon-wrapper {
    width: 45px;
    height: 45px;
    background: rgba(56, 189, 248, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.2rem;
}

.text-small { font-size: 0.85rem; }

/* Sosyal Medya Butonları */
.social-btn {
    flex: 1;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}

.social-btn.github { background-color: #24292e; }
.social-btn.linkedin { background-color: #0077b5; }

.social-btn:hover {
    transform: translateY(-3px);
    opacity: 0.9;
    color: white;
}