/* /assets/css/style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f9fafb;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2563eb;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    gap: 20px;
}

.nav-menu a {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
}

.nav-menu a:hover {
    color: #2563eb;
}

/* Hero */
.hero {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e6f2ff 100%);
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.hero h1 span {
    color: #2563eb;
}

.hero p {
    font-size: 1.2rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

/* Upload Area */
.upload-area {
    border: 3px dashed #2563eb;
    border-radius: 16px;
    background: rgba(37, 99, 235, 0.05);
    padding: 40px 20px;
    margin: 30px auto;
    max-width: 600px;
    cursor: pointer;
    transition: background 0.3s;
}

.upload-area.dragover {
    background: rgba(37, 99, 235, 0.1);
    border-color: #1d4ed8;
}

.upload-content {
    text-align: center;
}

.upload-content p {
    font-size: 1.2rem;
    margin: 15px 0 5px;
}

.browse-text {
    color: #2563eb;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
}

.upload-content small {
    color: #6b7280;
}

/* Quick Actions */
.quick-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 30px 0;
}

.quick-btn {
    background: #2563eb;
    color: white;
    padding: 12px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.quick-btn:hover {
    background: #1d4ed8;
}

/* Reklam Alanları */
.reklam-alani {
    margin: 30px 0;
    padding: 15px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    text-align: center;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Popüler Araçlar */
.popular-tools,
.how-it-works {
    padding: 60px 0;
    background: white;
}

.popular-tools h2,
.how-it-works h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: #1e293b;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.tool-card {
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    color: #1e293b;
    font-weight: 500;
    border: 1px solid #e2e8f0;
    transition: transform 0.2s, box-shadow 0.2s;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

/* Nasıl Çalışır */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #2563eb;
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step h3 {
    margin-bottom: 10px;
    color: #1e293b;
}

/* Footer */
.site-footer {
    background: #1e293b;
    color: #cbd5e1;
    padding: 40px 0;
    margin-top: 60px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    margin-right: 20px;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    font-size: 0.9rem;
}

/* İşlem Sayfası */
.islem-sayfasi {
    padding: 40px 0;
}

.islem-sayfasi h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #1e293b;
}

.islem-aciklama {
    color: #4b5563;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.islem-options {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 30px 0;
}

.option-group {
    margin-bottom: 20px;
}

.option-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.option-group input[type="number"],
.option-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 1rem;
}

.option-group input[type="range"] {
    width: 100%;
    margin: 10px 0;
}

.btn-primary {
    background: #2563eb;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #1d4ed8;
}

.sonuc {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 30px 0;
}

.onizleme-alani {
    text-align: center;
    margin: 20px 0;
}

.onizleme-alani img {
    max-width: 100%;
    max-height: 400px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-indir {
    display: inline-block;
    background: #10b981;
    color: white;
    padding: 12px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-indir:hover {
    background: #059669;
}

.ilgili-araclar {
    margin: 40px 0;
}

.ilgili-araclar h3 {
    margin-bottom: 20px;
}

.info-metin {
    background: #f8fafc;
    padding: 30px;
    border-radius: 8px;
    border-left: 5px solid #2563eb;
    margin-top: 40px;
}

.info-metin h3 {
    margin-bottom: 15px;
    color: #1e293b;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .quick-actions {
        flex-direction: column;
        align-items: center;
    }

    .quick-btn {
        width: 100%;
        text-align: center;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
    body {
        background: #0f172a;
        color: #e2e8f0;
    }

    .site-header,
    .popular-tools,
    .how-it-works,
    .islem-options,
    .sonuc,
    .info-metin {
        background: #1e293b;
        color: #e2e8f0;
    }

    .tool-card {
        background: #334155;
        border-color: #475569;
        color: #e2e8f0;
    }

    .upload-area {
        background: #1e293b;
        border-color: #3b82f6;
    }

    .hero {
        background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    }

    .hero h1,
    .hero p {
        color: #e2e8f0;
    }
}