/* Google Fonts Entegresi */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #10b981;
    --text-dark: #1f2937;
    --bg-light: #f3f4f6;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    margin: 0;
    overflow-x: hidden;
}

/* Navbar Düzenlemesi */
.navbar {
    z-index: 1000;
    padding-top: 20px;
}

/* Hero Section - Üst Üste Binmeyi Önleyen Yapı */
.hero-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: white;
    padding: 160px 0 120px 0; /* İç boşlukları artırarak metni yukarı aldık */
    text-align: center;
    position: relative;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

/* Sorgulama Kutusu - Tam Konumlandırma */
.search-container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    position: relative;
    z-index: 20; /* Yazının kesinlikle üstünde olmasını sağlar */
    margin-top: -80px; /* Hero alanının üzerine taşma miktarı */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(0,0,0,0.05);
}

.search-container h4 {
    color: var(--text-dark);
    font-weight: 700;
}

/* Form Elemanları */
.form-control-lg {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 15px 20px;
}

.form-control-lg:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

/* Butonlar */
.btn-main {
    background-color: var(--accent-color);
    color: white;
    border-radius: 12px;
    padding: 15px;
    font-weight: 700;
    border: none;
    transition: all 0.3s ease;
}

.btn-main:hover {
    background-color: #059669;
    transform: scale(1.02);
}

/* Kurs Kartları */
.course-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    height: 100%;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0,0,0,0.1);
}

.course-img {
    height: 180px;
    background: #2c3e50;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    text-align: center;
    padding: 20px;
}

footer {
    background: #111827;
    color: #9ca3af;
}
/* Yeni Buton Renkleri */
.steamid {
    background: linear-gradient(45deg, #171a21, #66c0f4);
    border-color: #66c0f4;
}
.steamid:hover {
    box-shadow: 0 0 15px rgba(102, 192, 244, 0.4);
}

.discord {
    background: linear-gradient(45deg, #5865F2, #4752C4);
}
.discord:hover {
    box-shadow: 0 0 15px rgba(88, 101, 242, 0.4);
}

/* Araçlar bölümünün taşmaması için scroll ekleyelim */
.chat-container {
    height: 650px; /* Yüksekliği biraz artırdık */
}