/* header.css - Header and branding styles */

.header {
    text-align: center;
    margin-bottom: 30px;
    color: white;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.logo i {
    font-size: 2.5rem;
    color: #ffd700;
}

.logo h1 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 300;
}

/* Settings Panel */
.settings-panel {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.api-config {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.api-config label {
    font-weight: 500;
    color: #555;
}

.api-config input {
    flex: 1;
    min-width: 300px;
    padding: 10px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.api-config input:focus {
    outline: none;
    border-color: #667eea;
}

/* Responsive adjustments for header */
@media (max-width: 480px) {
    .logo h1 {
        font-size: 2rem;
    }
    
    .logo i {
        font-size: 2rem;
    }
    
    .api-config {
        flex-direction: column;
        align-items: stretch;
    }
    
    .api-config input {
        min-width: auto;
    }
}