/* Developer Rehber API CSS */

/* Hero Section */
.developer-hero-section {
    padding: 50px 0;
    background: #fff;
}

.developer-hero-title {
    font-weight: 700;
}

.developer-hero-description {
    line-height: 1.9;
}

.developer-hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

/* Code Examples Section */
.developer-code-section {
    padding: 50px 0;
    background: #f8f9fa;
}

.developer-code-title {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
}

.developer-code-card {
    border-radius: 12px;
}

.developer-code-description {
    font-size: 0.85rem;
}

.developer-code-pre {
    white-space: pre-wrap;
    font-size: 0.85rem;
}

/* Webhook and Best Practices Section */
.developer-webhook-section {
    padding: 50px 0;
    background: #fff;
}

.developer-webhook-title {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
}

.developer-webhook-card {
    border-radius: 12px;
}

.developer-webhook-list {
    line-height: 1.8;
}

.developer-info-card {
    border-radius: 12px;
    background: #f8f9fa;
}

.developer-info-title {
    color: #667eea;
    font-weight: 600;
}

/* API Endpoints Section */
.developer-endpoints-section {
    padding: 50px 0;
    background: #f8f9fa;
}

.developer-endpoints-title {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
}

.developer-endpoints-card {
    border-radius: 12px;
}

.developer-endpoint-post {
    color: #28a745;
}

.developer-endpoint-get {
    color: #17a2b8;
}

.developer-endpoint-list {
    line-height: 1.6;
}

/* Error Codes Section */
.developer-errors-section {
    padding: 50px 0;
    background: #fff;
}

.developer-errors-title {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
}

.developer-error-card {
    border-radius: 12px;
}

.developer-error-4xx {
    border-left: 4px solid #dc3545;
}

.developer-error-5xx {
    border-left: 4px solid #fd7e14;
}

.developer-error-success {
    border-left: 4px solid #28a745;
}

.developer-error-4xx-title {
    color: #dc3545;
}

.developer-error-5xx-title {
    color: #fd7e14;
}

.developer-error-success-title {
    color: #28a745;
}

.developer-error-list {
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .developer-hero-section {
        padding: 30px 0;
    }
    
    .developer-code-section {
        padding: 30px 0;
    }
    
    .developer-webhook-section {
        padding: 30px 0;
    }
    
    .developer-endpoints-section {
        padding: 30px 0;
    }
    
    .developer-errors-section {
        padding: 30px 0;
    }
    
    .developer-code-title {
        font-size: 1.5rem;
    }
    
    .developer-webhook-title {
        font-size: 1.5rem;
    }
    
    .developer-endpoints-title {
        font-size: 1.5rem;
    }
    
    .developer-errors-title {
        font-size: 1.5rem;
    }
    
    .developer-code-pre {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .developer-hero-section {
        padding: 20px 0;
    }
    
    .developer-code-section {
        padding: 20px 0;
    }
    
    .developer-webhook-section {
        padding: 20px 0;
    }
    
    .developer-endpoints-section {
        padding: 20px 0;
    }
    
    .developer-errors-section {
        padding: 20px 0;
    }
    
    .developer-code-title {
        font-size: 1.3rem;
    }
    
    .developer-webhook-title {
        font-size: 1.3rem;
    }
    
    .developer-endpoints-title {
        font-size: 1.3rem;
    }
    
    .developer-errors-title {
        font-size: 1.3rem;
    }
}
