
/* DEĞİŞKEN TANIMLAMAMIZI SAĞLAR. İÇERİSİNDE RENK, YÜKSEKLİK, FONT SİZE GİBİ DEĞİŞKEN DEĞERLERİ TANIMLAYIP BİRDEN FAZLA NOKTADA DEFALARCA KEX TUTARLI OLARAK KULLANMAMIZI SAĞLAR.*/
:root {
    --brand-color: #2563eb;
    --brand-dark: #1d4ed8;
    --text-main: #1f2937;
    --text-muted: #6b7280;
    --bg-light: #f3f4f6;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* 1. ÖN YÜZ ÜST MENÜ (NAVBAR) */
.front-navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-main);
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.5px;
}

.brand-logo i {
    color: var(--brand-color);
    font-size: 1.5rem;
}

/* 2. KAHRAMAN ALANI (HERO SECTION) */
.hero-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%); /*Doğrusal olarak bir renkten başka bir renge geçiş sağlar.*/
    text-align: center;
    border-bottom: 1px solid #bfdbfe;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 1rem;
    letter-spacing: -1px; /* Harfler arası boşluk Örneğin: M E R H A B A*/
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #3b82f6;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* 3. KURS VİTRİN KARTLARI */
.course-showcase-section {
    padding: 5rem 0;
}

.showcase-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    background-color: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.showcase-card:hover {
    transform: translateY(-8px); /*translateY(-8px): Elemenı 8px yukarı taşır. Negatif yani '-' li bir değer kullanırsak element yukarı çıkar, eğer pozitif bir değer kullanırsak element aşağıya doğru iner. translateY: Aşağı-yukarı hareket ettirir elementi, translateX: sağa-sola hareket ettirir elementi.*/
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #93c5fd;
}

.course-icon {
    width: 60px;
    height: 60px;
    background-color: #eff6ff;
    color: var(--brand-color);
    border-radius: 12px;
    display: flex; /*Elemenları Yan Yana Hizalar*/
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.course-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* 4. FOOTER */
.front-footer {
    margin-top: auto;
    background-color: #111827;
    color: #fff;
    padding: 3rem 0;
    text-align: center;
}
