/* --- style.css veya style2.css (TÜM KODLAR) --- */

/* 1. GENEL AYARLAR */
:root {
    --bg-color: #f3f6fc;
    --card-bg: rgba(255, 255, 255, 0.90);
    --text-main: #0f172a;
    --text-muted: #64748b;
    --whatsapp-color: #25D366;
    --border-color: #e2e8f0;
    --primary: #2563eb;
    --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 60px 20px;
    
    /* YENİ EKLENEN KOD: Yatay kaydırmayı engeller */
    overflow-x: hidden; 
}

/* 2. WRAPPER (Tüm içeriği saran kutu) */
.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 600px;
    gap: 30px; /* Kart ile alttaki projeler arasındaki boşluk */
}

/* 3. ARKA PLAN EFEKTLERİ */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    z-index: -1;
    opacity: 0.6;
    animation: float 10s infinite alternate ease-in-out;
}
.orb-1 { width: 500px; height: 500px; background: #dbeafe; top: 0; left: 0; }
.orb-2 { width: 450px; height: 450px; background: #ede9fe; bottom: 0; right: 0; animation-delay: -3s; }

@keyframes float {
    0% { transform: translate(0, 0); }
    100% { transform: translate(30px, 40px); }
}

/* 4. ANA KART TASARIMI */
.main-card {
    width: 100%;
    background: var(--card-bg);
    border: 1px solid #fff;
    padding: 50px;
    border-radius: 24px;
    text-align: center;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
}

.logo-container { margin-bottom: 30px; display: flex; justify-content: center; }
.logo-img { height: 60px; width: auto; object-fit: contain; }

.status-badge {
    display: inline-block;
    padding: 6px 14px;
    background: #eff6ff;
    color: var(--primary);
    border: 1px solid #dbeafe;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

h1 { font-size: 2.2rem; margin-bottom: 15px; color: var(--text-main); font-weight: 800; letter-spacing: -0.5px; }
p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.6; margin-bottom: 30px; }
p strong { color: var(--text-main); font-weight: 600; }

/* 5. BUTONLAR */
.action-buttons { display: flex; gap: 15px; justify-content: center; }
.btn { padding: 14px 24px; border-radius: 12px; font-weight: 600; text-decoration: none; transition: all 0.3s ease; font-size: 0.95rem; display: flex; align-items: center; justify-content: center; gap: 8px; }
.btn i { font-size: 1.1rem; }

.btn-whatsapp { background-color: var(--whatsapp-color); color: white; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2); }
.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3); }

.btn-mail { background-color: white; color: var(--text-muted); border: 1px solid var(--border-color); }
.btn-mail:hover { background-color: #f8fafc; color: var(--text-main); border-color: #cbd5e1; transform: translateY(-3px); }

/* Footer Linkleri */
.footer-links { margin-top: 40px; padding-top: 25px; border-top: 1px solid var(--border-color); display: flex; justify-content: center; gap: 20px; }
.footer-links a { color: #94a3b8; text-decoration: none; font-size: 0.85rem; font-weight: 500; transition: 0.2s; }
.footer-links a:hover { color: var(--primary); }


/* 6. PROJELER BÖLÜMÜ (Senin eksik olan kısmın burası) */
.projects-section {
    width: 100%;
    text-align: center;
}

.projects-section h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 20px;
    letter-spacing: 1.5px;
    font-weight: 700;
    opacity: 0.8;
}

.projects-grid {
    display: flex;
    flex-direction: column; /* Alt alta dizilsin */
    gap: 15px;
}

/* Kart Görünümü */
.project-item {
    background: #fff;
    border: 1px solid white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 15px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.project-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* İkon Kutusu */
.project-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

/* İkon Renkleri (HTML'deki class isimleriyle aynı olmalı) */
.qr-style2 { background: #dcfce7; color: #16a34a; }
.app-style2 { background: #e0e7ff; color: #4f46e5; }
.web-style2 { background: #ffedd5; color: #ea580c; }

.project-info {
    flex-grow: 1;
    text-align: left;
}

.project-info h4 {
    color: var(--text-main);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.project-info span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.project-arrow {
    color: #cbd5e1;
    transition: 0.3s;
}

.project-item:hover .project-arrow {
    color: var(--primary);
    transform: translateX(5px);
}

/* MOBİL AYARLAR */
@media (max-width: 768px) {
    .main-card { padding: 30px 20px; }
    .action-buttons { flex-direction: column; }
    .btn { width: 100%; }
}