/* css/programlar.css - YAZILIM İNDİRME SAYFASI TASARIMI */

/* --- 1. HERO ALANI (Üst Kısım) --- */
.hero-section {
    padding: 160px 0 100px 0;
    background: linear-gradient(135deg, #e0fcfd 0%, #ffffff 100%);
    text-align: center;
    border-bottom: 1px solid rgba(58, 222, 228, 0.1);
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-section p {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- 2. PROGRAMLAR GRID --- */
.programs-section {
    padding: 100px 0;
    background-color: #fff;
}

.programs-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #111827;
    margin-bottom: 60px;
    font-weight: 800;
}

.programs-grid {
    display: grid;
    /* Kartların genişliğine göre otomatik sığdır */
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

/* --- 3. PROGRAM KARTI --- */
.program-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #f3f4f6;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); /* Yumuşak geçiş */
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* KART HOVER EFEKTİ (Yükselme) */
.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: #3ADEE4;
}

/* İKON TASARIMI */
.program-icon {
    width: 70px; height: 70px;
    background-color: #e0fcfd;
    color: #3ADEE4;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
    transition: 0.4s ease;
}

/* Karta gelince ikon dönsün */
.program-card:hover .program-icon {
    background-color: #3ADEE4;
    color: white;
    transform: rotateY(180deg);
}

.program-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1f2937;
    font-weight: 700;
}

.program-card p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 30px;
    flex-grow: 1; /* Açıklama uzasa da butonlar altta kalsın */
}

/* --- 4. BUTONLAR --- */
.download-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.btn-download {
    flex: 1;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

/* 32-Bit Butonu (Beyaz) */
.btn-32 {
    background-color: #fff;
    border-color: #e5e7eb;
    color: #4b5563;
}
.btn-32:hover {
    border-color: #3ADEE4;
    color: #3ADEE4;
    background-color: #f0fdfd;
}

/* 64-Bit Butonu (Renkli) */
.btn-64 {
    background: linear-gradient(to right, #3ADEE4, #2BBEC7);
    color: white;
    box-shadow: 0 4px 10px rgba(58, 222, 228, 0.3);
}
.btn-64:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(58, 222, 228, 0.4);
    color: white;
}

/* Detay Linki */
.detail-link {
    text-align: center;
    color: #9ca3af;
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
    display: block;
}
.detail-link:hover {
    color: #3ADEE4;
    letter-spacing: 0.5px;
}

/* --- 5. ÇOK YAKINDA MODU --- */
.program-card.coming-soon {
    opacity: 0.8;
    border-style: dashed;
}
.program-card.coming-soon .program-icon {
    background-color: #f3f4f6;
    color: #9ca3af;
}
.badge-soon {
    display: inline-block;
    padding: 8px 20px;
    background: #f3f4f6;
    color: #6b7280;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section h1 { font-size: 2.5rem; }
    .download-buttons { flex-direction: column; }
}