/* Ana Sayfa Özel Stilleri */

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 2rem;
    gap: 2rem;
    background: var(--surface-color);
    border-radius: var(--border-radius-lg);
    margin-bottom: 3rem;
    overflow: hidden;
}

.hero-content {
    max-width: 50%;
    animation: slideInFromLeft 0.8s ease-out forwards;
}

.hero-content h1 {
    font-size: 3rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-secondary-color);
    margin-bottom: 2rem;
}

.hero-visual {
    max-width: 45%;
    animation: fadeIn 1.2s ease-out forwards;
}

.hero-visual img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-md);
    object-fit: cover;
}

.tools-grid {
    text-align: center;
    padding: 2rem 0;
}

.tools-grid h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.tool-card {
    background: var(--surface-color);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-decoration: none;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.tool-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.tool-card p {
    font-size: 1rem;
    color: var(--text-secondary-color);
}

/* Animasyonlar */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/* Mobil Cihazlar İçin */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-content, .hero-visual {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}
